Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed mbed-rtos X_NUCLEO_IHM02A1
Display.h@30:e464b2bb2376, 2019-04-11 (annotated)
- Committer:
- scherfa2
- Date:
- Thu Apr 11 15:20:05 2019 +0000
- Revision:
- 30:e464b2bb2376
- Child:
- 33:de144094bdd1
mit Display;
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| scherfa2 | 30:e464b2bb2376 | 1 | |
| scherfa2 | 30:e464b2bb2376 | 2 | #ifndef MBED_Display_H |
| scherfa2 | 30:e464b2bb2376 | 3 | #define MBED_Display_H |
| scherfa2 | 30:e464b2bb2376 | 4 | |
| scherfa2 | 30:e464b2bb2376 | 5 | //#include "mbed.h |
| scherfa2 | 30:e464b2bb2376 | 6 | |
| scherfa2 | 30:e464b2bb2376 | 7 | void DisplaySendeBefehl(unsigned char Befehl); |
| scherfa2 | 30:e464b2bb2376 | 8 | void DisplaySendeZeichen(unsigned char Zeichen); |
| scherfa2 | 30:e464b2bb2376 | 9 | void DisplaySendeString(char *String); |
| scherfa2 | 30:e464b2bb2376 | 10 | void DisplayInit(); |
| scherfa2 | 30:e464b2bb2376 | 11 | void gotoxy(unsigned char x, unsigned char y); |
| scherfa2 | 30:e464b2bb2376 | 12 | |
| scherfa2 | 30:e464b2bb2376 | 13 | #endif |