
Programm zur Darstellung der Lage eines Objektes im Raum mit Hilfe eines Beschleunigungssensores, 4 LED's und einem LCD-Display.
LCD.h@14:2543a798b4a1, 2016-06-30 (annotated)
- Committer:
- Schreeker
- Date:
- Thu Jun 30 18:56:35 2016 +0000
- Revision:
- 14:2543a798b4a1
- Parent:
- 11:5861bc23022a
- Child:
- 15:462c8c89fe35
initLCD hinzugef?gt (Introtext bei Programmstart auf Display). Kalibrierung ueberprueft. Alles ok. Simon Rutzen Ausstehend: Einstellen der LED's durch Auswertung der Winkel!
Who changed what in which revision?
User | Revision | Line number | New 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 | 0:2a6b63a19ae5 | 9 | /* Includes */ |
Schreeker | 0:2a6b63a19ae5 | 10 | #include "cdef.h" |
Schreeker | 0:2a6b63a19ae5 | 11 | #include "TextLCD.h" |
Schreeker | 0:2a6b63a19ae5 | 12 | |
NilsKemmer | 1:0ec865a9c35e | 13 | /* Prototypen */ |
Schreeker | 9:38d287593320 | 14 | void vLCDSet(signed short int wWinkelX, signed short int wWinkelY); |
Schreeker | 14:2543a798b4a1 | 15 | void vLCDDebug(signed short int wWinkelX, signed short int wWinkelY, signed short int wWinkelZ); |
Schreeker | 14:2543a798b4a1 | 16 | void initLCD(); |