summaryrefslogtreecommitdiff
path: root/LiquidCrystal.h
diff options
context:
space:
mode:
authorTrygve Laugstøl <trygvis@inamo.no>2015-05-29 00:00:05 +0200
committerTrygve Laugstøl <trygvis@inamo.no>2015-05-29 00:00:05 +0200
commit6d7141db0c73af34fd887fda9723c77aaaf1e349 (patch)
treeef8d2ebf816e70a4a63073700b9097b8467f2380 /LiquidCrystal.h
downloadphone_remote_nrf51-6d7141db0c73af34fd887fda9723c77aaaf1e349.tar.gz
phone_remote_nrf51-6d7141db0c73af34fd887fda9723c77aaaf1e349.tar.bz2
phone_remote_nrf51-6d7141db0c73af34fd887fda9723c77aaaf1e349.tar.xz
phone_remote_nrf51-6d7141db0c73af34fd887fda9723c77aaaf1e349.zip
o Initial import of Phone Remote firmware, forked from the old soil moisture project.
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