44 lines
251 B
C
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;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|