commit 988ef87faf5abe37843d89e09ef5785e4596b2e2
parent 842899531d89ea281206b4659377ec511aaeb958
Author: Samdal <samdal@protonmail.com>
Date: Tue, 22 Jun 2021 13:32:31 +0200
Error in the new example
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.org b/README.org
@@ -251,7 +251,7 @@ void loop()
digitalWrite(LED1, !digitalRead(LED1));
previous_LED1_change = t;
}
- // turn on LED2 every other second
+ // turn on LED2 every half a second
if (t - previous_LED2_change >= LED2_DELAY) {
digitalWrite(LED2, !digitalRead(LED2));
previous_LED2_change = t;