Hello everyone, this is my first post on here so excuse if it is the wrong place.
I have recently been having an issue of not being able to read the serial output in the serial monitor. Sketches upload fine just there is nothing in the serial monitor
Even a simple serial printing sketch does not work
e.g. below
// the setup function runs once when you press reset or power the board
void setup() {
Serial.begin(9600);
}
// the loop function runs over and over again until power down or reset
void loop() {
Serial.println("Hello World");
delay(1000);
}