diff options
Diffstat (limited to 'src/castRay.h')
-rw-r--r-- | src/castRay.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/castRay.h b/src/castRay.h new file mode 100644 index 0000000..10dc756 --- /dev/null +++ b/src/castRay.h @@ -0,0 +1,22 @@ +#ifndef CASTRAY_H +#define CASTRAY_H + +#include <Watchy.h> +#include "Seven_Segment10pt7b.h" +#include "DSEG7_Classic_Regular_15.h" +#include "DSEG7_Classic_Bold_25.h" +#include "DSEG7_Classic_Regular_39.h" +#include "icons.h" + +#include "pixelfunc.h" + +static GxEPD2_BW<GxEPD2_154_D67, GxEPD2_154_D67::HEIGHT> * displayPtr = nullptr; + +class CastRay : public Watchy{ + using Watchy::Watchy; + public: + void drawWatchFace(); + void drawLoop(); +}; + +#endif |