Arduino Leonardo, Arduino 1.0.5, Serial Monitor at 9600 baud
Hi,
with the following sketch I cannot send more than one byte to the Serial Monitor:
void setup() {
Serial.begin(9600); // use the serial port
}
void loop() {
Serial.print('He'); // does not work
// Serial.print('H'); // works
delay(100);
}
If I try to print "He", I get 18533. Trying to send "Hel" shows 25964.
A single "H" indeed works. Integers also work. So I am able to send a 200000 with no problems.
Does anybody know what is going on?
Greets,
Christoph