1
0
mirror of https://gitlab.com/lander-team/lander-cpp.git synced 2025-06-16 07:06:51 +00:00

should make sure code compiles before pushing

This commit is contained in:
Anson Biggs 2021-11-14 10:33:16 -07:00
parent 0f3e267af8
commit d487d6d30a

View File

@ -47,8 +47,10 @@ void setup() {
Serial.begin(9600); Serial.begin(9600);
delay(5000); delay(5000);
Serial.println("Simulation Countdown:") for (int i = 0; i < 15; i++) { Serial.println("Simulation Countdown:");
Serial.println(15 - i) delay(1000); for (int i = 0; i < 15; i++) {
Serial.println(15 - i);
delay(1000);
} }
init_loadCells(); init_loadCells();