2021-10-03 10:36:05 +00:00
|
|
|
/**
|
|
|
|
* @file input.h
|
|
|
|
* Input: main API
|
|
|
|
*/
|
|
|
|
|
2021-02-10 08:56:05 +00:00
|
|
|
#pragma once
|
2020-10-02 06:44:05 +00:00
|
|
|
|
2022-01-05 16:10:18 +00:00
|
|
|
#include <furi_hal_resources.h>
|
2020-10-02 06:44:05 +00:00
|
|
|
|
2022-09-14 16:11:38 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2022-07-26 12:21:51 +00:00
|
|
|
#define RECORD_INPUT_EVENTS "input_events"
|
|
|
|
|
2021-10-03 10:36:05 +00:00
|
|
|
/** Input Types
|
2021-02-10 08:56:05 +00:00
|
|
|
* Some of them are physical events and some logical
|
|
|
|
*/
|
2020-10-02 06:44:05 +00:00
|
|
|
typedef enum {
|
2021-10-03 10:36:05 +00:00
|
|
|
InputTypePress, /**< Press event, emitted after debounce */
|
|
|
|
InputTypeRelease, /**< Release event, emitted after debounce */
|
2023-01-11 13:41:57 +00:00
|
|
|
InputTypeShort, /**< Short event, emitted after InputTypeRelease done within INPUT_LONG_PRESS interval */
|
2022-11-28 16:51:51 +00:00
|
|
|
InputTypeLong, /**< Long event, emitted after INPUT_LONG_PRESS_COUNTS interval, asynchronous to InputTypeRelease */
|
|
|
|
InputTypeRepeat, /**< Repeat event, emitted with INPUT_LONG_PRESS_COUNTS period after InputTypeLong event */
|
2022-11-02 14:36:17 +00:00
|
|
|
InputTypeMAX, /**< Special value for exceptional */
|
2021-02-10 08:56:05 +00:00
|
|
|
} InputType;
|
2020-10-02 06:44:05 +00:00
|
|
|
|
2021-11-01 20:35:54 +00:00
|
|
|
/** Input Event, dispatches with FuriPubSub */
|
2020-10-02 06:44:05 +00:00
|
|
|
typedef struct {
|
2021-09-01 21:05:00 +00:00
|
|
|
uint32_t sequence;
|
2021-02-10 08:56:05 +00:00
|
|
|
InputKey key;
|
|
|
|
InputType type;
|
2020-10-02 06:44:05 +00:00
|
|
|
} InputEvent;
|
2021-08-31 08:22:52 +00:00
|
|
|
|
|
|
|
/** Get human readable input key name
|
|
|
|
* @param key - InputKey
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
const char* input_get_key_name(InputKey key);
|
|
|
|
|
|
|
|
/** Get human readable input type name
|
|
|
|
* @param type - InputType
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
const char* input_get_type_name(InputType type);
|
2022-09-14 16:11:38 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|