aboutsummaryrefslogtreecommitdiffstats
path: root/source/driverSharp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/driverSharp.cpp')
-rw-r--r--source/driverSharp.cpp27
1 files changed, 27 insertions, 0 deletions
diff --git a/source/driverSharp.cpp b/source/driverSharp.cpp
new file mode 100644
index 0000000..74a2a70
--- /dev/null
+++ b/source/driverSharp.cpp
@@ -0,0 +1,27 @@
+#include "sharp/Adafruit_SharpMem.h"
+
+#define SHARP_SCK 12
+#define SHARP_MOSI 13
+#define SHARP_SS 6
+
+Adafruit_SharpMem display(SHARP_SCK, SHARP_MOSI, SHARP_SS, 144, 168);
+
+#define BLACK 0
+#define WHITE 1
+
+void sharpInit(void)
+{
+ display.begin();
+ display.clearDisplay();
+ display.setTextSize(1);
+ display.setTextColor(BLACK);
+ display.setCursor(0, 0);
+ display.println("Hello!");
+}
+
+void sharpRefresh(unsigned int pause)
+{
+ display.refresh();
+ delay(pause);
+}
+