summaryrefslogtreecommitdiffstats
path: root/src/castRay.h
diff options
context:
space:
mode:
authorsalaaad2 <arthurdurant263@gmail.com>2022-05-17 20:58:07 +0200
committersalaaad2 <arthurdurant263@gmail.com>2022-05-17 20:58:07 +0200
commitec8e4eb6320ddaabd71afbda12e93fbdab0d10d0 (patch)
treef9cf6bbdbdc512a258701ed2c0ea8c838d51a6c1 /src/castRay.h
downloadwatchoom-ec8e4eb6320ddaabd71afbda12e93fbdab0d10d0.tar.gz
watchoom-ec8e4eb6320ddaabd71afbda12e93fbdab0d10d0.tar.bz2
watchoom-ec8e4eb6320ddaabd71afbda12e93fbdab0d10d0.tar.xz
watchoom-ec8e4eb6320ddaabd71afbda12e93fbdab0d10d0.tar.zst
watchoom-ec8e4eb6320ddaabd71afbda12e93fbdab0d10d0.zip
initial commit
Diffstat (limited to 'src/castRay.h')
-rw-r--r--src/castRay.h22
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