Skip to content

Commit 89ecf4c

Browse files
committed
Adding Example3: EEPROM Settings
1 parent 185dda8 commit 89ecf4c

File tree

6 files changed

+407
-258
lines changed

6 files changed

+407
-258
lines changed

examples/Example1_ReadVoltageCurrentPower/Example1_ReadVoltageCurrentPower.ino

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ void setup()
2626
//Initialize sensor using default I2C address
2727
if (mySensor.begin() == false)
2828
{
29-
Serial.print(F("ACS37800 not detected. Check connections. Freezing..."));
29+
Serial.print(F("ACS37800 not detected. Check connections and I2C address. Freezing..."));
3030
while (1)
3131
; // Do nothing more
3232
}
@@ -55,5 +55,5 @@ void loop()
5555
Serial.print(F(" Watts: "));
5656
Serial.println(watts, 2);
5757

58-
delay(1000);
58+
delay(250);
5959
}

0 commit comments

Comments
 (0)