From 3f1d10c995ecd95256095070536428838f7975d8 Mon Sep 17 00:00:00 2001 From: per1234 Date: Wed, 26 Jun 2019 04:53:00 -0700 Subject: [PATCH] Correct serial object name for ATmega32U4 boards MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The table incorrectly indicated that pins 0 and 1 on the Leonardo, Micro, and Yún were Serial. These pins are Serial1. --- Language/Functions/Communication/Serial.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Language/Functions/Communication/Serial.adoc b/Language/Functions/Communication/Serial.adoc index 567f3bc99..21fb67ce1 100644 --- a/Language/Functions/Communication/Serial.adoc +++ b/Language/Functions/Communication/Serial.adoc @@ -22,7 +22,7 @@ Used for communication between the Arduino board and a computer or other devices | Board | USB CDC name | Serial pins | Serial1 pins | Serial2 pins | Serial3 pins | Uno, Nano, Mini | | 0(RX), 1(TX) | | | | Mega | | 0(RX), 1(TX) | 19(RX), 18(TX) | 17(RX), 16(TX) | 15(RX), 14(TX) -| Leonardo, Micro, Yún | Serial | 0(RX), 1(TX) | | | +| Leonardo, Micro, Yún | Serial | | 0(RX), 1(TX) | | | Uno WiFi Rev.2 | | Connected to USB | 0(RX), 1(TX) | Connected to NINA | | MKR boards | Serial | | 13(RX), 14(TX) | | | Zero | SerialUSB (Native USB Port only) | Connected to Programming Port | 0(RX), 1(TX) | |