Add I2C pins for PicoVision

This commit is contained in:
Hel Gibbons 2023-09-25 14:53:54 +01:00 committed by GitHub
parent 8eac60afc6
commit 5345cc42d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -5,6 +5,7 @@ from machine import Pin, PWM, ADC
BREAKOUT_GARDEN_I2C_PINS = {"sda": 4, "scl": 5}
PICO_EXPLORER_I2C_PINS = {"sda": 20, "scl": 21}
HEADER_I2C_PINS = {"sda": 20, "scl": 21}
PICOVISION_I2C_PINS = {"sda": 6, "scl": 7}
# Motor and encoder directions
NORMAL_DIR = 0x00