From 9011815d862683711a6d79bb76a553d84b6e4556 Mon Sep 17 00:00:00 2001 From: danicampora Date: Mon, 26 Oct 2015 23:50:24 +0100 Subject: docs/wipy: Fix bug in example code and add note regarding OTA. --- docs/wipy/tutorial/wlan.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/wipy/tutorial') diff --git a/docs/wipy/tutorial/wlan.rst b/docs/wipy/tutorial/wlan.rst index 15a9bbefe..40e38cbea 100644 --- a/docs/wipy/tutorial/wlan.rst +++ b/docs/wipy/tutorial/wlan.rst @@ -50,10 +50,10 @@ IP address so that you can access it via telnet or FTP, use the following script wlan.ifconfig(config=('192.168.178.107', '255.255.255.0', '192.168.178.1', '8.8.8.8')) if not wlan.isconnected(): - wlan.connect(net.ssid, auth=(net.sec, 'mywifikey'), timeout=5000) + # change the line below to match your network ssid, security and password + wlan.connect('mywifi', auth=(WLAN.WPA2, 'mywifikey'), timeout=5000) while not wlan.isconnected(): machine.idle() # save power while waiting - break .. note:: -- cgit v1.2.3