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

#include <mega8535.

h>
#include <delay.h>
void main(){
DDRA=0b11111111;
while (1){
PORTA=0b01010101;
delay_ms(100);
PORTA=0b10101010;
delay_ms(100);
}
}

You might also like