Kris Kasprzak
Kris Kasprzak
I downloaded and installed this lib but get C:\Users\ADMINI~1\AppData\Local\Temp\arduino_build_957164\sketch\main.cpp:2:25: fatal error: teensystep4.h: No such file or directory compilation terminated. Error compiling for board Teensy 4.0. Any help appreciated. After reinstall...
silly me... 1. sketch: 01_basic.ino 2. install path: C:\Program Files (x86)\Arduino\hardware\teensy\avr\libraries\TeensyStep4-main\examples\01_basic 3. Win10 4. IDE Arduino 1.8.13 5. Teensy loader 1.57 I have no extra compilers, add-on, I run basic...
You logic is about the only way to know if a message was received. On Thursday, March 31, 2022, 09:44:29 AM CDT, Yousefff1 ***@***.***> wrote: Hi @KrisKasprzak, Is there any...
without any code or wiring, I have no idea. On 5v0 units (like those arduinos), a pullup between the modules on aux and tx may be help. Thanks, Kris ***@***.***...
Try sending and receiving the data directly with serial commands for the receiver: ESerial.readBytes((uint8_t*)& MyData, (uint8_t) sizeof(MyData)); for the transmitter ESerial.write((uint8_t*) &MyData, (uint8_t) sizeof(MyData));
The default settings can be found on the data sheet. Thanks. Kris Kasprzak > On Nov 4, 2022, at 6:42 PM, Yousefff1 ***@***.***> wrote: > > > Hi Kris,...
There is no way to know automatically. Doing this manually would require sending a confirmation back after receiving a message. This is not technically difficult, on the transmitter side, once...
If you increase the USB baud rate and air data rate, you will get faster data rates. I'm not sure how much data you want to transmit. More importantly, I'm...
As you probably found the argument for CompleteTask is a timeout to prevent an infinite loop. The time for aux pin to return high should be 2 ms according to...
I thought I responded--I do this all the time Have all devices in "listen mode" meaning in a loop keep looking for incoming data, in that loop, send when needed,...