Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <avr/io.h>
- #include <util/delay.h>
- // void wurstbrot();
- //
- // void wurstbrot()
- // {
- // }
- int main(void)
- {
- DDRB |= (1<<PB0);
- PORTB |= (1<<PB0);
- while(1) {
- _delay_ms(1000);
- PORTB ^= (1<<PB0);
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment