blob: d8e7e20f588d16a19b89a82ef03250ff042d822d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#include "castRay.h"
#define DARKMODE false
void CastRay::drawLoop()
{
display.fillScreen(GxEPD_WHITE);
}
void CastRay::drawWatchFace()
{
display.fillScreen(GxEPD_WHITE);
display.setTextColor(GxEPD_BLACK);
display.setFont(&DSEG7_Classic_Bold_53);
display.setCursor(5, 53+5);
display.print("0x0x0x0x0");
displayPtr = &display;
usleep(1);
this->drawLoop();
}
|