-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdisplay.c
72 lines (61 loc) · 1.31 KB
/
display.c
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#include "display.h"
#include <ncurses.h>
bool display_pixels[DISPLAY_LENGTH * DISPLAY_ROWS];
void force_set_pixel(int num, bool value);
void all_pixels_off(void);
int display_open(void) {
initscr();
curs_set(0); // hide cursor
all_pixels_off();
return 0;
}
void display_close(void) {
all_pixels_off();
endwin();
}
void display_update(void) {
move(5, 0);
refresh();
}
void set_pixel(int num, bool value) {
if (display_pixels[num] != value)
force_set_pixel(num, value);
}
void force_set_pixel(int num, bool value) {
display_pixels[num] = value;
int led_panel_num = num / DISPLAY_LENGTH;
int row, col;
switch (led_panel_num) {
case 0:
col = 0;
row = 0;
break;
case 1:
col = 0;
row = 1;
break;
case 2:
col = DISPLAY_LENGTH + 2;
row = 0;
break;
case 3:
col = DISPLAY_LENGTH + 2;
row = 1;
break;
case 4:
col = 1;
row = 3;
break;
case 5:
col = DISPLAY_LENGTH + 1;
row = 3;
break;
}
col += num % DISPLAY_LENGTH;
char c = value ? '#' : '.';
mvprintw(row, col, "%c", c);
}
void all_pixels_off(void) {
for (int i = 0; i < DISPLAY_LENGTH * DISPLAY_ROWS; i++)
force_set_pixel(i, false);
}