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: LCD_DISCO_F429ZI mbed TS_DISCO_F429ZI BSP_DISCO_F429ZI
KeyboardTsLcd.h@0:db2c7dc10f89, 2020-05-14 (annotated)
- Committer:
- thepaueu
- Date:
- Thu May 14 18:45:14 2020 +0000
- Revision:
- 0:db2c7dc10f89
Pawel Majtas cw 2d2
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| thepaueu | 0:db2c7dc10f89 | 1 | #ifndef _KEYBOARDTSLCD_H |
| thepaueu | 0:db2c7dc10f89 | 2 | #define _KEYBOARDTSLCD_H |
| thepaueu | 0:db2c7dc10f89 | 3 | |
| thepaueu | 0:db2c7dc10f89 | 4 | #include "KeyboardTs.h" |
| thepaueu | 0:db2c7dc10f89 | 5 | #include "LedLcd.h" |
| thepaueu | 0:db2c7dc10f89 | 6 | |
| thepaueu | 0:db2c7dc10f89 | 7 | |
| thepaueu | 0:db2c7dc10f89 | 8 | class KeyboardTsLcd{ |
| thepaueu | 0:db2c7dc10f89 | 9 | |
| thepaueu | 0:db2c7dc10f89 | 10 | public: |
| thepaueu | 0:db2c7dc10f89 | 11 | KeyboardTsLcd(unsigned char); |
| thepaueu | 0:db2c7dc10f89 | 12 | enum BUTTON eRead(void); |
| thepaueu | 0:db2c7dc10f89 | 13 | KeyboardTs *pKeyboard; |
| thepaueu | 0:db2c7dc10f89 | 14 | LedLcd *pLed; |
| thepaueu | 0:db2c7dc10f89 | 15 | }; |
| thepaueu | 0:db2c7dc10f89 | 16 | |
| thepaueu | 0:db2c7dc10f89 | 17 | #endif |