summaryrefslogtreecommitdiff
path: root/LiquidCrystal.h
diff options
context:
space:
mode:
authorTrygve Laugstøl <trygvis@inamo.no>2015-05-31 20:46:40 +0200
committerTrygve Laugstøl <trygvis@inamo.no>2015-05-31 20:46:40 +0200
commit570bdb95dbfb7ee3af36396569d43575ed761650 (patch)
tree30a0bce8a7041ed38d2e2a9175446e2573562390 /LiquidCrystal.h
parent8f45739d02f02c226452f7f62c4dc195e6e13b38 (diff)
downloadphone_remote_nrf51-570bdb95dbfb7ee3af36396569d43575ed761650.tar.gz
phone_remote_nrf51-570bdb95dbfb7ee3af36396569d43575ed761650.tar.bz2
phone_remote_nrf51-570bdb95dbfb7ee3af36396569d43575ed761650.tar.xz
phone_remote_nrf51-570bdb95dbfb7ee3af36396569d43575ed761650.zip
o Better LCD code, increased per command delay.
Diffstat (limited to 'LiquidCrystal.h')
-rw-r--r--LiquidCrystal.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/LiquidCrystal.h b/LiquidCrystal.h
index dd28fc9..d995504 100644
--- a/LiquidCrystal.h
+++ b/LiquidCrystal.h
@@ -7,6 +7,7 @@
#include <stdint.h>
#include <stdbool.h>
+#include <unistd.h>
void liquid_crystal_init(bool data_length, bool two_line, bool many_dots);
@@ -26,4 +27,6 @@ void liquid_crystal_write_char(char chr);
void liquid_crystal_write_string(char *chr);
+void liquid_crystal_write_string_len(char *chr, size_t max_len);
+
#endif