I wanted to see if I could get my Duemilanove talking to my MacBook Pro.
All of my projects have been output only- using DigitalWrite. This is the first time I've tried using
Serial I/O instructions and the serial port monitor.
I'm using the Arduino Ide ver 0022 on OSX 10.6.6.
I'm able to compile & download to the Arduino.
I've made a very short sketch to send serial data to the serial port monitor.
void setup() {
Serial.begin(9600); // opens serial port, sets data rate to 9600 bps
}
void loop() {
Serial.println("Serial test");
Serial.println("Serial 1");
Serial.println("Serial 2");
Serial.println("Serial 3");
}
The sketch compiles & runs just fine.
I can see the text in the serial port monitor.
So I thought- why not test it at a higher baud rate.
When I change Serial.begin(9600) to 38400 and anything higher (and set the baud rate in the monitor appropriately),
the text going to the monitor is much slower and jerky, than at 9600.
Is this simply because the monitor can't scroll fast enough to show the text cleanly at higher baud rates, or
am are my expectations wrong?