I am trying to send a serial command using my Arduino, but I can't find out how to replicate the Enter
key. I've tried \r\n
as well as \n
and neither of those seem to do it.
I've tried the Arduino functions Serial.write()
Serial.print()
Serial.println()
and none of those work either.
What can I use to replicate the Enter
key?
Thank you