avrdude: ser_open(): can't open device "\.\COM1": The system cannot find the file specified.
I set as Troubleshoot said
code I enter
int led=13;
void setup() {
// put your setup code here, to run once:
pinMode(led, OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
digitalWrite(led, HIGH);
delay(1000);
digitalWrite(led, LOW);
delay(20000);
}