Hello to all. I have a problem with the serial monitor:
I am working in communication with Max.msp. the serial port and the baud rate are corrects but a stream of -1 appears. they shouldn't exist given the sketch
Hi,
Try this code, see what you get on the serial monitor.
const int led = 13;
int value;
void setup()
{
pinMode(led, OUTPUT);
Serial.begin(9600);
Serial.println("Starting Monitor Basic test");
}
void loop()
{
Serial.print("This UNO is Counting ");
Serial.println(value);
value = value + 1;
delay(250);
}
Tom....
PS. If you left click the icon circled, it will copy the code into your clipboard for you to paste in the IDE.