Browse Source

Fix WiFi example

Marcel Stör 5 years ago
parent
commit
38262e995a
1 changed files with 6 additions and 2 deletions
  1. 6 2
      docs/index.md

+ 6 - 2
docs/index.md

@@ -21,9 +21,13 @@ srv:listen(80, function(conn)
 end)
 ```
 ```lua
--- connect to WiFi access point
+-- connect to WiFi access point (DO NOT save config to flash)
 wifi.setmode(wifi.STATION)
-wifi.sta.config("SSID", "password")
+station_cfg={}
+station_cfg.ssid = "SSID"
+station_cfg.pwd = "password"
+station_cfg.save = false
+wifi.sta.config(station_cfg)
 ```
 
 ```lua