Sigh. Yes:
while (!Serial)
delay(10); // will pause Zero, Leonardo, etc until serial console opens
Change to
while (!Serial && millis() < 10000)
delay(10); // will pause Zero, Leonardo, etc until serial console opens
will only wait...
I had a feeling it was something like that..... No surprise, that fixed it. You should know that you are appreciated. The world is a better place because you are here. Thank you for reading through my code to help me.
Hello,
I'm reading data from an accelerometer (Adafruit_LSM6DSOX) connected to a Teensy 4.0. I am then transmitting this data to windows under RawHID. This works. I have the Arduino IDE up, and the data is getting transmitted well. I verified...