I think the board has a bug,
void setup() {
Serial.begin(9600);
}
void loop() {
Serial.println('msg');
}
only prints out 24940 over serial over and over again, regardless of the input.
Anyone know how to fix it ?
EDIT: changed to 29543.
I think the board has a bug,
void setup() {
Serial.begin(9600);
}
void loop() {
Serial.println('msg');
}
only prints out 24940 over serial over and over again, regardless of the input.
Anyone know how to fix it ?
EDIT: changed to 29543.
Serial.println('msg');
It's:
Serial.println("msg");
I think the board has a bug.
No it has not.
's' is 0x73.
'g' is 0x67
0x7367 = 29543
No it has not.
Yes, it does. It picked the wrong owner.