加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
multi_button.h 1.47 KB
一键复制 编辑 原始数据 按行查看 历史
满鉴霆 提交于 2024-04-07 22:39 . use button_t to replace struct button *
#ifndef __MULTI_BUTTON_H_
#define __MULTI_BUTTON_H_
#include <stdint.h>
#include <string.h>
//According to your need to modify the constants.
#define TICKS_INTERVAL 5 //ms
#define DEBOUNCE_TICKS 3 //MAX 7 (0 ~ 7)
#define SHORT_TICKS (300 / TICKS_INTERVAL)
#define LONG_TICKS (1000 / TICKS_INTERVAL)
#define LONG_HOLD_CYC (500 / TICKS_INTERVAL)
typedef void (*BtnCallback)(void*);
typedef enum {
PRESS_DOWN = 0,
PRESS_UP,
PRESS_REPEAT,
SINGLE_CLICK,
DOUBLE_CLICK,
LONG_PRESS_START,
LONG_PRESS_HOLD,
number_of_event,
NONE_PRESS
}PressEvent;
typedef struct button *button_t;
struct button {
uint16_t ticks;
uint16_t short_ticks;
uint16_t long_ticks;
uint8_t repeat : 4;
uint8_t event : 4;
uint8_t state : 3;
uint8_t debounce_cnt : 3;
uint8_t active_level : 1;
uint8_t button_level : 1;
uint8_t (*hal_button_Level)(void);
BtnCallback cb[number_of_event];
button_t next;
};
#ifdef __cplusplus
extern "C" {
#endif
void button_init(button_t handle, uint8_t(*pin_level)(void), uint8_t active_level);
void button_attach(button_t handle, PressEvent event, BtnCallback cb);
PressEvent get_button_event(button_t handle);
int button_start(button_t handle);
void button_stop(button_t handle);
void button_ticks(void);
void button_set_short_ticks(button_t handle, uint16_t ticks);
void button_set_long_ticks(button_t handle, uint16_t ticks);
#ifdef __cplusplus
}
#endif
#endif
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化