#define Allumage B11111111;
void setup() {
// put your setup code here, to run once:
DDRD=B11111111;
}
void loop() {
// put your main code here, to run repeatedly:
PORTD=Allumage;
delay(1000);
PORTD=~Allumage;
delay(1000);
}
#define Allumage B11111111;
void setup() {
// put your setup code here, to run once:
DDRD=B11111111;
}
void loop() {
// put your main code here, to run repeatedly:
PORTD=Allumage;
delay(1000);
PORTD=~Allumage;
delay(1000);
}