15 lines
207 B
C
15 lines
207 B
C
#ifndef clockMsg_h_included
|
|
#define clockMsg_h_included
|
|
|
|
#include <Arduino.h>
|
|
|
|
struct clockMsg_s {
|
|
uint8_t msgType;
|
|
uint8_t hour;
|
|
uint8_t minute;
|
|
uint8_t second;
|
|
};
|
|
#define msgType_Clock 'c'
|
|
|
|
#endif
|