ESP NOW for 8266
I learned ESP-NOW from It's fast, using 802.11 Mac with proprietary protocol... As usual, chinese chipset vendor does not make the document very well, It took me a while to understand how it's organized. Especially on the master and slave relation in espnow. https://docs.espressif.com/projects/esp-idf/en/latest/api-reference/network/esp_now.html This video explain very well, only a little long... The trick is that, the sensors side is master, the gateway side is slave. It's a little bit like bluetooth IOT...where sensor is master... 2nd thing, the arduino lib is for esp32, when you choose your board to esp32,there will be examples for it, but if you select board to 8266, there is no examples of espnow. But you do find some one has espnow on esp8266.... https://github.com/HarringayMakerSpace/ESP-Now He made a very interesting sensor on web: http://s3.eu-west-2.amazonaws.com/torntrousers/espnow-test1.html I have esp-now example under ESP32, but if I choose...