summaryrefslogtreecommitdiff
path: root/src/init.h
diff options
context:
space:
mode:
authorvmisovic <vladimir.misovic03@gmail.com>2023-02-21 13:18:51 +0100
committerAleksa Vuckovic <aleksa@vuckovic.cc>2023-03-10 23:48:43 +0100
commitf6ebc8903c51435cccfc95915f75d96f73f16fa7 (patch)
tree2782af11a61f1f3f828d568019174d67a9fed26f /src/init.h
parent30a0aafd0feb6615b17bd226ba82010a6aaeb20b (diff)
vmisovic: code organization, drawing letters
source files moved to 'src' folder program divided into multiple files drawing letters aleksav013: fixed vmisovic commits moved functions from .h to .c file renamed led_cube.c to main.c
Diffstat (limited to 'src/init.h')
-rw-r--r--src/init.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/init.h b/src/init.h
new file mode 100644
index 0000000..8dabbdb
--- /dev/null
+++ b/src/init.h
@@ -0,0 +1,11 @@
+#ifndef INIT_H
+#define INIT_H
+
+#include <stdint.h>
+
+extern uint8_t map[9];
+
+void init_pins(void);
+void init_map(void);
+
+#endif