summaryrefslogtreecommitdiffstats
path: root/source/AVR_Studio/Soccer/hal/keylcd.c
blob: 4b98f7557b81df39a35d494842c53ffce386c631 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#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() {
	
}