Arduino-ESP8266 从连接到 esp8266 AP 的客户端浏览器发送 URL 并在 arduino 板中接收输入的 URL

Arduino-ESP8266 Sending URL from a client browser connected to the esp8266 AP and receiving the entered URL in the arduino board

我正在做一个项目,我在其中耦合了 arduino uno 板和 ESP8266 模块。如果我连接到 ESP8266 01 AP,我想从我的浏览器发送一个 URL。例如,是否可以从浏览器发送 "www.xyz.com" 并且它应该在 ESP8266 模块接收并且请求应该转储到 arduino 板。

是的,这可以通过将 ESP 设为强制门户来实现,特别是因为您已将 ESP 设置为访问点。 Arduino 的 esp wifi 库中有一个示例。查看 https://github.com/esp8266/Arduino and the examples. In addition, there is a nice WifiManager lib that goes further with a demo of a captive portal at https://github.com/tzapu/WiFiManager HTH