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.
tampil.h@0:c8162f0b59f2, 2015-10-11 (annotated)
- Committer:
- irsanjul
- Date:
- Sun Oct 11 10:44:41 2015 +0000
- Revision:
- 0:c8162f0b59f2
for my others
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
irsanjul | 0:c8162f0b59f2 | 1 | #ifndef TAMPIL_H |
irsanjul | 0:c8162f0b59f2 | 2 | #define TAMPIL_H |
irsanjul | 0:c8162f0b59f2 | 3 | |
irsanjul | 0:c8162f0b59f2 | 4 | void display_init(); |
irsanjul | 0:c8162f0b59f2 | 5 | void display_idle(); |
irsanjul | 0:c8162f0b59f2 | 6 | void displayActive(); |
irsanjul | 0:c8162f0b59f2 | 7 | void displayChn(int chInd); |
irsanjul | 0:c8162f0b59f2 | 8 | void displaySig(int sig); |
irsanjul | 0:c8162f0b59f2 | 9 | void displaySts(const char *sts); |
irsanjul | 0:c8162f0b59f2 | 10 | void displaySts(int status); |
irsanjul | 0:c8162f0b59f2 | 11 | void displayImg(uint8_t * img, unsigned x, unsigned y, int width); |
irsanjul | 0:c8162f0b59f2 | 12 | void displayClr(); |
irsanjul | 0:c8162f0b59f2 | 13 | void displayStd(time_t &dt); |
irsanjul | 0:c8162f0b59f2 | 14 | |
irsanjul | 0:c8162f0b59f2 | 15 | #endif |