Skip to content

Commit cb76050

Browse files
Added table for boards
1 parent ebb54cc commit cb76050

File tree

1 file changed

+12
-14
lines changed

1 file changed

+12
-14
lines changed

Language/Functions/Communication/Wire.adoc

Lines changed: 12 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -20,20 +20,18 @@ This library allows you to communicate with I2C/TWI devices. On the Arduino boar
2020

2121
As a reference the table below shows where TWI pins are located on various Arduino boards.
2222

23-
[cols="1,1"]
24-
|===
25-
|Board
26-
|I2C/TWI pins
27-
28-
|UNO, Ethernet
29-
|A4 (SDA), A5 (SCL)
30-
31-
|Mega2560
32-
|20 (SDA), 21 (SCL)
33-
34-
|Leonardo
35-
|20 (SDA), 21 (SCL), SDA1, SCL1
36-
|===
23+
|================================================================================================================================================
24+
| Board | I2C/TWI pins |
25+
| UNO R3 | 13(SDA), 14(SCL) |
26+
| UNO R3 SMD, UNO Mini Ltd | 18(SDA), 19(SCL) |
27+
| UNO WiFi Rev2 | 20(SDA), 21(SCL) |
28+
| UNO R4 Minima, UNO R4 WiFi | 2(SDA), 1(SCL) |
29+
| Micro, Yún Rev2 | D2(SDA), D3(SCL) |
30+
| Leonardo, GIGA R1 WiFi | 20(SDA), 21(SCL), SDA1, SCL1 |
31+
| Nano boards | A4(SDA), A5(SCL) |
32+
| MKR boards | D11(SDA), D12(SCL) |
33+
| Due, MKR Zero, Mega, Mega 2560 Rev3 | D20(SDA), D21(SCL) |
34+
|================================================================================================================================================
3735

3836

3937
This library inherits from the Stream functions, making it consistent with other read/write libraries. Because of this, `send()` and `receive()` have been replaced with `read()` and `write()`.

0 commit comments

Comments
 (0)