增加按钮驱动

This commit is contained in:
2026-07-30 21:01:38 +08:00
parent 06fc5714c4
commit d9cc6e1f3a
3 changed files with 137 additions and 2 deletions
+2 -2
View File
@@ -1,3 +1,3 @@
idf_component_register(SRCS "hello_world_main.c" "iic.c" "oled.c" "state.c" "tca9535.c" "moonshineOS_core/cli.c"
PRIV_REQUIRES spi_flash esp_driver_i2c esp_driver_uart log
idf_component_register(SRCS "hello_world_main.c" "iic.c" "oled.c" "state.c" "tca9535.c" "button.c" "moonshineOS_core/cli.c"
PRIV_REQUIRES spi_flash esp_driver_i2c esp_driver_uart log esp_timer
INCLUDE_DIRS "." "moonshineOS_core")
+105
View File
@@ -0,0 +1,105 @@
#include "button.h"
#include "esp_timer.h"
struct button button_ems;
struct button button_power;
struct button button_beep;
void button_init(void)
{
}
void button_set_pass(struct button *b)
{
b->pass = 1;
}
void button_set_longpass(struct button *b)
{
b->longpass = 1;
}
char button_pass(struct button *b)
{
if (b->pass == 1) {
b->passread = 0;
b->pass = 0;
return 1;
}
return 0;
}
char button_pass_(struct button *b)
{
if (b->pass_ == 1) {
b->passread = 0;
b->pass_ = 0;
return 1;
}
return 0;
}
char button_longpass(struct button *b)
{
if (b->longpass == 1) {
b->longpassread = 0;
b->longpass = 0;
b->passread = 0;
b->pass_ = 0;
return 1;
}
return 0;
}
void button_reset(struct button *b)
{
b->lock = 0;
b->pass = 0;
b->longpass = 0;
b->passread = 0;
b->pass_ = 0;
b->longpassread = 0;
}
void button_updata(struct button *b, char a)
{
uint32_t now = (uint32_t)(esp_timer_get_time() / 1000);
if (b->lock == 0) {
if (a == 0) {
b->time = now;
b->lock = 1;
b->passread = 1;
b->longpassread = 1;
}
} else {
if (a == 0) {
if (now > b->time + BUTTON_PASS_TIMES && b->passread == 1) {
if (b->pass == 0) {
}
b->pass = 1;
}
if (now > b->time + BUTTON_LONGPASS_TIMES && b->longpassread == 1) {
if (b->longpass == 0) {
}
b->longpass = 1;
b->passread = 0;
b->pass = 0;
b->pass_ = 0;
}
} else {
if (now > b->time + BUTTON_PASS_TIMES) {
if (b->passread == 1) {
if (b->pass_ == 0) {
}
b->pass_ = 1;
}
}
b->lock = 0;
}
}
}
+30
View File
@@ -0,0 +1,30 @@
#ifndef BUTTON_H_
#define BUTTON_H_
#include <stdint.h>
#include "state.h"
#define BUTTON_PASS_TIMES 50
#define BUTTON_LONGPASS_TIMES 1000
struct button {
uint8_t lock;
uint8_t pass;
uint8_t longpass;
uint8_t passread;
uint8_t pass_;
uint8_t longpassread;
uint32_t time;
};
void button_init(void);
void button_set_pass(struct button *b);
void button_set_longpass(struct button *b);
char button_pass(struct button *b);
char button_pass_(struct button *b);
char button_longpass(struct button *b);
void button_reset(struct button *b);
void button_updata(struct button *b, char a);
#endif