// === button_actions.h === #ifndef _BUTTON_ACTIONS_H_ #define _BUTTON_ACTIONS_H_ #include #include "buttoncontrol.h" // Deklarationen der Button-Callbacks void ButtonAction_ToggleMode(); void ButtonAction_StartPurge(); void ButtonAction_ToggleWiFi(); void ButtonAction_WashMode(); // Bereitstellung der Aktionsliste extern const ButtonActionEntry buttonActions[]; extern const uint8_t buttonActionCount; #endif