summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md17
1 files changed, 11 insertions, 6 deletions
diff --git a/README.md b/README.md
index 85c8f52..dd40fb4 100644
--- a/README.md
+++ b/README.md
@@ -20,13 +20,12 @@ only on BLE for updates.
Videos
------
+[![How to develop wasp-os python applications on a Pine64 PineTime](https://img.youtube.com/vi/tuk9Nmr3Jo8/0.jpg)](https://www.youtube.com/watch?v=tuk9Nmr3Jo8)\
+[How to develop wasp-os python applications on a Pine64 PineTime](https://www.youtube.com/watch?v=tuk9Nmr3Jo8)
[![Developing for Pine64 PineTime using wasp-os and MicroPython](https://img.youtube.com/vi/kf1VHj587Mc/0.jpg)](https://www.youtube.com/watch?v=kf1VHj587Mc)\
[Developing for Pine64 PineTime using wasp-os and MicroPython](https://www.youtube.com/watch?v=kf1VHj587Mc)
-[![WASP bootloader and MicroPython running on Pine64 PineTime](https://img.youtube.com/vi/W0CmqOnl4jk/0.jpg)](https://www.youtube.com/watch?v=W0CmqOnl4jk)\
-[WASP bootloader and MicroPython running on Pine64 PineTime](https://www.youtube.com/watch?v=W0CmqOnl4jk)
-
Building from a git clone
-------------------------
@@ -77,16 +76,22 @@ demo.run()
# After watching the demo for a bit...
^C
wasp.app.draw(watch)
-wasp.run()
+wasp.system.run()
~~~
To set the time and restart the main application:
~~~
^C
-watch.rtc.set_time((hh, mm, ss))
-wasp.run()
+watch.rtc.set_localtime((yyyy, mm, dd, HH, MM, SS))
+wasp.system.run()
+~~~
+
+Or just use:
+~~~
+./tools/wasptool --rtc
~~~
+which can run these commands automatically.
As mentioned above there are many drivers and features still to be
developed, see the [TODO list](TODO.md) for current status.