void setup() {
// put your setup code here, to run once:
DDRD |= 0x10;
}
void loop() {
// put your main code here, to run repeatedly:
PIND = (1<<PD4);
delay(500);
PIND = (0<<PD4);
delay(500);
}
void setup() {
// put your setup code here, to run once:
DDRD |= 0x10;
}
void loop() {
// put your main code here, to run repeatedly:
PIND = (1<<PD4);
delay(500);
PIND = (0<<PD4);
delay(500);
}