Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions libraries/motor2040/motor2040.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,10 @@ namespace motor {
const uint LED_DATA = 18;
const uint NUM_LEDS = 1;

const uint I2C_INT = 19;
const uint I2C_SDA = 20;
const uint I2C_SCL = 21;

const uint USER_SW = 23;

const uint ADC_ADDR_0 = 22;
Expand Down
4 changes: 4 additions & 0 deletions libraries/servo2040/servo2040.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ namespace servo {
const uint LED_DATA = 18;
const uint NUM_LEDS = 6;

const uint I2C_INT = 19;
const uint I2C_SDA = 20;
const uint I2C_SCL = 21;

const uint USER_SW = 23;

const uint ADC_ADDR_0 = 22;
Expand Down