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.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/source/AVR_Studio/Soccer/hal/keylcd.h b/source/AVR_Studio/Soccer/hal/keylcd.h
index 590c0cb..9403aa6 100755
--- a/source/AVR_Studio/Soccer/hal/keylcd.h
+++ b/source/AVR_Studio/Soccer/hal/keylcd.h
@@ -1,22 +1,18 @@
#ifndef _KEYLCD_H_
#define _KEYLCD_H_
-#include "i2c.h"
+//#include "i2c.h"
#include "string.h"
-
-#define I2C_KEYLCD 2
-#define LCD_CMD_PRINTSTR 0
+#include "uart.h"
class KeyLCD
{
private:
- I2C i2c;
public:
KeyLCD();
~KeyLCD();
void print(char* data);
- uint8_t error();
void clear();
};