We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5afed14 commit d567cceCopy full SHA for d567cce
red_vision_examples/rv_init/bus_i2c.py
@@ -5,7 +5,7 @@
5
# specific board and configuration
6
i2c = I2C(
7
# id = 0,
8
- # sda = machine.Pin(0),
9
- # scl = machine.Pin(1),
+ # sda = 0,
+ # scl = 1,
10
# freq = 400_000
11
)
red_vision_examples/rv_init/bus_spi.py
@@ -6,8 +6,8 @@
spi = SPI(
baudrate = 24_000_000, # Use the fastest baudrate you can for best performance!
- # sck = machine.Pin(2),
- # mosi = machine.Pin(3),
- # miso = machine.Pin(4),
+ # sck = 2,
+ # mosi = 3,
+ # miso = 4,
12
# freq = 100_000
13
0 commit comments