void setup() {
// put your setup code here, to run once:
// set PINB0 to output in DDRB
DDRB |= 0b00000001;
}
void loop() {
// put your main code here, to run repeatedly:
// toggle PINB0
PORTB ^= 0b00000001;
delay(500);
}
void setup() {
// put your setup code here, to run once:
// set PINB0 to output in DDRB
DDRB |= 0b00000001;
}
void loop() {
// put your main code here, to run repeatedly:
// toggle PINB0
PORTB ^= 0b00000001;
delay(500);
}