2016-01-13 11:55:18 +01:00
# WiFi Module
2016-03-05 10:47:01 +01:00
| Since | Origin / Contributor | Maintainer | Source |
| :----- | :-------------------- | :---------- | :------ |
| 2015-05-12 | [Zeroday ](https://github.com/funshine ) | [dnc40085 ](https://github.com/dnc40085 ) | [wifi.c ](../../../app/modules/wifi.c )|
2016-01-13 11:55:18 +01:00
The NodeMCU WiFi control is spread across several tables:
2016-01-15 00:00:49 +01:00
- `wifi` for overall WiFi configuration
2016-01-14 23:27:38 +01:00
- [`wifi.sta` ](#wifista-module ) for station mode functions
- [`wifi.ap` ](#wifiap-module ) for wireless access point (WAP or simply AP) functions
- [`wifi.ap.dhcp` ](#wifiapdhcp-module ) for DHCP server control
2015-12-28 08:13:02 +01:00
- [`wifi.eventmon` ](#wifieventmon-module ) for wifi event monitor
2016-01-13 11:55:18 +01:00
2016-01-14 23:27:38 +01:00
## wifi.getchannel()
2016-01-13 11:55:18 +01:00
2016-01-14 23:27:38 +01:00
Gets the current WiFi channel.
2016-01-13 11:55:18 +01:00
#### Syntax
2016-01-14 23:27:38 +01:00
`wifi.getchannel()`
2016-01-13 11:55:18 +01:00
#### Parameters
2016-01-14 23:27:38 +01:00
`nil`
2016-01-13 11:55:18 +01:00
#### Returns
2016-01-14 23:27:38 +01:00
current WiFi channel
2016-01-13 11:55:18 +01:00
2016-11-06 20:51:01 +01:00
## wifi.getdefaultmode()
Gets default WiFi operation mode.
#### Syntax
`wifi.getdefaultmode()`
#### Parameters
`nil`
#### Returns
The WiFi mode, as one of the `wifi.STATION` , `wifi.SOFTAP` , `wifi.STATIONAP` or `wifi.NULLMODE` constants.
#### See also
[`wifi.getmode()` ](#wifigetmode )
[`wifi.setmode()` ](#wifisetmode )
2016-01-13 11:55:18 +01:00
## wifi.getmode()
2016-01-14 23:27:38 +01:00
Gets WiFi operation mode.
2016-01-13 11:55:18 +01:00
#### Syntax
`wifi.getmode()`
#### Parameters
2016-01-14 23:27:38 +01:00
`nil`
2016-01-13 11:55:18 +01:00
#### Returns
The WiFi mode, as one of the `wifi.STATION` , `wifi.SOFTAP` , `wifi.STATIONAP` or `wifi.NULLMODE` constants.
#### See also
2016-11-06 20:51:01 +01:00
[`wifi.getdefaultmode()` ](#wifigetdefaultmode )
2016-01-14 23:27:38 +01:00
[`wifi.setmode()` ](#wifisetmode )
2016-01-13 11:55:18 +01:00
2016-01-14 23:27:38 +01:00
## wifi.getphymode()
2016-01-13 11:55:18 +01:00
2016-01-14 23:27:38 +01:00
Gets WiFi physical mode.
2016-01-13 11:55:18 +01:00
#### Syntax
2016-06-04 15:33:58 +02:00
`wifi.getphymode()`
2016-01-13 11:55:18 +01:00
#### Parameters
none
#### Returns
2016-01-14 23:27:38 +01:00
The current physical mode as one of `wifi.PHYMODE_B` , `wifi.PHYMODE_G` or `wifi.PHYMODE_N` .
2016-01-13 11:55:18 +01:00
2016-01-14 23:27:38 +01:00
#### See also
[`wifi.setphymode()` ](#wifisetphymode )
2016-01-13 11:55:18 +01:00
2016-01-14 23:27:38 +01:00
## wifi.setmode()
2016-01-13 11:55:18 +01:00
2016-01-14 23:27:38 +01:00
Configures the WiFi mode to use. NodeMCU can run in one of four WiFi modes:
- Station mode, where the NodeMCU device joins an existing network
- Access point (AP) mode, where it creates its own network that others can join
- Station + AP mode, where it both creates its own network while at the same time being joined to another existing network
- WiFi off
When using the combined Station + AP mode, the same channel will be used for both networks as the radio can only listen on a single channel.
2016-11-06 20:51:01 +01:00
NOTE: WiFi Mode configuration will be retained until changed even if device is turned off.
2016-05-14 23:04:20 +02:00
2016-01-14 23:27:38 +01:00
#### Syntax
2016-11-06 20:51:01 +01:00
`wifi.setmode(mode[, save])`
2016-01-14 23:27:38 +01:00
#### Parameters
2016-11-06 20:51:01 +01:00
- `mode` value should be one of
2016-12-29 09:23:06 +01:00
- `wifi.STATION` for when the device is connected to a WiFi router. This is often done to give the device access to the Internet.
- `wifi.SOFTAP` for when the device is acting *only* as an access point. This will allow you to see the device in the list of WiFi networks (unless you hide the SSID, of course). In this mode your computer can connect to the device, creating a local area network. Unless you change the value, the NodeMCU device will be given a local IP address of 192.168.4.1 and assign your computer the next available IP address, such as 192.168.4.2.
- `wifi.STATIONAP` is the combination of `wifi.STATION` and `wifi.SOFTAP` . It allows you to create a local WiFi connection *and* connect to another WiFi router.
- `wifi.NULLMODE` changing WiFi mode to NULL_MODE will put wifi into a low power state similar to MODEM_SLEEP, provided `wifi.nullmodesleep(false)` has not been called.
2016-11-06 20:51:01 +01:00
- `save` choose whether or not to save wifi mode to flash
2016-12-29 09:23:06 +01:00
- `true` WiFi mode configuration **will** be retained through power cycle. (Default)
- `false` WiFi mode configuration **will not** be retained through power cycle.
2016-01-14 23:27:38 +01:00
#### Returns
current mode after setup
2016-01-13 11:55:18 +01:00
2016-01-14 23:27:38 +01:00
#### Example
```lua
wifi.setmode(wifi.STATION)
```
#### See also
[`wifi.getmode()` ](#wifigetmode )
2016-11-06 20:51:01 +01:00
[`wifi.getdefaultmode()` ](#wifigetdefaultmode )
2016-01-13 11:55:18 +01:00
2016-01-14 23:27:38 +01:00
## wifi.setphymode()
Sets WiFi physical mode.
2016-11-06 20:51:01 +01:00
2016-01-14 23:27:38 +01:00
- `wifi.PHYMODE_B`
802.11b, more range, low Transfer rate, more current draw
- `wifi.PHYMODE_G`
802.11g, medium range, medium transfer rate, medium current draw
- `wifi.PHYMODE_N`
802.11n, least range, fast transfer rate, least current draw (STATION ONLY)
2016-01-13 11:55:18 +01:00
Information from the Espressif datasheet v4.3
| Parameters |Typical Power Usage|
|---------------------------------------------|-------------------|
|Tx 802.11b, CCK 11Mbps, P OUT=+17dBm | 170 mA |
|Tx 802.11g, OFDM 54Mbps, P OUT =+15dBm | 140 mA |
|Tx 802.11n, MCS7 65Mbps, P OUT =+13dBm | 120 mA |
|Rx 802.11b, 1024 bytes packet length, -80dBm | 50 mA |
|Rx 802.11g, 1024 bytes packet length, -70dBm | 56 mA |
|Rx 802.11n, 1024 bytes packet length, -65dBm | 56 mA |
#### Syntax
`wifi.setphymode(mode)`
#### Parameters
2016-11-06 20:51:01 +01:00
`mode` one of the following
2016-01-14 23:27:38 +01:00
- `wifi.PHYMODE_B`
- `wifi.PHYMODE_G`
- `wifi.PHYMODE_N`
2016-01-13 11:55:18 +01:00
#### Returns
2016-01-14 23:27:38 +01:00
physical mode after setup
2016-01-13 11:55:18 +01:00
#### See also
2016-01-14 23:27:38 +01:00
[`wifi.getphymode()` ](#wifigetphymode )
2016-01-13 11:55:18 +01:00
2016-08-27 11:46:24 +02:00
## wifi.nullmodesleep()
2016-11-06 20:51:01 +01:00
Configures whether or not WiFi automatically goes to sleep in NULL_MODE. Enabled by default.
2016-01-13 11:55:18 +01:00
2017-01-01 17:32:29 +01:00
!!! note
This function **does not** store it's setting in flash, if auto sleep in NULL_MODE is not desired, `wifi.nullmodesleep(false)` must be called after power-up, restart, or wake from deep sleep.
2016-01-13 11:55:18 +01:00
#### Syntax
2016-11-06 20:51:01 +01:00
`wifi.nullmodesleep([enable])`
2016-01-13 11:55:18 +01:00
#### Parameters
2016-11-06 20:51:01 +01:00
- `enable`
- `true` Enable WiFi auto sleep in NULL_MODE. (Default setting)
- `false` Disable WiFi auto sleep in NULL_MODE.
2016-01-13 11:55:18 +01:00
#### Returns
2016-11-06 20:51:01 +01:00
- `sleep_enabled` Current/New NULL_MODE sleep setting
2016-12-29 09:23:06 +01:00
- If `wifi.nullmodesleep()` is called with no arguments, current setting is returned.
- If `wifi.nullmodesleep()` is called with `enable` argument, confirmation of new setting is returned.
2016-01-13 11:55:18 +01:00
## wifi.startsmart()
Starts to auto configuration, if success set up SSID and password automatically.
Intended for use with SmartConfig apps, such as Espressif's [Android & iOS app ](https://github.com/espressifapp ).
Only usable in `wifi.STATION` mode.
2016-07-14 22:52:30 +02:00
!!! important
2016-03-01 21:32:24 +01:00
SmartConfig is disabled by default and can be enabled by setting `WIFI_SMART_ENABLE` in [`user_config.h` ](https://github.com/nodemcu/nodemcu-firmware/blob/dev/app/include/user_config.h#L96 ) before you build the firmware.
2016-01-13 11:55:18 +01:00
#### Syntax
`wifi.startsmart(type, callback)`
#### Parameters
2016-01-14 23:27:38 +01:00
- `type` 0 for ESP\_TOUCH, or 1 for AIR\_KISS.
- `callback` a callback function of the form `function(ssid, password) end` which gets called after configuration.
2016-01-13 11:55:18 +01:00
#### Returns
`nil`
#### Example
2016-01-14 23:27:38 +01:00
2016-01-13 11:55:18 +01:00
```lua
wifi.setmode(wifi.STATION)
wifi.startsmart(0,
function(ssid, password)
print(string.format("Success. SSID:%s ; PASSWORD:%s", ssid, password))
end
)
```
#### See also
2016-01-14 23:27:38 +01:00
[`wifi.stopsmart()` ](#wifistopsmart )
2016-01-13 11:55:18 +01:00
## wifi.stopsmart()
2016-01-14 23:27:38 +01:00
Stops the smart configuring process.
2016-01-13 11:55:18 +01:00
#### Syntax
`wifi.stopsmart()`
#### Parameters
none
#### Returns
`nil`
#### See also
2016-01-14 23:27:38 +01:00
[`wifi.startsmart()` ](#wifistartsmart )
2016-01-13 11:55:18 +01:00
2016-01-14 23:27:38 +01:00
# wifi.sta Module
2016-01-13 11:55:18 +01:00
2016-01-14 23:27:38 +01:00
## wifi.sta.autoconnect()
2016-01-13 11:55:18 +01:00
2016-01-14 23:27:38 +01:00
Auto connects to AP in station mode.
2016-01-13 11:55:18 +01:00
#### Syntax
2016-01-14 23:27:38 +01:00
`wifi.sta.autoconnect(auto)`
2016-01-13 11:55:18 +01:00
#### Parameters
2016-01-14 23:27:38 +01:00
`auto` 0 to disable auto connecting, 1 to enable auto connecting
2016-01-13 11:55:18 +01:00
#### Returns
2016-01-14 23:27:38 +01:00
`nil`
#### Example
```lua
wifi.sta.autoconnect(1)
```
#### See also
- [`wifi.sta.config()` ](#wifistaconfig )
- [`wifi.sta.connect()` ](#wifistaconnect )
- [`wifi.sta.disconnect()` ](#wifistadisconnect )
2016-11-06 20:51:01 +01:00
## wifi.sta.changeap()
Select Access Point from list returned by `wifi.sta.getapinfo()`
#### Syntax
`wifi.sta.changeap(ap_index)`
#### Parameters
`ap_index` Index of Access Point you would like to change to. (Range:1-5)
- Corresponds to index used by [`wifi.sta.getapinfo()` ](#wifistagetapinfo ) and [`wifi.sta.getapindex()` ](#wifistagetapindex )
#### Returns
- `true` Success
- `false` Failure
#### Example
```lua
wifi.sta.changeap(4)
```
#### See also
- [`wifi.sta.getapinfo()` ](#wifistagetapinfo )
- [`wifi.sta.getapindex()` ](#wifistagetapindex )
2017-02-08 21:42:29 +01:00
## wifi.sta.clearconfig()
Clears the currently saved WiFi station configuration, erasing it from the flash. May be useful for certain factory-reset
scenarios when a full [`node.restore()` ](node.md#noderestore ) is not desired, or to prepare for using
[End-User Setup ](enduser-setup ) so that the SoftAP is able to lock onto a single hardware radio channel.
#### Syntax
`wifi.sta.clearconfig()`
#### Parameters
none
#### Returns
- `true` Success
- `false` Failure
#### See also
- [`wifi.sta.config()` ](#wifistaconfig )
- [`node.restore()` ](node.md#noderestore )
2016-01-14 23:27:38 +01:00
## wifi.sta.config()
Sets the WiFi station configuration.
#### Syntax
2016-11-06 20:51:01 +01:00
`wifi.sta.config(station_config)`
2016-01-14 23:27:38 +01:00
#### Parameters
2016-11-06 20:51:01 +01:00
- `station_config` table containing configuration data for station
2016-12-23 12:59:46 +01:00
- `ssid` string which is less than 32 bytes.
2017-02-08 21:42:29 +01:00
- `pwd` string which is 0-64. Empty string indicates an open WiFi access point. _Note: WPA requires a minimum of 8-characters, but the ESP8266 can also connect to a WEP access point (a 40-bit WEP key can be provided as its corresponding 5-character ASCII string)._
2016-12-23 12:59:46 +01:00
- `auto` defaults to true
2016-12-23 13:43:52 +01:00
- `true` to enable auto connect and connect to access point, hence with `auto=true` there's no need to call [`wifi.sta.connect()` ](#wifistaconnect )
- `false` to disable auto connect and remain disconnected from access point
2016-12-23 12:59:46 +01:00
- `bssid` string that contains the MAC address of the access point (optional)
- You can set BSSID if you have multiple access points with the same SSID.
- If you set BSSID for a specific SSID and would like to configure station to connect to the same SSID only without the BSSID requirement, you MUST first configure to station to a different SSID first, then connect to the desired SSID
- The following formats are valid:
- "DE:C1:A5:51:F1:ED"
- "AC-1D-1C-B1-0B-22"
- "DE AD BE EF 7A C0"
- `save` Save station configuration to flash.
- `true` configuration **will** be retained through power cycle.
- `false` configuration **will not** be retained through power cycle. (Default)
2016-01-14 23:27:38 +01:00
#### Returns
2016-11-06 20:51:01 +01:00
- `true` Success
- `false` Failure
2016-01-14 23:27:38 +01:00
#### Example
```lua
2016-11-06 20:51:01 +01:00
--connect to Access Point (DO NOT save config to flash)
station_cfg={}
station_cfg.ssid="NODE-AABBCC"
station_cfg.pwd="password"
wifi.sta.config(station_cfg)
--connect to Access Point (DO save config to flash)
station_cfg={}
station_cfg.ssid="NODE-AABBCC"
station_cfg.pwd="password"
station_cfg.save=true
wifi.sta.config(station_cfg)
--connect to Access Point with specific MAC address
station_cfg={}
station_cfg.ssid="NODE-AABBCC"
station_cfg.pwd="password"
station_cfg.bssid="AA:BB:CC:DD:EE:FF"
wifi.sta.config(station_cfg)
--configure station but don't connect to Access point
station_cfg={}
station_cfg.ssid="NODE-AABBCC"
station_cfg.pwd="password"
station_cfg.auto=false
wifi.sta.config(station_cfg)
2016-01-14 23:27:38 +01:00
```
#### See also
2017-02-08 21:42:29 +01:00
- [`wifi.sta.clearconfig()` ](#wifistaclearconfig )
2016-01-14 23:27:38 +01:00
- [`wifi.sta.connect()` ](#wifistaconnect )
- [`wifi.sta.disconnect()` ](#wifistadisconnect )
2016-11-06 20:51:01 +01:00
- [`wifi.sta.apinfo()` ](#wifistaapinfo )
2016-01-14 23:27:38 +01:00
## wifi.sta.connect()
2016-01-15 23:06:09 +01:00
2016-04-29 19:21:25 +02:00
Connects to the configured AP in station mode. You only ever need to call this if auto-connect was disabled in [`wifi.sta.config()` ](#wifistaconfig ).
2016-01-14 23:27:38 +01:00
#### Syntax
`wifi.sta.connect()`
#### Parameters
none
#### Returns
`nil`
#### See also
- [`wifi.sta.disconnect()` ](#wifistadisconnect )
- [`wifi.sta.config()` ](#wifistaconfig )
## wifi.sta.disconnect()
Disconnects from AP in station mode.
2017-01-01 17:32:29 +01:00
!!! note
Please note that disconnecting from Access Point does not reduce power consumption. If power saving is your goal, please refer to the description for `wifi.NULLMODE` in the function [`wifi.setmode()` ](#wifisetmode ) for more details.
2016-11-06 20:51:01 +01:00
2016-01-14 23:27:38 +01:00
#### Syntax
`wifi.sta.disconnect()`
#### Parameters
none
#### Returns
`nil`
#### See also
- [`wifi.sta.config()` ](#wifistaconfig )
- [`wifi.sta.connect()` ](#wifistaconnect )
## wifi.sta.eventMonReg()
Registers callbacks for WiFi station status events.
#### Syntax
2016-03-13 17:43:36 +01:00
- `wifi.sta.eventMonReg(wifi_status[, function([previous_state])])`
2016-01-14 23:27:38 +01:00
#### Parameters
2016-11-06 20:51:01 +01:00
- `wifi_status` WiFi status you would like to set a callback for:
2016-01-14 23:27:38 +01:00
- `wifi.STA_IDLE`
- `wifi.STA_CONNECTING`
- `wifi.STA_WRONGPWD`
- `wifi.STA_APNOTFOUND`
- `wifi.STA_FAIL`
- `wifi.STA_GOTIP`
2016-11-06 20:51:01 +01:00
- `function` callback function to perform when event occurs
2016-03-13 17:43:36 +01:00
- Note: leaving field blank unregisters callback.
2016-01-14 23:27:38 +01:00
- `previous_state` previous wifi_state(0 - 5)
#### Returns
`nil`
#### Example
2016-11-06 20:51:01 +01:00
```lua
2016-01-14 23:27:38 +01:00
--register callback
wifi.sta.eventMonReg(wifi.STA_IDLE, function() print("STATION_IDLE") end)
wifi.sta.eventMonReg(wifi.STA_CONNECTING, function() print("STATION_CONNECTING") end)
wifi.sta.eventMonReg(wifi.STA_WRONGPWD, function() print("STATION_WRONG_PASSWORD") end)
wifi.sta.eventMonReg(wifi.STA_APNOTFOUND, function() print("STATION_NO_AP_FOUND") end)
wifi.sta.eventMonReg(wifi.STA_FAIL, function() print("STATION_CONNECT_FAIL") end)
wifi.sta.eventMonReg(wifi.STA_GOTIP, function() print("STATION_GOT_IP") end)
2016-11-06 20:51:01 +01:00
2016-01-14 23:27:38 +01:00
--register callback: use previous state
wifi.sta.eventMonReg(wifi.STA_CONNECTING, function(previous_State)
2016-11-06 20:51:01 +01:00
if(previous_State==wifi.STA_GOTIP) then
2016-01-14 23:27:38 +01:00
print("Station lost connection with access point\n\tAttempting to reconnect...")
else
print("STATION_CONNECTING")
end
end)
2016-11-06 20:51:01 +01:00
2016-01-14 23:27:38 +01:00
--unregister callback
2016-03-13 17:43:36 +01:00
wifi.sta.eventMonReg(wifi.STA_IDLE)
2016-01-14 23:27:38 +01:00
```
#### See also
- [`wifi.sta.eventMonStart()` ](#wifistaeventmonstart )
- [`wifi.sta.eventMonStop()` ](#wifistaeventmonstop )
2015-12-28 08:13:02 +01:00
- [`wifi.eventmon.register()` ](#wifieventmonregister )
- [`wifi.eventmon.unregister()` ](#wifieventmonunregister )
2016-01-14 23:27:38 +01:00
## wifi.sta.eventMonStart()
Starts WiFi station event monitor.
#### Syntax
`wifi.sta.eventMonStart([ms])`
### Parameters
2015-12-28 08:13:02 +01:00
- `ms` interval between checks in milliseconds, defaults to 150ms if not provided.
2016-01-14 23:27:38 +01:00
#### Returns
`nil`
#### Example
```lua
--start WiFi event monitor with default interval
wifi.sta.eventMonStart()
--start WiFi event monitor with 100ms interval
wifi.sta.eventMonStart(100)
```
#### See also
- [`wifi.sta.eventMonReg()` ](#wifistaeventmonreg )
- [`wifi.sta.eventMonStop()` ](#wifistaeventmonstop )
2015-12-28 08:13:02 +01:00
- [`wifi.eventmon.register()` ](#wifieventmonregister )
- [`wifi.eventmon.unregister()` ](#wifieventmonunregister )
2016-03-13 17:43:36 +01:00
2016-01-14 23:27:38 +01:00
## wifi.sta.eventMonStop()
Stops WiFi station event monitor.
#### Syntax
2016-03-13 17:43:36 +01:00
`wifi.sta.eventMonStop([unregister_all])`
2016-01-14 23:27:38 +01:00
#### Parameters
2016-03-13 17:43:36 +01:00
- `unregister_all` enter 1 to unregister all previously registered functions.
- Note: leave blank to leave callbacks registered
2016-01-14 23:27:38 +01:00
#### Returns
`nil`
#### Example
```lua
--stop WiFi event monitor
wifi.sta.eventMonStop()
--stop WiFi event monitor and unregister all callbacks
2016-03-13 17:43:36 +01:00
wifi.sta.eventMonStop(1)
2016-01-14 23:27:38 +01:00
```
#### See also
- [`wifi.sta.eventMonReg()` ](#wifistaeventmonreg )
- [`wifi.sta.eventMonStart()` ](#wifistaeventmonstart )
2015-12-28 08:13:02 +01:00
- [`wifi.eventmon.register()` ](#wifieventmonregister )
- [`wifi.eventmon.unregister()` ](#wifieventmonunregister )
2016-01-14 23:27:38 +01:00
## wifi.sta.getap()
Scans AP list as a Lua table into callback function.
#### Syntax
`wifi.sta.getap([[cfg], format,] callback(table))`
#### Parameters
- `cfg` table that contains scan configuration
2016-11-06 20:51:01 +01:00
- `ssid` SSID == nil, don't filter SSID
2016-01-14 23:27:38 +01:00
- `bssid` BSSID == nil, don't filter BSSID
- `channel` channel == 0, scan all channels, otherwise scan set channel (default is 0)
- `show_hidden` show_hidden == 1, get info for router with hidden SSID (default is 0)
- `format` select output table format, defaults to 0
- 0: old format (SSID : Authmode, RSSI, BSSID, Channel), any duplicate SSIDs will be discarded
- 1: new format (BSSID : SSID, RSSI, auth mode, Channel)
- `callback(table)` a callback function to receive the AP table when the scan is done. This function receives a table, the key is the BSSID, the value is other info in format: SSID, RSSID, auth mode, channel.
#### Returns
`nil`
#### Example
```lua
-- print AP list in old format (format not defined)
function listap(t)
for k,v in pairs(t) do
print(k.." : "..v)
end
end
wifi.sta.getap(listap)
-- Print AP list that is easier to read
function listap(t) -- (SSID : Authmode, RSSI, BSSID, Channel)
print("\n"..string.format("%32s","SSID").."\tBSSID\t\t\t\t RSSI\t\tAUTHMODE\tCHANNEL")
for ssid,v in pairs(t) do
local authmode, rssi, bssid, channel = string.match(v, "([^,]+),([^,]+),([^,]+),([^,]+)")
print(string.format("%32s",ssid).."\t"..bssid.."\t "..rssi.."\t\t"..authmode.."\t\t\t"..channel)
end
end
wifi.sta.getap(listap)
2016-11-06 20:51:01 +01:00
2016-01-14 23:27:38 +01:00
-- print AP list in new format
function listap(t)
for k,v in pairs(t) do
print(k.." : "..v)
end
end
wifi.sta.getap(1, listap)
-- Print AP list that is easier to read
function listap(t) -- (SSID : Authmode, RSSI, BSSID, Channel)
print("\n\t\t\tSSID\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, "([^,]+),([^,]+),([^,]+),([^,]*)")
2016-01-20 02:34:45 +01:00
print(string.format("%32s",ssid).."\t"..bssid.."\t "..rssi.."\t\t"..authmode.."\t\t\t"..channel)
2016-01-14 23:27:38 +01:00
end
end
wifi.sta.getap(1, listap)
--check for specific AP
function listap(t)
print("\n\t\t\tSSID\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, "([^,]+),([^,]+),([^,]+),([^,]*)")
2016-01-20 02:34:45 +01:00
print(string.format("%32s",ssid).."\t"..bssid.."\t "..rssi.."\t\t"..authmode.."\t\t\t"..channel)
2016-01-14 23:27:38 +01:00
end
end
scan_cfg = {}
2016-11-06 20:51:01 +01:00
scan_cfg.ssid = "myssid"
scan_cfg.bssid = "AA:AA:AA:AA:AA:AA"
2016-01-14 23:27:38 +01:00
scan_cfg.channel = 0
scan_cfg.show_hidden = 1
wifi.sta.getap(scan_cfg, 1, listap)
--get RSSI for currently configured AP
function listap(t)
for bssid,v in pairs(t) do
local ssid, rssi, authmode, channel = string.match(v, "([^,]+),([^,]+),([^,]+),([^,]*)")
print("CURRENT RSSI IS: "..rssi)
end
end
2016-11-06 20:51:01 +01:00
ssid, tmp, bssid_set, bssid=wifi.sta.getconfig()
2016-01-14 23:27:38 +01:00
scan_cfg = {}
2016-11-06 20:51:01 +01:00
scan_cfg.ssid = ssid
2016-01-14 23:27:38 +01:00
if bssid_set == 1 then scan_cfg.bssid = bssid else scan_cfg.bssid = nil end
scan_cfg.channel = wifi.getchannel()
scan_cfg.show_hidden = 0
ssid, tmp, bssid_set, bssid=nil, nil, nil, nil
wifi.sta.getap(scan_cfg, 1, listap)
```
#### See also
[`wifi.sta.getip()` ](#wifistagetip )
2016-11-06 20:51:01 +01:00
## wifi.sta.getapindex()
Get index of current Access Point stored in AP cache.
#### Syntax
`wifi.sta.getapindex()`
#### Parameters
none
#### Returns
`current_index` index of currently selected Access Point. (Range:1-5)
#### Example
```lua
print("the index of the currently selected AP is: "..wifi.sta.getapindex())
```
#### See also
- [`wifi.sta.getapindex()` ](#wifistagetapindex )
- [`wifi.sta.apinfo()` ](#wifistaapinfo )
- [`wifi.sta.apchange()` ](#wifistaapchange )
## wifi.sta.getapinfo()
Get information of APs cached by ESP8266 station.
!!! Note
Any Access Points configured with save disabled `wifi.sta.config({save=false})` will populate this list (appearing to overwrite APs stored in flash) until restart.
#### Syntax
`wifi.sta.getapinfo()`
#### Parameters
`nil`
#### Returns
- `ap_info`
2016-12-29 09:23:06 +01:00
- `qty` quantity of APs returned
- `1-5` index of AP. (the index corresponds to index used by [`wifi.sta.changeap()` ](#wifistachangeap ) and [`wifi.sta.getapindex()` ](#wifistagetapindex ))
- `ssid` ssid of Access Point
- `pwd` password for Access Point, `nil` if no password was configured
- `bssid` MAC address of Access Point, `nil` if no MAC address was configured
2016-11-06 20:51:01 +01:00
#### Example
```lua
--print stored access point info
do
for k,v in pairs(wifi.sta.getapinfo()) do
if (type(v)=="table") then
print(" "..k.." : "..type(v))
for k,v in pairs(v) do
print("\t\t"..k.." : "..v)
end
else
print(" "..k.." : "..v)
end
end
end
--print stored access point info(formatted)
do
local x=wifi.sta.getapinfo()
local y=wifi.sta.getapindex()
print("\n Number of APs stored in flash:", x.qty)
print(string.format(" %-6s %-32s %-64s %-18s", "index:", "SSID:", "Password:", "BSSID:"))
for i=1, (x.qty), 1 do
print(string.format(" %s%-6d %-32s %-64s %-18s",(i==y and ">" or " "), i, x[i].ssid, x[i].pwd and x[i].pwd or type(nil), x[i].bssid and x[i].bssid or type(nil)))
end
end
```
#### See also
- [`wifi.sta.getapindex()` ](#wifistagetapindex )
- [`wifi.sta.setaplimit()` ](#wifistasetaplimit )
- [`wifi.sta.changeap()` ](#wifistachangeap )
- [`wifi.sta.config()` ](#wifistaconfig )
2016-01-14 23:27:38 +01:00
## wifi.sta.getbroadcast()
Gets the broadcast address in station mode.
#### Syntax
`wifi.sta.getbroadcast()`
#### Parameters
`nil`
#### Returns
2016-11-06 20:51:01 +01:00
broadcast address as string, for example "192.168.0.255",
2016-01-14 23:27:38 +01:00
returns `nil` if IP address = "0.0.0.0".
#### See also
[`wifi.sta.getip()` ](#wifistagetip )
## wifi.sta.getconfig()
2016-11-06 20:51:01 +01:00
Gets the WiFi station configuration.
2016-01-14 23:27:38 +01:00
#### Syntax
`wifi.sta.getconfig()`
#### Parameters
2016-11-06 20:51:01 +01:00
- `return_table`
2016-12-29 09:23:06 +01:00
- `true` returns data in a table
- `false` returns data in the old format (default)
2016-01-14 23:27:38 +01:00
#### Returns
2016-11-06 20:51:01 +01:00
If `return_table` is `true` :
2016-12-29 09:23:06 +01:00
2016-11-06 20:51:01 +01:00
- `config_table`
2016-12-29 09:23:06 +01:00
- `ssid` ssid of Access Point.
- `pwd` password to Access Point, `nil` if no password was configured
- `bssid` MAC address of Access Point, `nil` if no MAC address was configured
2016-11-06 20:51:01 +01:00
If `return_table` is `false` :
2016-12-29 09:23:06 +01:00
- ssid, password, bssid_set, bssid, if `bssid_set` is equal to `0` then `bssid` is irrelevant
2016-01-14 23:27:38 +01:00
#### Example
```lua
2016-11-06 20:51:01 +01:00
--Get current Station configuration (NEW FORMAT)
do
local def_sta_config=wifi.sta.getconfig(true)
print(string.format("\tDefault station config\n\tssid:\"%s\"\tpassword:\"%s\"%s", def_sta_config.ssid, def_sta_config.pwd, (type(def_sta_config.bssid)=="string" and "\tbssid:\""..def_sta_config.bssid.."\"" or "")))
end
--Get current Station configuration (OLD FORMAT)
2016-01-14 23:27:38 +01:00
ssid, password, bssid_set, bssid=wifi.sta.getconfig()
print("\nCurrent Station configuration:\nSSID : "..ssid
.."\nPassword : "..password
.."\nBSSID_set : "..bssid_set
.."\nBSSID: "..bssid.."\n")
ssid, password, bssid_set, bssid=nil, nil, nil, nil
```
2016-01-13 11:55:18 +01:00
#### See also
2016-11-06 20:51:01 +01:00
- [`wifi.sta.getdefaultconfig()` ](#wifistagetdefaultconfig )
- [`wifi.sta.connect()` ](#wifistaconnect )
- [`wifi.sta.disconnect()` ](#wifistadisconnect )
## wifi.sta.getdefaultconfig()
Gets the default WiFi station configuration stored in flash.
#### Syntax
`wifi.sta.getdefaultconfig(return_table)`
#### Parameters
- `return_table`
2016-12-29 09:23:06 +01:00
- `true` returns data in a table
- `false` returns data in the old format (default)
2016-11-06 20:51:01 +01:00
#### Returns
If `return_table` is `true` :
2016-12-29 09:23:06 +01:00
2016-11-06 20:51:01 +01:00
- `config_table`
2016-12-29 09:23:06 +01:00
- `ssid` ssid of Access Point.
- `pwd` password to Access Point, `nil` if no password was configured
- `bssid` MAC address of Access Point, `nil` if no MAC address was configured
2016-11-06 20:51:01 +01:00
If `return_table` is `false` :
2016-12-29 09:23:06 +01:00
- ssid, password, bssid_set, bssid, if `bssid_set` is equal to `0` then `bssid` is irrelevant
2016-11-06 20:51:01 +01:00
#### Example
```lua
--Get default Station configuration (NEW FORMAT)
do
local def_sta_config=wifi.sta.getdefaultconfig(true)
print(string.format("\tDefault station config\n\tssid:\"%s\"\tpassword:\"%s\"%s", def_sta_config.ssid, def_sta_config.pwd, (type(def_sta_config.bssid)=="string" and "\tbssid:\""..def_sta_config.bssid.."\"" or "")))
end
--Get default Station configuration (OLD FORMAT)
ssid, password, bssid_set, bssid=wifi.sta.getdefaultconfig()
print("\nCurrent Station configuration:\nSSID : "..ssid
.."\nPassword : "..password
.."\nBSSID_set : "..bssid_set
.."\nBSSID: "..bssid.."\n")
ssid, password, bssid_set, bssid=nil, nil, nil, nil
```
#### See also
- [`wifi.sta.getconfig()` ](#wifistagetconfig )
2016-01-14 23:27:38 +01:00
- [`wifi.sta.connect()` ](#wifistaconnect )
- [`wifi.sta.disconnect()` ](#wifistadisconnect )
2016-01-13 11:55:18 +01:00
2016-01-15 23:06:09 +01:00
## wifi.sta.gethostname()
Gets current station hostname.
#### Syntax
`wifi.sta.gethostname()`
#### Parameters
none
#### Returns
currently configured hostname
#### Example
```lua
print("Current hostname is: \""..wifi.sta.gethostname().."\"")
```
2016-01-14 23:27:38 +01:00
## wifi.sta.getip()
Gets IP address, netmask, and gateway address in station mode.
#### Syntax
`wifi.sta.getip()`
#### Parameters
none
#### Returns
IP address, netmask, gateway address as string, for example "192.168.0.111". Returns `nil` if IP = "0.0.0.0".
#### Example
```lua
-- print current IP address, netmask, gateway
print(wifi.sta.getip())
-- 192.168.0.111 255.255.255.0 192.168.0.1
ip = wifi.sta.getip()
print(ip)
-- 192.168.0.111
ip, nm = wifi.sta.getip()
print(nm)
-- 255.255.255.0
```
#### See also
[`wifi.sta.getmac()` ](#wifistagetmac )
## wifi.sta.getmac()
Gets MAC address in station mode.
#### Syntax
`wifi.sta.getmac()`
#### Parameters
none
#### Returns
2016-06-29 22:46:34 +02:00
MAC address as string e.g. "18:fe:34:a2:d7:34"
2016-01-14 23:27:38 +01:00
#### See also
[`wifi.sta.getip()` ](#wifistagetip )
2015-12-28 08:13:02 +01:00
## wifi.sta.getrssi()
Get RSSI(Received Signal Strength Indicator) of the Access Point which ESP8266 station connected to.
#### Syntax
`wifi.sta.getrssi()`
#### Parameters
none
#### Returns
- If station is connected to an access point, `rssi` is returned.
- If station is not connected to an access point, `nil` is returned.
#### Example
```lua
RSSI=wifi.sta.getrssi()
print("RSSI is", RSSI)
```
2016-11-06 20:51:01 +01:00
## wifi.sta.setaplimit()
Set Maximum number of Access Points to store in flash.
- This value is written to flash
!!! Attention
If 5 Access Points are stored and AP limit is set to 4, the AP at index 5 will remain until [`node.restore()` ](node.md#noderestore ) is called or AP limit is set to 5 and AP is overwritten.
#### Syntax
`wifi.sta.setaplimit(qty)`
#### Parameters
`qty` Quantity of Access Points to store in flash. Range: 1-5 (Default: 5)
#### Returns
- `true` Success
- `false` Failure
#### Example
```lua
wifi.sta.setaplimit(true)
```
#### See also
- [`wifi.sta.getapinfo()` ](#wifistagetapinfo )
2016-01-15 23:06:09 +01:00
## wifi.sta.sethostname()
Sets station hostname.
#### Syntax
`wifi.sta.sethostname(hostname)`
#### Parameters
`hostname` must only contain letters, numbers and hyphens('-') and be 32 characters or less with first and last character being alphanumeric
#### Returns
2015-12-28 08:13:02 +01:00
`nil`
2016-01-15 23:06:09 +01:00
#### Example
```lua
if (wifi.sta.sethostname("NodeMCU") == true) then
print("hostname was successfully changed")
else
print("hostname was not changed")
end
```
2016-01-14 23:27:38 +01:00
## wifi.sta.setip()
Sets IP address, netmask, gateway address in station mode.
#### Syntax
`wifi.sta.setip(cfg)`
#### Parameters
`cfg` table contain IP address, netmask, and gateway
```lua
{
ip = "192.168.0.111",
netmask = "255.255.255.0",
gateway = "192.168.0.1"
}
```
#### Returns
true if success, false otherwise
#### See also
[`wifi.sta.setmac()` ](#wifistasetmac )
## wifi.sta.setmac()
Sets MAC address in station mode.
#### Syntax
`wifi.sta.setmac(mac)`
#### Parameters
MAC address in string e.g. "DE:AD:BE:EF:7A:C0"
#### Returns
true if success, false otherwise
#### Example
```lua
print(wifi.sta.setmac("DE:AD:BE:EF:7A:C0"))
```
#### See also
[`wifi.sta.setip()` ](#wifistasetip )
2016-11-06 20:51:01 +01:00
## wifi.sta.sleeptype()
Configures the WiFi modem sleep type to be used while station is connected to an Access Point.
2017-01-01 17:32:29 +01:00
!!! note
Does not apply to `wifi.SOFTAP` , `wifi.STATIONAP` or `wifi.NULLMODE` .
2016-11-06 20:51:01 +01:00
#### Syntax
`wifi.sta.sleeptype(type_wanted)`
#### Parameters
`type_wanted` one of the following:
- `wifi.NONE_SLEEP` to keep the modem on at all times
- `wifi.LIGHT_SLEEP` to allow the CPU to power down under some circumstances
- `wifi.MODEM_SLEEP` to power down the modem as much as possible
#### Returns
The actual sleep mode set, as one of `wifi.NONE_SLEEP` , `wifi.LIGHT_SLEEP` or `wifi.MODEM_SLEEP` .
2016-01-14 23:27:38 +01:00
## wifi.sta.status()
Gets the current status in station mode.
#### Syntax
`wifi.sta.status()`
#### Parameters
`nil`
#### Returns
number: 0~5
2016-05-02 13:57:18 +02:00
- 0: STA_IDLE,
- 1: STA_CONNECTING,
- 2: STA_WRONGPWD,
- 3: STA_APNOTFOUND,
- 4: STA_FAIL,
- 5: STA_GOTIP.
2016-01-14 23:27:38 +01:00
# wifi.ap Module
## wifi.ap.config()
2016-05-14 23:04:20 +02:00
Sets SSID and password in AP mode. Be sure to make the password at least 8 characters long! If you don't it will default to *no* password and not set the SSID! It will still work as an access point but use a default SSID like e.g. NODE-9997C3.
2016-01-14 23:27:38 +01:00
#### Syntax
`wifi.ap.config(cfg)`
#### Parameters
2016-11-06 20:51:01 +01:00
- `cfg` table to hold configuration
2016-12-23 12:59:46 +01:00
- `ssid` SSID chars 1-32
- `pwd` password chars 8-64
- `auth` authentication method, one of `wifi.OPEN` (default), `wifi.WPA_PSK` , `wifi.WPA2_PSK` , `wifi.WPA_WPA2_PSK`
- `channel` channel number 1-14 default = 6
- `hidden` false = not hidden, true = hidden, default = false
- `max` maximum number of connections 1-4 default=4
- `beacon` beacon interval time in range 100-60000, default = 100
- `save` save configuration to flash.
- `true` configuration **will** be retained through power cycle. (Default)
- `false` configuration **will not** be retained through power cycle.
2016-11-06 20:51:01 +01:00
2016-01-14 23:27:38 +01:00
#### Returns
2016-11-06 20:51:01 +01:00
- `true` Success
- `false` Failure
2016-01-14 23:27:38 +01:00
#### Example:
```lua
cfg={}
cfg.ssid="myssid"
cfg.pwd="mypassword"
wifi.ap.config(cfg)
```
2015-12-28 08:13:02 +01:00
## wifi.ap.deauth()
2016-11-06 20:51:01 +01:00
Deauths (forcibly removes) a client from the ESP access point by sending a corresponding IEEE802.11 management packet (first) and removing the client from it's data structures (afterwards).
2015-12-28 08:13:02 +01:00
The IEEE802.11 reason code used is 2 for "Previous authentication no longer valid"(AUTH_EXPIRE).
#### Syntax
`wifi.ap.deauth([MAC])`
#### Parameters
- `MAC` address of station to be deauthed.
- Note: if this field is left blank, all currently connected stations will get deauthed.
#### Returns
Returns true unless called while the ESP is in the STATION opmode
#### Example
```lua
allowed_mac_list={"18:fe:34:00:00:00", "18:fe:34:00:00:01"}
2016-11-06 20:51:01 +01:00
wifi.eventmon.register(wifi.eventmon.AP_STACONNECTED, function(T)
2015-12-28 08:13:02 +01:00
print("\n\tAP - STATION CONNECTED".."\n\tMAC: "..T.MAC.."\n\tAID: "..T.AID)
if(allowed_mac_list~=nil) then
2016-11-06 20:51:01 +01:00
for _, v in pairs(allowed_mac_list) do
if(v == T.MAC) then return end
2015-12-28 08:13:02 +01:00
end
end
wifi.ap.deauth(T.MAC)
print("\tStation DeAuthed!")
end)
```
#### See also
[`wifi.eventmon.register()` ](#wifieventmonregister )
[`wifi.eventmon.reason()` ](#wifieventmonreason )
2016-01-14 23:27:38 +01:00
## wifi.ap.getbroadcast()
Gets broadcast address in AP mode.
#### Syntax
`wifi.ap.getbroadcast()`
#### Parameters
none
#### Returns
2016-11-06 20:51:01 +01:00
broadcast address in string, for example "192.168.0.255",
2016-01-14 23:27:38 +01:00
returns `nil` if IP address = "0.0.0.0".
#### Example
```lua
bc = wifi.ap.getbroadcast()
print(bc)
-- 192.168.0.255
```
#### See also
[`wifi.ap.getip()` ](#wifiapgetip )
## wifi.ap.getclient()
Gets table of clients connected to device in AP mode.
#### Syntax
`wifi.ap.getclient()`
#### Parameters
none
#### Returns
table of connected clients
#### Example
```lua
table={}
table=wifi.ap.getclient()
for mac,ip in pairs(table) do
print(mac,ip)
end
-- or shorter
for mac,ip in pairs(wifi.ap.getclient()) do
print(mac,ip)
end
```
2016-11-06 20:51:01 +01:00
## wifi.ap.getconfig()
Gets the current SoftAP configuration.
#### Syntax
`wifi.ap.getconfig(return_table)`
#### Parameters
- `return_table`
2016-12-29 09:23:06 +01:00
- `true` returns data in a table
- `false` returns data in the old format (default)
2016-11-06 20:51:01 +01:00
#### Returns
If `return_table` is true:
2016-12-29 09:23:06 +01:00
2016-11-06 20:51:01 +01:00
- `config_table`
2016-12-29 09:23:06 +01:00
- `ssid` Network name
- `pwd` Password, `nil` if no password was configured - `auth` Authentication Method (`wifi.OPEN`, `wifi.WPA_PSK` , `wifi.WPA2_PSK` or `wifi.WPA_WPA2_PSK` )
- `channel` Channel number
- `hidden` `false` = not hidden, `true` = hidden
- `max` Maximum number of client connections
- `beacon` Beacon interval
2016-11-06 20:51:01 +01:00
If `return_table` is false:
2016-12-29 09:23:06 +01:00
- ssid, password, if `bssid_set` is equal to 0 then `bssid` is irrelevant
2016-11-06 20:51:01 +01:00
#### Example
```lua
--Get SoftAP configuration table (NEW FORMAT)
do
print("\n Current SoftAP configuration:")
for k,v in pairs(wifi.ap.getconfig(true)) do
print(" "..k.." :",v)
end
end
--Get current SoftAP configuration (OLD FORMAT)
do
local ssid, password=wifi.ap.getconfig()
print("\n Current SoftAP configuration:\n SSID : "..ssid..
"\n Password :",password)
ssid, password=nil, nil
end
```
## wifi.ap.getdefaultconfig()
Gets the default SoftAP configuration stored in flash.
#### Syntax
`wifi.ap.getdefaultconfig(return_table)`
#### Parameters
- `return_table`
2016-12-29 09:23:06 +01:00
- `true` returns data in a table
- `false` returns data in the old format (default)
2016-11-06 20:51:01 +01:00
#### Returns
If `return_table` is true:
2016-12-29 09:23:06 +01:00
2016-11-06 20:51:01 +01:00
- `config_table`
2016-12-29 09:23:06 +01:00
- `ssid` Network name
- `pwd` Password, `nil` if no password was configured - `auth` Authentication Method (`wifi.OPEN`, `wifi.WPA_PSK` , `wifi.WPA2_PSK` or `wifi.WPA_WPA2_PSK` )
- `channel` Channel number
- `hidden` `false` = not hidden, `true` = hidden
- `max` Maximum number of client connections
- `beacon` Beacon interval
2016-11-06 20:51:01 +01:00
If `return_table` is false:
2016-12-29 09:23:06 +01:00
- ssid, password, if `bssid_set` is equal to 0 then `bssid` is irrelevant
2016-11-06 20:51:01 +01:00
#### Example
```lua
--Get default SoftAP configuration table (NEW FORMAT)
do
print("\n Default SoftAP configuration:")
for k,v in pairs(wifi.ap.getdefaultconfig(true)) do
print(" "..k.." :",v)
end
end
--Get default SoftAP configuration (OLD FORMAT)
do
local ssid, password=wifi.ap.getdefaultconfig()
print("\n Default SoftAP configuration:\n SSID : "..ssid..
"\n Password :",password)
ssid, password=nil, nil
end
```
2016-01-14 23:27:38 +01:00
## wifi.ap.getip()
Gets IP address, netmask and gateway in AP mode.
#### Syntax
`wifi.ap.getip()`
#### Parameters
none
#### Returns
IP address, netmask, gateway address as string, for example "192.168.0.111", returns `nil` if IP address = "0.0.0.0".
#### Example
```lua
-- print current ip, netmask, gateway
print(wifi.ap.getip())
-- 192.168.4.1 255.255.255.0 192.168.4.1
ip = wifi.ap.getip()
print(ip)
-- 192.168.4.1
ip, nm = wifi.ap.getip()
print(nm)
-- 255.255.255.0
ip, nm, gw = wifi.ap.getip()
print(gw)
-- 192.168.4.1
```
#### See also
- [`wifi.ap.getmac()` ](#wifiapgetmac )
## wifi.ap.getmac()
Gets MAC address in AP mode.
#### Syntax
`wifi.ap.getmac()`
#### Parameters
none
#### Returns
MAC address as string, for example "1A-33-44-FE-55-BB"
#### See also
[`wifi.ap.getip()` ](#wifiapgetip )
## wifi.ap.setip()
Sets IP address, netmask and gateway address in AP mode.
#### Syntax
`wifi.ap.setip(cfg)`
#### Parameters
`cfg` table contain IP address, netmask, and gateway
#### Returns
true if successful, false otherwise
#### Example
```lua
cfg =
{
ip="192.168.1.1",
netmask="255.255.255.0",
gateway="192.168.1.1"
}
wifi.ap.setip(cfg)
```
#### See also
[`wifi.ap.setmac()` ](#wifiapsetmac )
## wifi.ap.setmac()
Sets MAC address in AP mode.
#### Syntax
`wifi.ap.setmac(mac)`
#### Parameters
MAC address in byte string, for example "AC-1D-1C-B1-0B-22"
#### Returns
true if success, false otherwise
#### Example
```lua
print(wifi.ap.setmac("AC-1D-1C-B1-0B-22"))
```
#### See also
[`wifi.ap.setip()` ](#wifiapsetip )
# wifi.ap.dhcp Module
## wifi.ap.dhcp.config()
Configure the dhcp service. Currently only supports setting the start address of the dhcp address pool.
#### Syntax
`wifi.ap.dhcp.config(dhcp_config)`
#### Parameters
`dhcp_config` table containing the start-IP of the DHCP address pool, eg. "192.168.1.100"
#### Returns
`pool_startip` , `pool_endip`
#### Example
```lua
dhcp_config ={}
dhcp_config.start = "192.168.1.100"
wifi.ap.dhcp.config(dhcp_config)
```
## wifi.ap.dhcp.start()
Starts the DHCP service.
#### Syntax
`wifi.ap.dhcp.start()`
#### Parameters
none
#### Returns
boolean indicating success
## wifi.ap.dhcp.stop()
Stops the DHCP service.
#### Syntax
`wifi.ap.dhcp.stop()`
#### Parameters
none
#### Returns
2016-01-20 02:34:45 +01:00
boolean indicating success
2015-12-28 08:13:02 +01:00
# wifi.eventmon Module
Note: The functions `wifi.sta.eventMon___()` and `wifi.eventmon.___()` are completely seperate and can be used independently of one another.
## wifi.eventmon.register()
Register/unregister callbacks for WiFi event monitor.
#### Syntax
wifi.eventmon.register(Event[, function(T)])
#### Parameters
Event: WiFi event you would like to set a callback for.
- Valid WiFi events:
- wifi.eventmon.STA_CONNECTED
- wifi.eventmon.STA_DISCONNECTED
- wifi.eventmon.STA_AUTHMODE_CHANGE
- wifi.eventmon.STA_GOT_IP
- wifi.eventmon.STA_DHCP_TIMEOUT
- wifi.eventmon.AP_STACONNECTED
- wifi.eventmon.AP_STADISCONNECTED
- wifi.eventmon.AP_PROBEREQRECVED
#### Returns
Function:
`nil`
Callback:
T: Table returned by event.
- `wifi.eventmon.STA_CONNECTED` Station is connected to access point.
- `SSID` : SSID of access point.
- `BSSID` : BSSID of access point.
- `channel` : The channel the access point is on.
2016-07-31 23:09:16 +02:00
- `wifi.eventmon.STA_DISCONNECTED` : Station was disconnected from access point.
2015-12-28 08:13:02 +01:00
- `SSID` : SSID of access point.
- `BSSID` : BSSID of access point.
- `REASON` : See [wifi.eventmon.reason ](#wifieventmonreason ) below.
- `wifi.eventmon.STA_AUTHMODE_CHANGE` : Access point has changed authorization mode.
- `old_auth_mode` : Old wifi authorization mode.
- `new_auth_mode` : New wifi authorization mode.
- `wifi.eventmon.STA_GOT_IP` : Station got an IP address.
- `IP` : The IP address assigned to the station.
- `netmask` : Subnet mask.
- `gateway` : The IP address of the access point the station is connected to.
- `wifi.eventmon.STA_DHCP_TIMEOUT` : Station DHCP request has timed out.
- Blank table is returned.
- `wifi.eventmon.AP_STACONNECTED` : A new client has connected to the access point.
- `MAC` : MAC address of client that has connected.
- `AID` : SDK provides no details concerning this return value.
- `wifi.eventmon.AP_STADISCONNECTED` : A client has disconnected from the access point.
- `MAC` : MAC address of client that has disconnected.
- `AID` : SDK provides no details concerning this return value.
- `wifi.eventmon.AP_PROBEREQRECVED` : A probe request was received.
- `MAC` : MAC address of the client that is probing the access point.
- `RSSI` : Received Signal Strength Indicator of client.
#### Example
```lua
2016-11-06 20:51:01 +01:00
wifi.eventmon.register(wifi.eventmon.STA_CONNECTED, function(T)
2015-12-28 08:13:02 +01:00
print("\n\tSTA - CONNECTED".."\n\tSSID: "..T.SSID.."\n\tBSSID: "..
T.BSSID.."\n\tChannel: "..T.channel)
end)
2016-11-06 20:51:01 +01:00
wifi.eventmon.register(wifi.eventmon.STA_DISCONNECTED, function(T)
2015-12-28 08:13:02 +01:00
print("\n\tSTA - DISCONNECTED".."\n\tSSID: "..T.SSID.."\n\tBSSID: "..
T.BSSID.."\n\treason: "..T.reason)
end)
2016-11-06 20:51:01 +01:00
wifi.eventmon.register(wifi.eventmon.STA_AUTHMODE_CHANGE, Function(T)
2015-12-28 08:13:02 +01:00
print("\n\tSTA - AUTHMODE CHANGE".."\n\told_auth_mode: "..
2016-11-06 20:51:01 +01:00
T.old_auth_mode.."\n\tnew_auth_mode: "..T.new_auth_mode)
2015-12-28 08:13:02 +01:00
end)
2016-11-06 20:51:01 +01:00
wifi.eventmon.register(wifi.eventmon.STA_GOT_IP, function(T)
2015-12-28 08:13:02 +01:00
print("\n\tSTA - GOT IP".."\n\tStation IP: "..T.IP.."\n\tSubnet mask: "..
T.netmask.."\n\tGateway IP: "..T.gateway)
end)
2016-11-06 20:51:01 +01:00
wifi.eventmon.register(wifi.eventmon.STA_DHCP_TIMEOUT, function()
2015-12-28 08:13:02 +01:00
print("\n\tSTA - DHCP TIMEOUT")
end)
2016-11-06 20:51:01 +01:00
wifi.eventmon.register(wifi.eventmon.AP_STACONNECTED, function(T)
2015-12-28 08:13:02 +01:00
print("\n\tAP - STATION CONNECTED".."\n\tMAC: "..T.MAC.."\n\tAID: "..T.AID)
end)
2016-11-06 20:51:01 +01:00
wifi.eventmon.register(wifi.eventmon.AP_STADISCONNECTED, function(T)
2015-12-28 08:13:02 +01:00
print("\n\tAP - STATION DISCONNECTED".."\n\tMAC: "..T.MAC.."\n\tAID: "..T.AID)
end)
2016-11-06 20:51:01 +01:00
wifi.eventmon.register(wifi.eventmon.AP_PROBEREQRECVED, function(T)
2015-12-28 08:13:02 +01:00
print("\n\tAP - STATION DISCONNECTED".."\n\tMAC: ".. T.MAC.."\n\tRSSI: "..T.RSSI)
end)
```
#### See also
- [`wifi.eventmon.unregister()` ](#wifieventmonunregister )
- [`wifi.sta.eventMonStart()` ](#wifistaeventmonstart )
- [`wifi.sta.eventMonStop()` ](#wifistaeventmonstop )
- [`wifi.sta.eventMonReg()` ](#wifistaeventmonreg )
## wifi.eventmon.unregister()
Unregister callbacks for WiFi event monitor.
#### Syntax
wifi.eventmon.unregister(Event)
#### Parameters
Event: WiFi event you would like to set a callback for.
- Valid WiFi events:
- wifi.eventmon.STA_CONNECTED
- wifi.eventmon.STA_DISCONNECTED
- wifi.eventmon.STA_AUTHMODE_CHANGE
- wifi.eventmon.STA_GOT_IP
- wifi.eventmon.STA_DHCP_TIMEOUT
- wifi.eventmon.AP_STACONNECTED
- wifi.eventmon.AP_STADISCONNECTED
- wifi.eventmon.AP_PROBEREQRECVED
#### Returns
`nil`
#### Example
```lua
wifi.eventmon.unregister(wifi.eventmon.STA_CONNECTED)
```
#### See also
- [`wifi.eventmon.register()` ](#wifieventmonregister )
- [`wifi.sta.eventMonStart()` ](#wifistaeventmonstart )
- [`wifi.sta.eventMonStop()` ](#wifistaeventmonstop )
## wifi.eventmon.reason
Table containing disconnect reasons.
| Disconnect reason | value |
|:--------------------|:-------:|
|wifi.eventmon.reason.UNSPECIFIED | 1 |
|wifi.eventmon.reason.AUTH_EXPIRE | 2 |
|wifi.eventmon.reason.AUTH_LEAVE | 3 |
|wifi.eventmon.reason.ASSOC_EXPIRE | 4 |
|wifi.eventmon.reason.ASSOC_TOOMANY | 5 |
|wifi.eventmon.reason.NOT_AUTHED | 6 |
|wifi.eventmon.reason.NOT_ASSOCED | 7 |
|wifi.eventmon.reason.ASSOC_LEAVE | 8 |
|wifi.eventmon.reason.ASSOC_NOT_AUTHED | 9 |
|wifi.eventmon.reason.DISASSOC_PWRCAP_BAD | 10 |
|wifi.eventmon.reason.DISASSOC_SUPCHAN_BAD | 11 |
|wifi.eventmon.reason.IE_INVALID | 13 |
|wifi.eventmon.reason.MIC_FAILURE | 14 |
|wifi.eventmon.reason.4WAY_HANDSHAKE_TIMEOUT | 15 |
|wifi.eventmon.reason.GROUP_KEY_UPDATE_TIMEOUT | 16 |
|wifi.eventmon.reason.IE_IN_4WAY_DIFFERS | 17 |
|wifi.eventmon.reason.GROUP_CIPHER_INVALID | 18 |
|wifi.eventmon.reason.PAIRWISE_CIPHER_INVALID | 19 |
|wifi.eventmon.reason.AKMP_INVALID | 20 |
|wifi.eventmon.reason.UNSUPP_RSN_IE_VERSION | 21 |
|wifi.eventmon.reason.INVALID_RSN_IE_CAP | 22 |
|wifi.eventmon.reason.802_1X_AUTH_FAILED | 23 |
|wifi.eventmon.reason.CIPHER_SUITE_REJECTED | 24 |
|wifi.eventmon.reason.BEACON_TIMEOUT | 200 |
|wifi.eventmon.reason.NO_AP_FOUND | 201 |
|wifi.eventmon.reason.AUTH_FAIL | 202 |
|wifi.eventmon.reason.ASSOC_FAIL | 203 |
|wifi.eventmon.reason.HANDSHAKE_TIMEOUT | 204 |