Skip to content

Commit 0ff2083

Browse files
committed
tweak README to specify calling Wire.begin() when using I2C
1 parent da74b28 commit 0ff2083

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

README.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,12 @@ notecard.begin(Serial1, 9600);
5454

5555
### I2C Configuration
5656

57-
For I2C, simply call `begin()` with no parameters.
57+
For I2C, initialize `Wire` by calling `begin()` and call Notecard `begin()` with
58+
no parameters.
5859

5960
```cpp
61+
Wire.begin();
62+
6063
notecard.begin();
6164
```
6265

0 commit comments

Comments
 (0)