I’m not able to communicate between my ‘nano every’ and USB.
Downloading code is working fine, but no response from Serial.print(), nothing shows up in the terminal window. I use a simple sketch sending a text every 1 second.
When testing ‘nano’, everything works fine.
The setup is correct according to descriptions on Arduino website.
I’ve tried 3 different ‘nano every’ but with the same result.
The IDE is updated to the last version, driver is updated to the last version.
I can read board info.
IDE 2.1.1
I've tested 2 different PCs, one windows 10 and one windows 11.
Baudrate is set to 9600 in the sketch and also in the terminal window.
This is the sketch: #define blinkPin 13
void setup() {
// put your setup code here, to run once:
pinMode(blinkPin, OUTPUT);
Serial.begin(9600);
}
void loop() {
// put your main code here, to run repeatedly:
digitalWrite(blinkPin, HIGH);
delay(100);
digitalWrite(blinkPin, LOW);
delay(900);
Serial.println("Blinktest ....");
}
I use a 'Termite 3.4' as a terminal window. Has been working fine with any Arduino controller except this one.
Thank you for your input.
All of a sudden things started working.
I selected the 'Programmer' to 'Atmel mEDBG (the only option).
Hopefully this will work forever.