From 7b88e8630795f2c24bbae4d2531eb813cef502f3 Mon Sep 17 00:00:00 2001 From: per1234 Date: Thu, 18 Apr 2024 10:30:39 -0700 Subject: [PATCH] Add all supported boards to SoftwareSerial pins table Since the time the SoftwareSerial library documentation was written, Arduino has created several new products supported by the library. The information about which pins can be used on these board must be documented. After this, the only currently active product with SoftwareSerial library support not included in the table is the Portenta C33. From the information in the library's "SerialEcho" example, it might be inferred that the same limitations as the UNO R4 boards apply to this board as well, but I was not able to verify this due to not having the hardware on hand. --- .../04.software-serial/software-serial.md | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/content/learn/07.built-in-libraries/04.software-serial/software-serial.md b/content/learn/07.built-in-libraries/04.software-serial/software-serial.md index eb984c2384..06e880cd0c 100644 --- a/content/learn/07.built-in-libraries/04.software-serial/software-serial.md +++ b/content/learn/07.built-in-libraries/04.software-serial/software-serial.md @@ -28,11 +28,16 @@ If your project requires simultaneous data flows, see Paul Stoffregen's [AltSoft ### Supported Pins -| Board | RX | TX | -| --------------------------------------------------------------------------------------------------- | -------------------------------------------- | --- | -| [101](/retired/boards/arduino-101-619/) | 0-12, 14 (A0) - 19 (A5) | | -| [Leonardo](/hardware/leonardo/)
[Micro](/hardware/micro/)
[Yún Rev2](/hardware/yun-rev2/) | 8, 9, 10, 11, 14 (MISO), 15 (SCK), 16 (MOSI) | Any | -| [Mega](/retired/other/hardware-pictures/)
[Mega 2560 Rev3](/hardware/mega-2560/) | 10-15, 50-53, A8 (62)-A15 (69) | Any | +| Board | RX | TX | +| --------------------------------------------------------------------------------------------------- | -------------------------------------------- | --------- | +| [101](/retired/boards/arduino-101-619/) | 0-12, 14 (A0) - 19 (A5) | | +| [Leonardo](/hardware/leonardo/)
[Micro](/hardware/micro/)
[Yún Rev2](/hardware/yun-rev2/) | 8, 9, 10, 11, 14 (MISO), 15 (SCK), 16 (MOSI) | Any | +| [Mega](/retired/other/hardware-pictures/)
[Mega 2560 Rev3](/hardware/mega-2560/) | 10-15, 50-53, A8 (62)-A15 (69) | Any | +| [Nano](/hardware/nano/) | 0-19 (A5) | 0-19 (A5) | +| [Nano Every](/hardware/nano-every/)
[UNO WiFi Rev2](/hardware/uno-wifi-rev2/) | Any | Any | +| [UNO R3](/hardware/uno-rev3/) | Any | Any | +| [UNO R4 Minima](/hardware/uno-r4-minima/) | 0-3, 8, 12, 13, 15 (A1)-19 (A5) | Any | +| [UNO R4 WiFi](/hardware/uno-r4-wifi/) | 0-3, 6, 8, 11, 12, 15 (A1)-19 (A5) | Any | ## Examples