mirror of
https://github.com/arabine/open-story-teller.git
synced 2025-12-06 17:09:06 +01:00
12 lines
190 B
C
12 lines
190 B
C
#ifndef OST_ROTARY_BUTTON_H
|
|
#define OST_ROTARY_BUTTON_H
|
|
|
|
typedef enum
|
|
{
|
|
OST_ROTARY_UNKNOWN,
|
|
OST_ROTARY_LEFT,
|
|
OST_ROTARY_RIGHT,
|
|
} ost_rotary_dir_t;
|
|
|
|
#endif // OST_ROTARY_BUTTON_H
|