Skip to content

Instantly share code, notes, and snippets.

View kv2000in's full-sized avatar

kv2000in

View GitHub Profile
@kv2000in
kv2000in / init.lua
Last active December 26, 2016 20:16 — forked from creationix/init.lua
Websocket server in nodemcu using new crypto module.
wifi.setmode(wifi.STATION)
wifi.sta.config("myssid","mypwd")
wifi.sta.connect()
tmr.alarm(0, 1000, 1, function ()
local ip = wifi.sta.getip()
if ip then
tmr.stop(0)
print(ip)
dofile("websocket.lc")
dofile("main.lc")