This commit is contained in:
2026-06-25 18:42:40 +02:00
parent 5a6201331d
commit 0aefeeb959
42 changed files with 1965 additions and 2 deletions
+13
View File
@@ -0,0 +1,13 @@
#pragma once
#include <Arduino.h>
enum class ButtonEvent : uint8_t {
NONE,
UP_PRESS,
DOWN_PRESS,
OK_PRESS
};
void buttons_init();
ButtonEvent buttons_update();
bool buttons_check_ok_held_at_boot();