Merge pull request #852 from pimoroni/helgibbons-patch-2

Add I2C pins for PicoVision
This commit is contained in:
Philip Howard 2023-09-27 10:57:10 +01:00 committed by GitHub
commit fc777ff0ca
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