Farm-Data-Relay-System/fdrs_types.h
2022-06-21 21:04:05 +02:00

9 lines
152 B
C

#ifndef __FDRS_TYPES_H__
typedef struct __attribute__((packed)) DataReading {
float data;
uint16_t id;
uint8_t type;
} DataReading;
#endif