blob: 10dc7565a1bb5d95331777b4e7d1e03cfa04c273 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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
|