Hi, I'm new to the Arduino and to Micro-controllers in general (although fairly experienced with code), so I'm at the bottom of my learning curve.
I'm trying to pass serial data from an Arduino to my PC, but the data is arriving scrambled in Docklight. I've obviously missed something important.
I'm connecting Pins 0/1 (Rx/Tx) and ground from the Arduino to the serial cable (pins 2,3 & 5), and using Serial.print. Baud rates are both 9600 (I've tested most other options too), 8,1,N on the receiver (again, I think I must have tried every combination!). I get the same results in Hyperterminal, Docklight or my own Serial monitor I wrote a while ago - I've tried several different Arduino Boards, all give the same results :
Sending integers 0 - 6 Serial.print(0);Serial.print(1)... receives : D6 B6 96 76 56 36 56 EB 00
Sending ASCII Serial.println("abcdefg") : 4F A7 BA AA 9A 8A 2A EB 00.
Results are identical over different boards/wires/bauds etc, so I think I can discount dodgy hardware.
If I send via the USB, everything works fine. What am I doing wrong?
Any help would be greatly appreciated!
Scott


