mirror of https://github.com/meshcore-dev/MeshCore
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
297 B
18 lines
297 B
#ifndef structs_h
|
|
#define structs_h
|
|
|
|
#include <Arduino.h>
|
|
#include "../lvgl/lvgl.h"
|
|
|
|
typedef struct s_espNowButtons {
|
|
bool enabled;
|
|
bool needsUpdate;
|
|
int16_t state;
|
|
lv_obj_t *obj;
|
|
uint32_t colorOn;
|
|
uint32_t colorOff;
|
|
lv_obj_t *uiLabel;
|
|
char *uiLabelText;
|
|
} s_espNowButtons;
|
|
|
|
#endif
|