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

22 lines
304 B
C
Raw Permalink Normal View History

#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() {
}