aboutsummaryrefslogtreecommitdiff
path: root/zumo/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'zumo/main.c')
-rw-r--r--zumo/main.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/zumo/main.c b/zumo/main.c
new file mode 100644
index 0000000..ab66db4
--- /dev/null
+++ b/zumo/main.c
@@ -0,0 +1,15 @@
+#define F_CPU 16000000
+
+#include <avr/io.h>
+#include <util/delay.h>
+
+int main() {
+ DDRC |= (1 << DDC7);
+ while(1) {
+ PORTC |= (1 << PORTC7);
+ _delay_ms(500);
+ PORTC &= ~(1 << PORTC7);
+ _delay_ms(500);
+ }
+}
+