Hi, I’d like to communicate an ESP-32 with a CyberPI.
It says in the documentation that the Cyperpi’s LAN Broadcast is managed with ESP-NOW:
“LAN commnunication between CyberPis is implemented based on the ESP-NOW protocol pf ESP32”
(https://education.makeblock.com/help/faqs-on-product-specifications/)
But ESP-NOW requires the message structure to be able to send a message to the Cyberpi.
My question is: what is the ESP NOW message structure for Cyberpi?
Because I don’t think it’s a good one:
typedef struct struct_message {
char a[32];
int b;
float c;
string d;
bool e;
} struct_message;
Yours faithfully
Illyes