Skip to content

this project explores the ESPNOW protocol over ESP-IDF platform. One ESP32 device acts as a sender while the other acts as a receiver.An acknowledgement is also sent back once data is received.

License

Notifications You must be signed in to change notification settings

AvinasheeTech/ESPNOW

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

ESPNOW

this project explores the ESPNOW protocol over ESP-IDF platform. One ESP32 device acts as a sender while the other acts as a receiver.An acknowledgement is also sent back once data is received.
Change the receiver and sender MAC address in both the provided code as per your available devices before burning the firmware.
uint8_t receiver_MAC[] = {0x3c,0x61,0x05,0x30,0x81,0x21}; uint8_t sender_MAC[] = {0x3c,0x61,0x05,0x30,0xd8,0xf5};

change sending data buffer in ESPNOW_sender.c as per your choice and play with the code!!!!!

/dummy data to be sent/ uint8_t sending_data[] = {

0xEF,0x02,0x03,0x04,0x05,0x06,0x07,0x08,0x09,0x0A,0x0B,0x0C,0x0D,0x0E,0x0F,0x10, 0x01,0x02,0x03,0x04,0x05,0x06,0x07,0x08,0x09,0x0A,0x0B,0x0C,0x0D,0x0E,0x0F,0x10, 0x01,0x02,0x03,0x04,0x05,0x06,0x07,0x08,0x09,0x0A,0x0B,0x0C,0x0D,0x0E,0x0F,0x10, 0x01,0x02,0x03,0x04,0x05,0x06,0x07,0x08,0x09,0x0A,0x0B,0x0C,0x0D,0x0E,0x0F,0x10, 0x01,0x02,0x03,0x04,0x05,0x06,0x07,0x08,0x09,0x0A,0x0B,0x0C,0x0D,0x0E,0x0F,0x10, 0x01,0x02,0x03,0x04,0x05,0x06,0x07,0x08,0x09,0x0A,0x0B,0x0C,0x0D,0x0E,0x0F,0x10

};

About

this project explores the ESPNOW protocol over ESP-IDF platform. One ESP32 device acts as a sender while the other acts as a receiver.An acknowledgement is also sent back once data is received.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published