summaryrefslogtreecommitdiff
path: root/LiquidCrystal.h
diff options
context:
space:
mode:
Diffstat (limited to 'LiquidCrystal.h')
-rw-r--r--LiquidCrystal.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/LiquidCrystal.h b/LiquidCrystal.h
new file mode 100644
index 0000000..341d729
--- /dev/null
+++ b/LiquidCrystal.h
@@ -0,0 +1,19 @@
+/*
+ * LiquidCrystal
+ */
+
+#ifndef LIQUIDCRYSTAL_H_
+#define LIQUIDCRYSTAL_H_
+
+#include <stdint.h>
+#include "app_gpiote.h"
+
+uint32_t liquid_crystal_init();
+
+uint32_t liquid_crystal_display(bool display_on, bool cursor_on, bool blink);
+
+void liquid_crystal_write_char(char chr);
+
+void liquid_crystal_write_string(char *chr);
+
+#endif