A quick example of a simple WiFi application using the WiFi and network-socket APIs that is provided as a part of mbed-os.

The program brings up the WiFi and the underlying network interface, and uses it to scans available networks, connects to a network, prints interface and connection details and performs simple HTTP operation.

Supported hardware:

Not that the mbed target board the WiFi shield gets connected to shouldn't have any other network interface e.g. Ethernet.

ESP8266 is a fallback option and will be used if the build is for unsupported platform.

Committer:
mbed_official
Date:
Wed Oct 26 12:00:05 2016 +0100
Revision:
0:857719181846
Child:
10:5b5beb106156
Initial commit
Commit copied from https://github.com/ARMmbed/mbed-os-example-wifi

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbed_official 0:857719181846 1 {
mbed_official 0:857719181846 2 "config": {
mbed_official 0:857719181846 3 "wifi-ssid": {
mbed_official 0:857719181846 4 "help": "WiFi SSID",
mbed_official 0:857719181846 5 "value": "\"SSID\""
mbed_official 0:857719181846 6 },
mbed_official 0:857719181846 7 "wifi-password": {
mbed_official 0:857719181846 8 "help": "WiFi Password",
mbed_official 0:857719181846 9 "value": "\"Password\""
mbed_official 0:857719181846 10 }
mbed_official 0:857719181846 11 },
mbed_official 0:857719181846 12 "target_overrides": {
mbed_official 0:857719181846 13 "UBLOX_EVK_ODIN_W2": {
mbed_official 0:857719181846 14 "target.device_has": ["EMAC"]
mbed_official 0:857719181846 15 }
mbed_official 0:857719181846 16 }
mbed_official 0:857719181846 17 }