-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdisplay.h
28 lines (22 loc) · 1.05 KB
/
display.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#ifndef DISPLAY_H
#define DISPLAY_H
/* Display abstraction layer. See/adjust display.cpp for implementation details.
The screen layout is built around the notion of 4 x 4 "areas", representing icons, buttons, or settings,
and one "detail" area (could also be an overlay, though).
*/
void setup_display();
void display_clear();
void display_commit();
void display_icon(int8_t row, int8_t col, const char *shortname, const char* value, bool active);
void display_text(int8_t row, int8_t col, const char* value);
void display_button (int8_t row, int8_t col, const char *name);
/** Display a short message in the detail area. */
void display_detail(const char *label, const char* value);
// Draw a (menu) header. Note: x, y, w, and h given in logical sections, i.e. 1..4
void display_header_bar(const char *label, int8_t row);
void display_line (const char *line, int8_t row);
void display_page_header(const char* label, bool lr_buttons);
void display_ud_bar(int16_t min, int16_t max, int16_t current_step, bool show);
void display_pause();
void display_resume();
#endif