Search found 3 matches

by Rocket2022
Wed Jun 29, 2022 1:03 pm
Forum: ESP-IDF
Topic: ESPNow - receiving wrong data
Replies: 3
Views: 2254

Re: ESPNow - receiving wrong data

Hi boarchuz,

you are totaly right!

Thanks a lot!

BR
Marco
by Rocket2022
Mon Jun 27, 2022 7:40 pm
Forum: ESP-IDF
Topic: ESPNow - receiving wrong data
Replies: 3
Views: 2254

Re: ESPNow - receiving wrong data

Hello together, I figured out that I always receive too long data. Has someone a hint for me why the data is too long? void on_sending_data_received(const uint8_t *mac, const uint8_t *incomingData, int len) { memcpy(&_sending_data, incomingData, sizeof(_sending_data)); if (len < sizeof(_sending_data...
by Rocket2022
Sat Jun 25, 2022 6:38 am
Forum: ESP-IDF
Topic: ESPNow - receiving wrong data
Replies: 3
Views: 2254

ESPNow - receiving wrong data

Hi, I've created some code to send and receive simple data over ESPNow. The problem is that I've always receive 36 instead of 1 in the state value of my sending_data structure. For the ESPNow connection I've created following class: Can anybody help? #include "ESPConnection.h" static const char *TAG...