summaryrefslogtreecommitdiffstats
path: root/source/AVR_Studio/Soccer/hal/keylcd.h
blob: 9403aa65a6c87a1731829f000e275c34275310e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef _KEYLCD_H_
#define _KEYLCD_H_

//#include "i2c.h"
#include "string.h"
#include "uart.h"

class KeyLCD 
{
private:
public:
	KeyLCD();
	~KeyLCD();
	
	void print(char* data);
	void clear();	
};

#endif