Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
Nodemcu Firmware
Commits
598b0981
Commit
598b0981
authored
Jan 20, 2016
by
San
Browse files
Fix example code in WiFi Module Doc
parent
3983dbca
Changes
1
Hide whitespace changes
Inline
Side-by-side
docs/en/modules/wifi.md
View file @
598b0981
...
...
@@ -468,7 +468,7 @@ function listap(t) -- (SSID : Authmode, RSSI, BSSID, Channel)
print
(
"
\n\t\t\t
SSID\t\t\t\t\tBSSID\t\t\t RSSI\t\tAUTHMODE\t\tCHANNEL"
)
for
bssid
,
v
in
pairs
(
t
)
do
local
ssid
,
rssi
,
authmode
,
channel
=
string.match
(
v
,
"([^,]+),([^,]+),([^,]+),([^,]*)"
)
print
(
string.format
(
"%32
.
s"
,
ssid
)
..
"
\t
"
..
bssid
..
"
\t
"
..
rssi
..
"
\t\t
"
..
authmode
..
"
\t\t\t
"
..
channel
)
print
(
string.format
(
"%32s"
,
ssid
)
..
"
\t
"
..
bssid
..
"
\t
"
..
rssi
..
"
\t\t
"
..
authmode
..
"
\t\t\t
"
..
channel
)
end
end
wifi
.
sta
.
getap
(
1
,
listap
)
...
...
@@ -478,7 +478,7 @@ function listap(t)
print
(
"
\n\t\t\t
SSID\t\t\t\t\tBSSID\t\t\t RSSI\t\tAUTHMODE\t\tCHANNEL"
)
for
bssid
,
v
in
pairs
(
t
)
do
local
ssid
,
rssi
,
authmode
,
channel
=
string.match
(
v
,
"([^,]+),([^,]+),([^,]+),([^,]*)"
)
print
(
string.format
(
"%32
.
s"
,
ssid
)
..
"
\t
"
..
bssid
..
"
\t
"
..
rssi
..
"
\t\t
"
..
authmode
..
"
\t\t\t
"
..
channel
)
print
(
string.format
(
"%32s"
,
ssid
)
..
"
\t
"
..
bssid
..
"
\t
"
..
rssi
..
"
\t\t
"
..
authmode
..
"
\t\t\t
"
..
channel
)
end
end
scan_cfg
=
{}
...
...
@@ -930,4 +930,4 @@ Stops the DHCP service.
none
#### Returns
boolean indicating success
\ No newline at end of file
boolean indicating success
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment