Skip to content

Commit 343b8b0

Browse files
Change pins to make wiring diagram easier to read
1 parent c2f469b commit 343b8b0

File tree

1 file changed

+4
-4
lines changed
  • LittleConnectionMachine/CircuitPython

1 file changed

+4
-4
lines changed

LittleConnectionMachine/CircuitPython/code.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@
2828
# IS31FL3731 can have one of four addresses, so to run eight of them we
2929
# need *two* I2C buses, and not all boards can provide that. Here's where
3030
# you'd define the pin numbers for a board...
31-
I2C1_SDA = board.GP4 # First I2C bus
32-
I2C1_SCL = board.GP5
33-
I2C2_SDA = board.GP26 # Second I2C bus
34-
I2C2_SCL = board.GP27
31+
I2C1_SDA = board.GP18 # First I2C bus
32+
I2C1_SCL = board.GP19
33+
I2C2_SDA = board.GP16 # Second I2C bus
34+
I2C2_SCL = board.GP17
3535

3636
# pylint: disable=too-few-public-methods
3737
class FakePILImage:

0 commit comments

Comments
 (0)