Hello I am am currently using an Arduino UNO on windows 7 32bit my project used to work printing statements out on the serial monitor however now my programs do not print anything.
I modified the blink program to print out during it's loop and this worked after a while but at first the characters were illegible (with the serial monitor set to the correct baud rate) and after a few runs of the loop these errors seemed to just correct themselves.
On the project I am working on nothing is being printed out on the serial monitor all the only difference in my program is that I include SoftwareSerial.h
The start of my program is:
void setup()
{
Serial.begin(9600);
delay(2000);
Serial.println("Beginning");
}
And even this does not seem to work.
Has anyone had any experience with this problem before?