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.
lcd.h@1:083267bc0a0e, 2017-09-30 (annotated)
- Committer:
- rmaalmeida
- Date:
- Sat Sep 30 17:50:06 2017 +0000
- Revision:
- 1:083267bc0a0e
Added LCD driver and removed interference from seven segment display.
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
rmaalmeida | 1:083267bc0a0e | 1 | #ifndef LCD |
rmaalmeida | 1:083267bc0a0e | 2 | #define LCD |
rmaalmeida | 1:083267bc0a0e | 3 | void lcdCommand(char value); |
rmaalmeida | 1:083267bc0a0e | 4 | void lcdChar(char value); |
rmaalmeida | 1:083267bc0a0e | 5 | void lcdString(char msg[]); |
rmaalmeida | 1:083267bc0a0e | 6 | void lcdNumber(int value); |
rmaalmeida | 1:083267bc0a0e | 7 | void lcdPosition(int line, int col); |
rmaalmeida | 1:083267bc0a0e | 8 | void lcdInit(void); |
rmaalmeida | 1:083267bc0a0e | 9 | #endif |