Any info in this course regarding the ESP-NOW protocol?
——–
Here’s how to use ESP-NOW with the ESP32:
UPDATE: We’ve published some tutorials about ESP-NOW:
- Getting Started with ESP-NOW (ESP32 with Arduino IDE)
- ESP-NOW Two-Way Communication Between ESP32 Boards
- ESP-NOW with ESP8266 – Getting Started
Hi Steven.
I haven’t experimented with the NOW protocol yet.
Were you successful with the tips from DK?
Regards,
Sara
Hi
Its one of the projects I am working on. Best sources
youtube.com/watch?v=lj-vIBPEI2E
youtube.com/watch?v=6NsBN42B80Q
instructables.com/id/ESP-NOW-WiFi-With-3x-More-Range/
#include <esp_now.h>
#include <WiFi.h>
Hope it helps
Hi .. with NOW I need to know how once it makes a connection to keep sending data without having to disconnect each time. The example shows it sending 1,2,3… but it makes a connection each time.
Hi, These are the projects, that I am using … work fine for me ..
Try a version of this…
while(1) // stay on { getdata(data to be sent); if(data to be sent != NULL) { esp_now_send( date to be sent); data to be sent = NULL or ""; } }
Here is the Protocol:
docs.espressif.com/projects/esp-idf/en/latest/api-reference/network/esp_now.html