summaryrefslogtreecommitdiff
path: root/samples/dashboard_1602/LCD4Bit_mod.h
diff options
context:
space:
mode:
authorStanley Huang <stanleyhuangyc@gmail.com>2015-05-17 23:29:58 +1000
committerStanley Huang <stanleyhuangyc@gmail.com>2015-05-17 23:29:58 +1000
commit06baa20150ece9b45d038234a04ed558ed2effab (patch)
tree08a689727d049ead87b5855adae8c9c5ded3c4f4 /samples/dashboard_1602/LCD4Bit_mod.h
parente494891c8cb7a47279d5ce514850fa855e64ab0c (diff)
download2021-arduino-obd-06baa20150ece9b45d038234a04ed558ed2effab.tar.gz
2021-arduino-obd-06baa20150ece9b45d038234a04ed558ed2effab.tar.bz2
2021-arduino-obd-06baa20150ece9b45d038234a04ed558ed2effab.zip
Remove deprecated samples
Diffstat (limited to 'samples/dashboard_1602/LCD4Bit_mod.h')
-rw-r--r--samples/dashboard_1602/LCD4Bit_mod.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/samples/dashboard_1602/LCD4Bit_mod.h b/samples/dashboard_1602/LCD4Bit_mod.h
deleted file mode 100644
index 7318c32..0000000
--- a/samples/dashboard_1602/LCD4Bit_mod.h
+++ /dev/null
@@ -1,27 +0,0 @@
-#ifndef LCD4Bit_mod_h
-#define LCD4Bit_mod_h
-
-#include <inttypes.h>
-
-class LCD4Bit_mod {
-public:
- LCD4Bit_mod(int num_lines);
- void commandWrite(int value);
- void init();
- void print(int value);
- void printIn(const char* value);
- void clear();
- //non-core---------------
- void cursorTo(int line_num, int x);
- void leftScroll(int chars, int delay_time);
- //end of non-core--------
-
- //4bit only, therefore ideally private but may be needed by user
- void commandWriteNibble(int nibble);
-private:
- void pulseEnablePin();
- void pushNibble(int nibble);
- void pushByte(int value);
-};
-
-#endif