I am working on a little sensor rig to feed serial data from some pressure switches and an accelerometer to Touch over an XBEE connection. I have successfully sent stings from the Arduino to TD over the XBEE, but I am getting double carriage returns in Touch after every line using Serial.println(“mystuff”) in the Arduino. I’ve tried a couple of things to no avail.
This is likely a real C newbie question, but would anyone know how to format Serial.print or Serial.println commands in arduino that will read as a single carriage return in TD?
You could try setting the Serial DAT format to ‘One Row Per Byte’ and see exactly which bytes are coming in.
Seems println appends \r \n as the above message suggests.
In that case you could try: Serial.print(“Hello\n”)