How do I program esp8266 over WIFI?

Як програмувати esp8266 через WIFI?

Існує декілька різних методів програмувати ESP8266 через WiFi. Найпростіший метод програмувати NodeMCU на базі модуля ESP8266, це перенаправити ввід/вивід консолі розробника, що за замовчуванням працює через UART, на власний мережевий-сервер контролера, котрий може бути піднято завдяки модулю net.

Див. документацію на модулі net. та node., а також приклади:

net.createServer()

node.output()

lua_examples/tcp2uart.lua

lua_examples/telnet

There are several different methods to program the ESP8266 over WiFi. The simplest way to program a NodeMCU based on the ESP8266 module is to redirect the I / O of the default UART developer console to the controller’s own network server, which can be created with the net module.

See documentation on the net module. and node., as well as examples:

net.createServer()

node.output()

lua_examples/tcp2uart.lua

lua_examples/telnet