diff options
author | ThomasintAnker <thomasintanker1@gmail.com> | 2024-06-24 14:54:22 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-06-24 14:55:39 +0200 |
commit | 1d6d54478a368a011415e43f7667a263209bb2b0 (patch) | |
tree | b318daccfd70abf8403795fc34a14a32d3a98a44 /puzzle | |
parent | ec7f5e970ed03acb33eb5dc3b67f3d52af52e6dc (diff) |
add debug print statement
Diffstat (limited to 'puzzle')
-rw-r--r-- | puzzle/vault/main.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/puzzle/vault/main.cpp b/puzzle/vault/main.cpp index 2e4cafc..88d5b35 100644 --- a/puzzle/vault/main.cpp +++ b/puzzle/vault/main.cpp @@ -155,6 +155,10 @@ void pb_hook_mod_state_write(pb_global_state_t state) { puzzleState = state; } +void pb_hook_ev_main_state_update(pb_global_state_t state){ + Serial.println("WE IN BOISS"); +} + void setup() { Serial.begin(115200); pinMode(SOLVED_PIN, OUTPUT); @@ -184,4 +188,4 @@ void loop() { blink_display(1); break; } -}
\ No newline at end of file +} |