How can I print to the serial monitor a string or just single character followed by a variable like "L 55"
Serial.print
int Var = 55; //Do it in 2 lines e.g. Serial.print("L "); // String Serial.println(Var); // Print Variable on same line then send a line feed
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
By posting your answer, you agree to the privacy policy and terms of service.
asked
7 months ago
viewed
831 times
active
Get the weekly newsletter!
see an example newsletter
By subscribing, you agree to the privacy policy and terms of service.
Serial.print
. – jfpoilpret Mar 10 at 19:52