mirror of
https://github.com/timmbogner/Farm-Data-Relay-System
synced 2024-11-10 07:10:42 +00:00
10 lines
177 B
C
10 lines
177 B
C
#ifndef __FDRS_TYPES_H__
|
|
#define __FDRS_TYPES_H__
|
|
|
|
typedef struct __attribute__((packed)) DataReading {
|
|
float data;
|
|
uint16_t id;
|
|
uint8_t type;
|
|
} DataReading;
|
|
|
|
#endif |