Updated Hardware API (markdown)

master
Daniel Campora 2015-09-26 19:01:51 +02:00
rodzic 1d1f95a923
commit f31a19fe93
1 zmienionych plików z 1 dodań i 1 usunięć

@ -348,7 +348,7 @@ Methods:
- `wlan.scan()` perform a network scan and return a named tuple of the form:
`(ssid, bssid, auth, channel, rssi)`
- `wlan.mac([mac])` get or set the MAC address. The MAC address is a `bytes` object of length 6.
- `wlan.connect(ssid, *, auth=None, key=None, timeout=None)` Connect to the network specified by the SSID using the given authentication and keys.
- `wlan.connect(ssid, *, bssid, auth=None, timeout=None)` Connect to the network specified by the SSID (and optionally the BSSID) using the given authentication.
- `wlan.disconnect()` Closes the current connection. NOHEAP
- `wlan.isconnected()` returns `True` if connected and IP address has been assigned. NOHEAP
- `wlan.ifconfig(id=0, config=[(ip, netmask, gateway, dns) or 'dhcp'])` get or set the IP configuration. The `id` is the interface id, and defaults to zero. In the case of `AP+STA` mode, the NIC effectively has 2 interfaces that can be configured independently using `id=0` for the AP and `id=1` for the STA. Alternatively, a port can choose to use string names for the `id`, e.g. `id='STA'` and `id='AP'`.