diff options
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 17 |
1 files changed, 11 insertions, 6 deletions
@@ -20,13 +20,12 @@ only on BLE for updates. Videos ------ +[](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) [](https://www.youtube.com/watch?v=kf1VHj587Mc)\ [Developing for Pine64 PineTime using wasp-os and MicroPython](https://www.youtube.com/watch?v=kf1VHj587Mc) -[](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. |
