18 lines
427 B
C
18 lines
427 B
C
// === button_actions.h ===
|
|
#ifndef _BUTTON_ACTIONS_H_
|
|
#define _BUTTON_ACTIONS_H_
|
|
|
|
#include <Arduino.h>
|
|
#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 |