gpb01:
... per sicurezza, potresti postare l'esatto programma di prova (... mi raccomando, racchiuso tra i tag CODE che, in fase di edit, ti inserisce il bottone # ... terzultimo della seconda fila) ???
Ecco il codice del test :
int led = 2;
// the setup routine runs once when you press reset:
void setup() {
// initialize the digital pin as an output.
pinMode(led, OUTPUT);
}
// the loop routine runs over and over again forever:
void loop() {
digitalWrite(led, HIGH); // turn the LED on (HIGH is the voltage level)
delay(5000); // wait for 5 seconds
digitalWrite(led, LOW); // turn the LED off by making the voltage LOW
delay(5000); // wait for 5 seconds
}
Non penso ci siano errori nel codice
gpb01:
Piuttosto, il LED sulla schedina che fa ???
Di LED ce ne sono 2 e sono entrambi accesi costantemente (penso siano uno per l'alimentazione ed uno per il segnale).
Devo iniziare a preoccuparmi? ![]()
MA