fix callback_game_start signature

This commit is contained in:
Tibo Ulens 2022-02-15 16:06:24 +01:00
parent 0075f2b6ae
commit 62f9f2c18e
No known key found for this signature in database
GPG key ID: A0907492D3E5089D
2 changed files with 2 additions and 3 deletions

View file

@ -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) {
} }

View file

@ -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();
} }