#include int main(void) { DDRB = DDRB & 0b01111111; while (1) { if(PINB & 0b10000000) DDRB = DDRB & 0b11101111; else DDRB = DDRB | 0b00010000; } return 0; }