mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-24 05:23:06 +00:00
24 lines
No EOL
526 B
C
24 lines
No EOL
526 B
C
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include <stddef.h>
|
|
|
|
// Default btn ID
|
|
#define SUBGHZ_CUSTOM_BTN_OK (0U)
|
|
#define SUBGHZ_CUSTOM_BTN_UP (1U)
|
|
#define SUBGHZ_CUSTOM_BTN_DOWN (2U)
|
|
#define SUBGHZ_CUSTOM_BTN_LEFT (3U)
|
|
#define SUBGHZ_CUSTOM_BTN_RIGHT (4U)
|
|
|
|
void subghz_custom_btn_set(uint8_t btn_id);
|
|
|
|
uint8_t subghz_custom_btn_get();
|
|
|
|
void subghz_custom_btn_set_original(uint8_t btn_code);
|
|
|
|
uint8_t subghz_custom_btn_get_original();
|
|
|
|
void subghz_custom_btn_set_max(uint8_t b);
|
|
|
|
void subghz_custom_btns_reset(); |