Skip to content
This repository was archived by the owner on Apr 24, 2019. It is now read-only.

Commit 6e9bee2

Browse files
committed
Updated WiFi documentation
1 parent 6ffa583 commit 6e9bee2

File tree

1 file changed

+14
-12
lines changed

1 file changed

+14
-12
lines changed

README.md

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -122,30 +122,32 @@ TBD
122122

123123
### Wi-Fi settings
124124

125-
The example application uses ESP8266 WiFi Interface for managing the wireless connectivity. To run this application using WiFi, you need to:
125+
The example application uses ESP8266 WiFi Interface for managing the wireless connectivity. To run this application using WiFi, you need:
126126

127-
1. Have [ESP8266](https://en.wikipedia.org/wiki/ESP8266) WiFi module running [Espressif Firmware](https://codeload.github.com/espressif/ESP8266_AT/zip/master)
128-
1. Mount WiFi module onto [K64F Grove Shield v2](https://developer.mbed.org/platforms/FRDM-K64F/#supported-seeed-studio-grove-extension)
127+
1. An [ESP8266](https://en.wikipedia.org/wiki/ESP8266) WiFi module
128+
1. Updated [Espressif Firmware](https://developer.mbed.org/teams/ESP8266/wiki/Firmware-Update)
129+
1. Mount the WiFi module onto [K64F Grove Shield v2](https://developer.mbed.org/platforms/FRDM-K64F/#supported-seeed-studio-grove-extension)
129130
1. Attach the shield on the K64F board.
130131
1. In the `mbed_app.json` file, change
131-
```
132-
"network-interface":{
133-
"help": "options are ETHERNET,WIFI,MESH_LOWPAN_ND,MESH_THREAD.",
134-
"value": "WIFI"
135-
},
132+
```
133+
"network-interface": {
134+
"help": "options are ETHERNET,WIFI,MESH_LOWPAN_ND,MESH_THREAD.",
135+
"value": "WIFI"
136+
},
136137
```
137138

138139
1. Provide your WiFi SSID and password here, remember to leave `\"` in the beginning and end of your SSID and password(as shown in the example below), else example will not be able to pick up the SSID and password in correct format.
139-
```
140-
"wifi-ssid": {
141-
"help": "WiFi SSID",
140+
```
141+
"wifi-ssid": {
142+
"help": "WiFi SSID",
142143
"value": "\"SSID\""
143144
},
144145
"wifi-password": {
145146
"help": "WiFi Password",
146147
"value": "\"Password\""
147148
}
148-
```
149+
}
150+
```
149151

150152
### IP address setup
151153

0 commit comments

Comments
 (0)