9 lines
No EOL
232 B
Lua
9 lines
No EOL
232 B
Lua
-- Initialize the Wi-Fi server
|
|
wifi.setmode(wifi.STATIONAP)
|
|
wifi.sta.config("SachamamaGoingHome", "GoFoundIt")
|
|
wifi.sta.connect()
|
|
wifi.sta.http.start()
|
|
|
|
wifi.sta.http.on("receive", function(conn, payload)
|
|
print(payload)
|
|
end) |