Skip to content

Commit feb3943

Browse files
committed
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.
1 parent 26dd223 commit feb3943

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

content/learn/07.built-in-libraries/04.software-serial/software-serial.md

+10-5
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,16 @@ If your project requires simultaneous data flows, see Paul Stoffregen's [AltSoft
2828

2929
### Supported Pins
3030

31-
| Board | RX | TX |
32-
| --------------------------------------------------------------------------------------------------- | -------------------------------------------- | --- |
33-
| [Arduino 101](/retired/boards/arduino-101-619/) | 0-12, 14 (A0) - 19 (A5) | |
34-
| [Leonardo](/hardware/leonardo/)<br />[Micro](/hardware/micro/)<br />[Yún Rev2](/hardware/yun-rev2/) | 8, 9, 10, 11, 14 (MISO), 15 (SCK), 16 (MOSI) | Any |
35-
| [Mega](/retired/other/hardware-pictures/)<br />[Mega 2560](/hardware/mega-2560/) | 10-15, 50-53, A8 (62)-A15 (69) | Any |
31+
| Board | RX | TX |
32+
| --------------------------------------------------------------------------------------------------- | -------------------------------------------- | --------- |
33+
| [Arduino 101](/retired/boards/arduino-101-619/) | 0-12, 14 (A0) - 19 (A5) | |
34+
| [Leonardo](/hardware/leonardo/)<br />[Micro](/hardware/micro/)<br />[Yún Rev2](/hardware/yun-rev2/) | 8, 9, 10, 11, 14 (MISO), 15 (SCK), 16 (MOSI) | Any |
35+
| [Mega](/retired/other/hardware-pictures/)<br />[Mega 2560](/hardware/mega-2560/) | 10-15, 50-53, A8 (62)-A15 (69) | Any |
36+
| [Nano](/hardware/nano/) | 0-19 (A5) | 0-19 (A5) |
37+
| [Nano Every](/hardware/nano-every/)<br />[UNO WiFi Rev2](/hardware/uno-wifi-rev2/) | Any | Any |
38+
| [UNO R3](/hardware/uno-rev3/) | Any | Any |
39+
| [UNO R4 Minima](/hardware/uno-r4-minima/) | 0-3, 8, 12, 13, 15 (A1)-19 (A5) | Any |
40+
| [UNO R4 WiFi](/hardware/uno-r4-wifi/) | 0-3, 6, 8, 11, 12, 15 (A1)-19 (A5) | Any |
3641

3742
## Examples
3843

0 commit comments

Comments
 (0)