source: trunk/firmware_v3/STM32CubeIDE/inc/button.h@ 41

Last change on this file since 41 was 41, checked in by f.jahn, 8 days ago

V3 Version soweit fertig. Relais ansteuerung, modbus, temperatursensor ist implementiert
Commit vor Änderung auf neuen Controller mit mehr Speicher

File size: 272 bytes
Line 
1#ifndef __BUTTON_H
2#define __BUTTON_H
3
4
5
6
7typedef enum BUTTON_State_enum
8{
9 BUTTON_OFF,
10 BUTTON_AUTO,
11 BUTTON_MANUAL_ON
12} button_state_t;
13
14
15button_state_t BUTTON_Exec(void);
16button_state_t BUTTON_GetMode(void);
17void BUTTON_SetModeOff(void);
18
19#endif
Note: See TracBrowser for help on using the repository browser.