blob: 1efe4689479801f30d514b5f2098d8e59e44fe7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef CASTRAY_H
#define CASTRAY_H
#include <Watchy.h>
#include "Seven_Segment10pt7b.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
|