summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorDaniel Thompson <daniel@redfelineninja.org.uk>2020-01-21 22:10:50 (GMT)
committerDaniel Thompson <daniel@redfelineninja.org.uk>2020-01-21 22:10:50 (GMT)
commit2805a719f2a74493d278d232ce9812ff84ad5aad (patch)
tree0fa0b014db53d24b5bec0d975e547823f340e5fe /README.md
parenta8d8d92481f71181fff4a96b71aa8d83a819997b (diff)
wasp: st7789: Add a simple proof-of-concept display driver
Diffstat (limited to 'README.md')
-rw-r--r--README.md11
1 files changed, 11 insertions, 0 deletions
diff --git a/README.md b/README.md
index 8a626fe..4c0be7a 100644
--- a/README.md
+++ b/README.md
@@ -20,3 +20,14 @@ Then use nRFConnect (for Android) to program micropython.zip.
At the end of this process your watch may *look* dead but, if it works,
you will be able to use the Nordic UART Service to access the
MicroPython REPL.
+
+Drivers are, for the most part, an exercise for the reader but
+there is a proof-of-concept display driver. To experiment try:
+
+~~~
+import pinetime, time
+tft = pinetime.st7789()
+tft.white()
+time.sleep(2)
+tft.black()
+~~~