Faster toggling
This commit is contained in:
parent
c713fe96f4
commit
eb7914190f
1 changed files with 2 additions and 2 deletions
|
@ -11,9 +11,9 @@ int main()
|
||||||
{
|
{
|
||||||
PORTB |= (1 << PB3);
|
PORTB |= (1 << PB3);
|
||||||
PORTB |= (1 << PB4);
|
PORTB |= (1 << PB4);
|
||||||
_delay_ms(500);
|
_delay_ms(250);
|
||||||
PORTB &= ~(1 << PB3);
|
PORTB &= ~(1 << PB3);
|
||||||
PORTB &= ~(1 << PB4);
|
PORTB &= ~(1 << PB4);
|
||||||
_delay_ms(500);
|
_delay_ms(250);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue