aboutsummaryrefslogtreecommitdiff
path: root/src/display.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/display.h')
-rw-r--r--src/display.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/display.h b/src/display.h
new file mode 100644
index 0000000..a2bbc79
--- /dev/null
+++ b/src/display.h
@@ -0,0 +1,9 @@
+#ifndef _LOADED_DISPLAY
+#define _LOADED_DISPLAY
+#include <stdint.h>
+
+void write_digit(uint8_t digit);
+
+void write_time(uint16_t hour, uint16_t minute);
+
+#endif