fix callback_game_start signature
This commit is contained in:
parent
0075f2b6ae
commit
62f9f2c18e
2 changed files with 2 additions and 3 deletions
|
@ -12,7 +12,6 @@
|
||||||
// blue = down A1
|
// blue = down A1
|
||||||
// orange = left A2
|
// orange = left A2
|
||||||
// green = right A3
|
// green = right A3
|
||||||
#define
|
|
||||||
|
|
||||||
LedControl lc = LedControl(LED_DIN_PIN, LED_CLK_PIN, LED_CS_PIN, 1);
|
LedControl lc = LedControl(LED_DIN_PIN, LED_CLK_PIN, LED_CS_PIN, 1);
|
||||||
|
|
||||||
|
@ -37,7 +36,7 @@ void loop() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void callback_game_start() {
|
void callback_game_start(uint8_t puzzle_modules) {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -66,7 +66,7 @@ void loop() {
|
||||||
digitalWrite(DISC_LED, disc_value);
|
digitalWrite(DISC_LED, disc_value);
|
||||||
}
|
}
|
||||||
|
|
||||||
void callback_game_start() {
|
void callback_game_start(uint8_t puzzle_modules) {
|
||||||
// just instantly solve
|
// just instantly solve
|
||||||
obus_module::solve();
|
obus_module::solve();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue