summaryrefslogtreecommitdiffstats
path: root/source/AVR_Studio/Soccer/hal/keylcd.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/AVR_Studio/Soccer/hal/keylcd.h')
-rwxr-xr-xsource/AVR_Studio/Soccer/hal/keylcd.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/source/AVR_Studio/Soccer/hal/keylcd.h b/source/AVR_Studio/Soccer/hal/keylcd.h
new file mode 100755
index 0000000..590c0cb
--- /dev/null
+++ b/source/AVR_Studio/Soccer/hal/keylcd.h
@@ -0,0 +1,25 @@
+#ifndef _KEYLCD_H_
+#define _KEYLCD_H_
+
+#include "i2c.h"
+#include "string.h"
+
+#define I2C_KEYLCD 2
+#define LCD_CMD_PRINTSTR 0
+
+class KeyLCD
+{
+private:
+ I2C i2c;
+public:
+ KeyLCD();
+ ~KeyLCD();
+
+ void print(char* data);
+ uint8_t error();
+ void clear();
+};
+
+#endif
+
+