Paso 4: Web Server - ejecutar por primera vez
Guarde el código en el ESP como 'web_temp.lua', reiniciar ESP y ejecute:
=wifi.sta.getip() -- find the IP Address where your Web Server will be dofile("web_temp.lua") -- Start the Web Server
Se supone que has hecho ya tu configuración WIFI del módulo de ESP8266. Si no es así, forst ejecutar:
-- One time ESP Setup -- wifi.setmode(wifi.STATION) wifi.sta.config ( "WIFI_SSID" , "PASSWORD" ) print(wifi.sta.getip())
Abre tu navegador Web favorito y escriba su nueva dirección IP del servidor Web. Si todo OK, debería verse algo así como en la imagen adjunta.