ESP8266 多播 资料记录

Tardis Time (GPS Over UDP - Updated):

https://www.hackster.io/rayburne/tardis-time-esp8266-ap-webserver-gps-6b5d2a
用到了 DNS 和 UDP多播

https://processing.org/download/ UDP PC工具

https://github.com/esp8266/Arduino/blob/master/doc/esp8266wifi/udp-examples.rst
UDP例子
I find that UDP works very well and had one transmitter and multiple receivers running for over 18 months.
https://www.hackster.io/rayburne/tardis-time-esp8266-ap-webserver-gps-6b5d2a

Broadcast is not very reliable. Sending Unicast would be much better, but you would need to send once to each ESP.
This would be a good starting point. You would not need the reception part, just send duplicate the send.
https://github.com/esp8266/Arduino/blob … amples.rst

ESP8266–学习笔记(三)AP和UDP通信 —- GOOD
https://blog.csdn.net/qq_28877125/article/details/62448119

文档:
ESP8266WiFi library的介绍
https://github.com/esp8266/Arduino/blob/master/doc/esp8266wifi/readme.rst#quick-start
UDP的介绍
https://github.com/esp8266/Arduino/blob/master/doc/esp8266wifi/udp-examples.rst

猜你喜欢

转载自blog.csdn.net/wowocpp/article/details/81151134