Sends broadcast time message over radio.

This commit is contained in:
2018-11-15 13:03:01 +01:00
parent 672d5baf23
commit fbf8af5684
8 changed files with 97 additions and 51 deletions

14
src/clockMsg.h Normal file
View File

@@ -0,0 +1,14 @@
#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