模式嗯

This commit is contained in:
Passthem
2025-04-14 16:14:11 +08:00
parent 3efe232019
commit dc2d2c0c6d
3 changed files with 16 additions and 2 deletions

View File

@ -3,9 +3,15 @@
#include "color_utils.h"
typedef enum LightMode {
LIGHT_MODE_RAINBOW,
LIGHT_MODE_WHITE,
} LightMode;
typedef struct {
int index;
double time;
LightMode mode;
} Status;
void init_status(Status* status);