#define D11high | 0xFF; //hex code to write Digital Pin 11 HIGH
int C = 0;
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
pinMode(11, OUTPUT);
Serial.println("Starting Program");
}
void loop() {
// put your main code here, to run repeatedly:
for (int C = 1; C <= 8;) {
Serial.println(C);
_delay_ms(300);
PORTB = PORTB D11high;
_delay_ms(300);
C = C+1;
}
}