void setup() {
// put your setup code here, to run once:
DDRA = 0xFF; // PORT A AS OUTPUT
PORTA=0x00;
}
void loop() {
// put your main code here, to run repeatedly:
PORTA=0x55;
delay(500);
PORTA=0xAA;
delay(500);
}
void setup() {
// put your setup code here, to run once:
DDRA = 0xFF; // PORT A AS OUTPUT
PORTA=0x00;
}
void loop() {
// put your main code here, to run repeatedly:
PORTA=0x55;
delay(500);
PORTA=0xAA;
delay(500);
}