Skip to content
Snippets Groups Projects
Commit d60cb8e1 authored by Paul Sokolovsky's avatar Paul Sokolovsky
Browse files

esp8266/help: Add "sta_if.active(True)" command.

As reported on the forum by Roberthh.
parent f16bec6b
No related branches found
No related tags found
No related merge requests found
......@@ -37,7 +37,7 @@ STATIC const char *help_text =
"Basic WiFi configuration:\n"
"\n"
"import network\n"
"sta_if = network.WLAN(network.STA_IF)\n"
"sta_if = network.WLAN(network.STA_IF); sta_if.active(True)\n"
"sta_if.scan() # Scan for available access points\n"
"sta_if.connect(\"<AP_name>\", \"<password>\") # Connect to an AP\n"
"sta_if.isconnected() # Check for successful connection\n"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment