This repository has been archived on 2025-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
rc2007-soccer/source/AVR_Studio/Soccer/hal/keylcd.h

22 lines
231 B
C
Raw Normal View History

#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