Succsess: Adafruit Feather M0 Express + Ethernet FeatherWing #77
NickLplus
started this conversation in
Show and tell
Replies: 1 comment 2 replies
-
don't you think it is off-topic here? you can leave Serial.prints as they are. if USB is not connected they just don't do anything. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Basic OTE example works, with serial port disconnected it was necessary to modify
while (!Serial );
I did it this way:
inserting
if (SerialAvailable)
before each (block of) prints to serial.
If there is a lot of debug prints, a function may be more handy.
Beta Was this translation helpful? Give feedback.
All reactions