Added new platform: Wemos ESP8266 D1 mini pro. Now radio starts but still does not send any clock information.

This commit is contained in:
2018-11-14 21:34:51 +01:00
parent 59a0170b85
commit 672d5baf23
7 changed files with 206 additions and 140 deletions

15
src/radio.h Normal file
View File

@@ -0,0 +1,15 @@
#ifndef radio_h_included
#define radio_h_included
#include "config.h"
#include "display.h"
class Radio {
public:
Radio(Display *d, bool _isMaster):display(d), isMaster(_isMaster) { };
void begin(void);
void loop(void);
private:
Display *display;
bool isMaster;
};
#endif