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:
- UBLOX Odin board built-in WiFi module
- REALTEK_RTL8195AM built-in WiFi module
- NUCLEO_F401RE with X-NUCLEO-IDW01M1 WiFi expansion board using pins D8 D2
- NUCLEO_F429ZI with ESP8266-01 module using pins D1 D0
- NUCLEO_L476RG with ESP8266-01 module using pins D8 D2
- Other mbed targets with ESP8266 module or X-NUCLEO-IDW01M1 expansion board
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.
mbed_app.json@65:c6833441fd15, 2018-06-06 (annotated)
- Committer:
- mbed_official
- Date:
- Wed Jun 06 11:00:04 2018 +0100
- Revision:
- 65:c6833441fd15
- Parent:
- 63:99e063d738ee
- Child:
- 71:a0fbcc153b55
Updating ISM43362 driver
.
Commit copied from https://github.com/ARMmbed/mbed-os-example-wifi
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
mbed_official | 0:857719181846 | 1 | { |
mbed_official | 0:857719181846 | 2 | "config": { |
mbed_official | 63:99e063d738ee | 3 | "wifi-shield": { |
mbed_official | 63:99e063d738ee | 4 | "help": "Options are internal, WIFI_ESP8266, WIFI_ISM43362, WIFI_IDW0XX1", |
mbed_official | 43:45429aa163a0 | 5 | "value": "internal" |
mbed_official | 63:99e063d738ee | 6 | }, |
mbed_official | 0:857719181846 | 7 | "wifi-ssid": { |
mbed_official | 0:857719181846 | 8 | "help": "WiFi SSID", |
mbed_official | 0:857719181846 | 9 | "value": "\"SSID\"" |
mbed_official | 0:857719181846 | 10 | }, |
mbed_official | 0:857719181846 | 11 | "wifi-password": { |
mbed_official | 0:857719181846 | 12 | "help": "WiFi Password", |
mbed_official | 10:5b5beb106156 | 13 | "value": "\"PASSWORD\"" |
mbed_official | 10:5b5beb106156 | 14 | }, |
mbed_official | 10:5b5beb106156 | 15 | "wifi-tx": { |
mbed_official | 10:5b5beb106156 | 16 | "help": "TX pin for serial connection to external device", |
mbed_official | 10:5b5beb106156 | 17 | "value": "D1" |
mbed_official | 10:5b5beb106156 | 18 | }, |
mbed_official | 10:5b5beb106156 | 19 | "wifi-rx": { |
mbed_official | 10:5b5beb106156 | 20 | "help": "RX pin for serial connection to external device", |
mbed_official | 10:5b5beb106156 | 21 | "value": "D0" |
mbed_official | 0:857719181846 | 22 | } |
mbed_official | 0:857719181846 | 23 | }, |
mbed_official | 0:857719181846 | 24 | "target_overrides": { |
mbed_official | 35:052c1ba06ce7 | 25 | "*": { |
mbed_official | 35:052c1ba06ce7 | 26 | "platform.stdio-convert-newlines": true |
mbed_official | 35:052c1ba06ce7 | 27 | }, |
mbed_official | 0:857719181846 | 28 | "UBLOX_EVK_ODIN_W2": { |
mbed_official | 0:857719181846 | 29 | "target.device_has": ["EMAC"] |
mbed_official | 10:5b5beb106156 | 30 | }, |
mbed_official | 63:99e063d738ee | 31 | "DISCO_F413ZH": { |
mbed_official | 65:c6833441fd15 | 32 | "wifi-shield": "WIFI_ISM43362" |
mbed_official | 63:99e063d738ee | 33 | }, |
mbed_official | 63:99e063d738ee | 34 | "DISCO_L475VG_IOT01A": { |
mbed_official | 65:c6833441fd15 | 35 | "wifi-shield": "WIFI_ISM43362" |
mbed_official | 63:99e063d738ee | 36 | }, |
mbed_official | 10:5b5beb106156 | 37 | "NUCLEO_L476RG": { |
mbed_official | 10:5b5beb106156 | 38 | "wifi-tx": "D8", |
mbed_official | 10:5b5beb106156 | 39 | "wifi-rx": "D2" |
mbed_official | 32:bca3f5f442b3 | 40 | }, |
mbed_official | 32:bca3f5f442b3 | 41 | "NUCLEO_F401RE": { |
mbed_official | 32:bca3f5f442b3 | 42 | "wifi-tx": "D8", |
mbed_official | 32:bca3f5f442b3 | 43 | "wifi-rx": "D2" |
mbed_official | 0:857719181846 | 44 | } |
mbed_official | 0:857719181846 | 45 | } |
mbed_official | 0:857719181846 | 46 | } |