8seg/common/protocol.h
2023-10-02 01:23:31 +02:00

13 lines
239 B
C

#ifndef __PROTOCOL_H__
#define __PROTOCOL_H__
#include <stdint.h>
struct __attribute__((__packed__)) data_packet {
uint8_t channels[16];
uint8_t brightness[8];
uint8_t flags;
uint32_t crc;
};
#endif /* __PROTOCOL_H__ */