I was wondering if anyone could tell me how to send a string to the arduino and just echo it back to the serial monitor but also create a NEW LINE. Right now I got it to take a string and echo it back exactly but every time I send the string form the computer to the ard it just tacks the echo from the ard right back onto the end of the previous data that is showing in the monitor.
What are you trying to accomplish? Echoing every character? Try using an if/else statement that sends the Serial.println(""); statement when it detects the enter key, or echos the typed character if it doesn’t.
I am trying to send a string to the arduino and then the arduino just simply echos the same thing back to the monitor. everytime time i send a string, the string that the arduino sends back will be on a new line.