#define DDB5 5
#define DDB6 6
void setup() {
//DDRB = DDRB | (1<<DDB6); //possui função de pinmode
DDRD = 0x80;
}
void loop() {
//DDRB ^= (1<<DDB5);
//PORTD = 0x80; //possui função de digitalWrite
PORTD = PORTD | (1<<7);
delay(1000);
PORTD = 0x00;
delay(1000);
}