Last change
on this file was
c5c522c,
checked in by Edwin Eefting <edwin@datux.nl>, 8 years ago
|
initial commit, transferred from cleaned syn3 svn tree
|
-
Property mode set to
100644
|
File size:
516 bytes
|
Rev | Line | |
---|
[c5c522c] | 1 | #ifndef RENDER_H |
---|
| 2 | #define RENDER_H |
---|
| 3 | |
---|
| 4 | #include "screen.h" |
---|
| 5 | |
---|
| 6 | |
---|
| 7 | #define HEART_OFF 0 |
---|
| 8 | #define HEART_ON 1 |
---|
| 9 | #define HEART_OPEN 2 |
---|
| 10 | |
---|
| 11 | #define BACKLIGHT_OFF 0 |
---|
| 12 | #define BACKLIGHT_ON 1 |
---|
| 13 | #define BACKLIGHT_OPEN 2 |
---|
| 14 | #define BACKLIGHT_LOAD 3 |
---|
| 15 | #define BACKLIGHT_VIS 4 |
---|
| 16 | |
---|
| 17 | #define BACKLIGHT_BLINK 0x100 |
---|
| 18 | #define BACKLIGHT_FLASH 0x200 |
---|
| 19 | |
---|
| 20 | extern int heartbeat; |
---|
| 21 | extern int backlight; |
---|
| 22 | extern int backlight_state; |
---|
| 23 | extern int backlight_brightness; |
---|
| 24 | extern int backlight_off_brightness; |
---|
| 25 | extern int output_state; |
---|
| 26 | int draw_screen(screen *s, int timer); |
---|
| 27 | |
---|
| 28 | |
---|
| 29 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.