funkstuff/input.h

25 lines
865 B
C
Raw Normal View History

2015-01-10 11:42:36 +01:00
#ifndef __INPUT_H__
#define __INPUT_H__
/* *********************************************************************** */
2017-11-27 19:22:55 +01:00
#define EVENT_NUM_INPUT_BUTTON 0x00
#define EVENT_NUM_INPUT_DOOR 0x01
#define EVENT_NUM_INPUT_QUAD 0x02
2015-01-10 11:42:36 +01:00
#define EVENT_VALUE_INPUT_QUAD_DEC 0x01
#define EVENT_VALUE_INPUT_QUAD_INC 0x02
#define EVENT_VALUE_INPUT_BUTTON_RELEASED 0x00
#define EVENT_VALUE_INPUT_BUTTON_PRESSED 0x01
2017-11-27 19:22:55 +01:00
#define EVENT_VALUE_INPUT_DOOR_CLOSED 0x00
#define EVENT_VALUE_INPUT_DOOR_OPEN 0x01
2015-01-10 11:42:36 +01:00
/* *********************************************************************** */
void input_init(void);
void input_tick(void);
/* *********************************************************************** */
#endif /* __INPUT_H__ */