Programm zur Darstellung der Lage eines Objektes im Raum mit Hilfe eines Beschleunigungssensores, 4 LED's und einem LCD-Display.

Dependencies:   TextLCD mbed

Committer:
Schreeker
Date:
Sun Jul 03 14:02:47 2016 +0000
Revision:
16:9b20d24aae18
Parent:
15:462c8c89fe35
Child:
20:094cdb790dcb
Anpassung an Definitionen des Files cdef.h. Simon Rutzen

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Schreeker 0:2a6b63a19ae5 1 /**********************************************************************************
Schreeker 0:2a6b63a19ae5 2 * File name: LCD.h
Schreeker 0:2a6b63a19ae5 3 * Zweck: Beinhaltet alle Funktionsprototypen zur Ausgabe von Informationen
Schreeker 0:2a6b63a19ae5 4 auf dem LCD-Display, sowie Funktionen zum Debuggen des Projektes
Schreeker 0:2a6b63a19ae5 5 * Author: Simon Rutzen, Nils Kemmer
Schreeker 0:2a6b63a19ae5 6 * Changes: keine
Schreeker 0:2a6b63a19ae5 7 ***********************************************************************************/
Schreeker 0:2a6b63a19ae5 8
Schreeker 16:9b20d24aae18 9 #ifndef LCD_H
Schreeker 0:2a6b63a19ae5 10 /* Includes */
Schreeker 0:2a6b63a19ae5 11 #include "cdef.h"
Schreeker 0:2a6b63a19ae5 12 #include "TextLCD.h"
Schreeker 0:2a6b63a19ae5 13
NilsKemmer 1:0ec865a9c35e 14 /* Prototypen */
Schreeker 16:9b20d24aae18 15 void vLCDSet(int16 wWinkelX, int16 wWinkelY, byte bStateLCD);
Schreeker 16:9b20d24aae18 16 void vLCDDebug(int16 wWinkelX, int16 wWinkelY, int16 wWinkelZ);
Schreeker 16:9b20d24aae18 17 void initLCD();
Schreeker 16:9b20d24aae18 18
Schreeker 16:9b20d24aae18 19 #endif