Cod Lab2ex2

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

void main() {

DDRA |= 0b11110000;
DDRC |= 0b11111111;
while(1)
{
PORTA = 0b00001001;
PORTC=0b00000110;
delay_ms(4);
PORTA = 0b00000110;
PORTC=0b01011011;
delay_ms(4);
}
}

You might also like