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

Commit b7d41c4

Browse files
committed
Update README with WiFi settings
Updated README instructions with setting up WiFi
1 parent 3392449 commit b7d41c4

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

README.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,22 @@ TBD
103103

104104
### Wi-Fi settings
105105

106-
TBD
106+
The example application uses ESP8266 WiFi Interface for managing Wireless connectivity. For running this application using WiFi you need:
107+
108+
1. [ESP8266](https://en.wikipedia.org/wiki/ESP8266) WiFi module running [Espressif Firmware](https://codeload.github.com/espressif/ESP8266_AT/zip/master)
109+
1. Mount WiFi module onto [K64F Grove Shield v2](https://developer.mbed.org/platforms/FRDM-K64F/#supported-seeed-studio-grove-extension)
110+
1. Attach shield onto K64F board.
111+
1. In `main.cpp` , change
112+
```
113+
#undef ETHERNET
114+
#define WIFI
115+
#undef CELLULAR
116+
#undef MESH_LOWPAN_ND
117+
#undef MESH_THREAD
118+
```
119+
1. In `main.cpp`, remove `#error "Remember to provide your WiFi credentials and provide in esp.connect("ssid","password");"`
120+
1. In next line `esp.connect("ssid", "password");` , replace `ssid` and `password` with your WiFi SSID and WiFi password respectively.
121+
107122

108123
### IP address setup
109124

0 commit comments

Comments
 (0)