Created
November 26, 2015 18:35
-
-
Save drymek/3439825faa8373c93c39 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <avr/io.h> | |
#include <util/delay.h> | |
int main(void) { | |
DDRB = 0b11111111; | |
while (1) { | |
PORTB = 0b11111111; | |
_delay_ms(1000); | |
PORTB = 0b00000000; | |
_delay_ms(1000); | |
} | |
return (0); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment