A weather station that uses GPS and WiFi to get the weather where you are. Almost better than actually going outside!

Dependencies:   4DGL-uLCD-SE ESP8266NodeMCUInterface GPS MbedJSONValue mbed-rtos mbed-src

connect.lua

Committer:
krbng4180
Date:
2016-03-14
Revision:
1:fc07d1430053
Parent:
0:c4da54879553

File content as of revision 1:fc07d1430053:

LUA(
    wifi.setmode(wifi.STATION);
    wifi.sta.config("%s", "%s");
    wifi.sta.connect();
    while wifi.sta.status() ~= 5 do end;
    print(wifi.sta.status());
)