You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
Thanks for this library.
I want to send a byte array of 42 members in it. without using struct how can I send and receive the byte array? I am trying to simultaneously send & receive to & from 3 E32 device units(half duplex). Is it possible? If possible then how? Can you guide me? Please I will be obliged for your help.
The text was updated successfully, but these errors were encountered:
I've tried many methods in sending data w/o a struct and all methods ended up being unreliable. Not sure why you can't use a struct but I've found it to be the most reliable and easy to implement.
void loop() {
// here you send or listen to the EBYTE serial port
Serial.println(Kris.data[0]);
}
Regarding sending / receive multiple, it's not clear what you are trying to do. 1) send 1 to many 2) send many to one 3) other. I have a system where one sends to many, but I'm not sure if many can send to one.
Hello,
Thanks for this library.
I want to send a byte array of 42 members in it. without using struct how can I send and receive the byte array? I am trying to simultaneously send & receive to & from 3 E32 device units(half duplex). Is it possible? If possible then how? Can you guide me? Please I will be obliged for your help.
The text was updated successfully, but these errors were encountered: