Files
B_Current_Ctrl/BSP/protocol.c
T
2025-08-28 16:37:05 +08:00

44 lines
251 B
C

#include "protocol.h"
typedef struct _fan_p_s {
double temperature;
uint16_t command;
uint16_t state;
}fan_p_s;
typedef struct _fan_p_s_raw {
uint16_t temperature;
uint16_t command;
uint16_t state;
}fan_p_s_raw;