diff options
author | Dave Hylands <dhylands@gmail.com> | 2015-11-16 23:30:12 -0800 |
---|---|---|
committer | danicampora <daniel@wipy.io> | 2015-11-18 19:40:29 +0100 |
commit | f3308daa6fb74bc42f764b505d738a82bca8b508 (patch) | |
tree | 12f615f1f6c587cb8582a2baaf757528e06cedef /docs/wipy/tutorial | |
parent | 994ff738c8f12c1f7fd994ed45b2e191a9bc6ee4 (diff) | |
download | micropython-f3308daa6fb74bc42f764b505d738a82bca8b508.tar.gz micropython-f3308daa6fb74bc42f764b505d738a82bca8b508.zip |
docs/wipy: Fixed some typos in the WiPy's tutorials.
Diffstat (limited to 'docs/wipy/tutorial')
-rw-r--r-- | docs/wipy/tutorial/wlan.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/wipy/tutorial/wlan.rst b/docs/wipy/tutorial/wlan.rst index 40e38cbeae..396bbac0f2 100644 --- a/docs/wipy/tutorial/wlan.rst +++ b/docs/wipy/tutorial/wlan.rst @@ -31,14 +31,14 @@ Now you can proceed to scan for networks:: wlan.connect(net.ssid, auth=(net.sec, 'mywifikey'), timeout=5000) while not wlan.isconnected(): machine.idle() # save power while waiting - print('WLAN connection succeeded!) + print('WLAN connection succeeded!') break Assigning a static IP address when booting ------------------------------------------ -If you want your WiPy to connect to your home router while after boot-up, and with a fixed -IP address so that you can access it via telnet or FTP, use the following script:: +If you want your WiPy to connect to your home router after boot-up, and with a fixed +IP address so that you can access it via telnet or FTP, use the following script as /flash/boot.py:: import machine from network import WLAN |