This repository has been archived on 2025-03-02. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
rc2007-soccer/source/AVR_Studio/Soccer/hal/keylcd.h
2007-02-17 00:35:01 +00:00

21 lines
231 B
C++
Executable file

#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