Skip to content

Commit 9a76720

Browse files
committed
LoadDemo: Updated I2C pins for broken controller
1 parent b968a72 commit 9a76720

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

demos/LoadDemo/LoadDemo.ino

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @file LoadDemo.ino
33
* @brief Manually control the actuator
4-
* @version 0.3.0 (1.0.0)
4+
* @version 0.3.1 (1.0.1)
55
* @since Winter 2026
66
* @author Noah (@BobSaidHi <https://github.com/bobsaidhi>) for
77
* @CalPolyWindPower <https://github.com/calpolywindpower>
@@ -180,7 +180,8 @@ void setup() {
180180
/**
181181
* @details The load object, is in the Actuator namespace
182182
*/
183-
Wire.begin(8, 9); // SDA, SCL
183+
// Wire.begin(8, 9); // SDA, SCL
184+
Wire.begin(1, 2); // SDA, SCL
184185
LOAD::configureLoad();
185186
LOAD::loadDevice.setGPIO(0b0000'0000);
186187
Serial.print("Input load setPoint as a 7 bit unsigned integer: ");

0 commit comments

Comments
 (0)