diff options
author | danicampora <daniel@wipy.io> | 2015-10-19 16:28:29 +0200 |
---|---|---|
committer | danicampora <daniel@wipy.io> | 2015-10-19 21:17:15 +0200 |
commit | 8faf2dc75b140e7f6f915b8d90e4b86366f56997 (patch) | |
tree | a06530729c5d9ced2ca2f38ff82c8ae6a24394c8 /docs/wipy/tutorial | |
parent | 36ae417c9f1417d65ca773d48a36589e300b4f71 (diff) | |
download | micropython-8faf2dc75b140e7f6f915b8d90e4b86366f56997.tar.gz micropython-8faf2dc75b140e7f6f915b8d90e4b86366f56997.zip |
docs/wipy: Add wipy tutorials section.
Diffstat (limited to 'docs/wipy/tutorial')
-rw-r--r-- | docs/wipy/tutorial/index.rst | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/docs/wipy/tutorial/index.rst b/docs/wipy/tutorial/index.rst new file mode 100644 index 0000000000..751d9d7976 --- /dev/null +++ b/docs/wipy/tutorial/index.rst @@ -0,0 +1,30 @@ +.. _wipy_tutorial_index: + +WiPy tutorials and examples +=========================== + +Performing firmware upgrades +---------------------------- + +For detalied instructions see :ref:`OTA How-To <wipy_firmware_upgrade>`. + +Getting started with Blynk and the WiPy +--------------------------------------- + +Blynk is a platform with iOS and Android apps to control +Arduino, Raspberry Pi and the likes over the Internet. +You can easily build graphic interfaces for all your +projects by simply dragging and dropping widgets. + +There are several examples available that work out-of-the-box with +the WiPy. Before anything else, make sure that your WiPy is running +the latest software, check :ref:`OTA How-To <wipy_firmware_upgrade>`. + +1. Get the `Blynk library <https://github.com/wipy/wipy/blob/master/lib/blynk/BlynkLib.py>`_ and put it in ``/flash/lib/`` via FTP. +2. Get the `Blynk examples <https://github.com/wipy/wipy/tree/master/examples/blynk>`_ edit the network settings, and afterwards + upload them to ``/flash/lib/`` via FTP as well. +3. Follow the instructions on each example to setup the Blynk dashboard on your smartphone. +4. Give it a try, for instance:: + + >>> execfile('01_simple.py') + |