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.c
2007-02-17 00:35:01 +00:00

21 lines
304 B
C
Executable file

#include "keylcd.h"
KeyLCD::KeyLCD() {
// Uart-Interface einschalten
uart1_init( 103); // 9600 BAUD bei 16MHz Atmel
}
KeyLCD::~KeyLCD() {
}
// Gibt Daten auf dem keyLCD aus
void KeyLCD::print(char *data) {
uart1_puts(data);
}
// Löscht das keyLCD
void KeyLCD::clear() {
}