#include int main(void) { DDRB = 0xFF; while(1) { PORTB = PORTB | 0b00010000; PORTB = PORTB & 0b11101111; } return 0; }