-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEQSlider.cpp
More file actions
27 lines (21 loc) · 1.63 KB
/
EQSlider.cpp
File metadata and controls
27 lines (21 loc) · 1.63 KB
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
//
// Image: EQSlider
// dimension: 14x9
// Size: 0kb
//
#include "EQSlider.h"
#define C(R,G,B) tgx::RGB565(R,G,B)
// image data
static const tgx::RGB565 EQSlider_data[14*9] PROGMEM = {
C(0,0,0), C(0,0,0), C(0,0,0), C(0,0,0), C(0,0,0), C(0,0,0), C(0,0,0), C(0,0,0), C(0,0,0), C(0,0,0), C(0,0,0), C(0,0,0), C(0,0,0), C(0,0,0), C(0,0,0), C(0,0,0),
C(4,12,7), C(3,12,7), C(3,12,7), C(3,12,7), C(3,12,7), C(3,12,7), C(3,12,7), C(3,12,7), C(3,12,7), C(4,12,7), C(0,0,0), C(0,0,0), C(0,0,0), C(3,11,6), C(0,13,8), C(0,15,10),
C(0,14,10), C(0,14,10), C(0,14,10), C(0,15,10), C(0,15,9), C(0,14,9), C(0,15,10), C(0,13,8), C(3,11,6), C(0,0,0), C(0,0,0), C(2,12,7), C(11,41,23), C(9,43,24), C(9,43,24), C(9,43,24),
C(9,43,24), C(9,43,24), C(9,43,24), C(9,43,24), C(9,43,25), C(11,42,23), C(2,12,7), C(0,0,0), C(0,0,0), C(0,2,2), C(11,45,24), C(8,47,26), C(8,47,26), C(8,47,26), C(8,47,26), C(8,47,26),
C(8,47,26), C(8,47,26), C(8,47,26), C(11,45,24), C(0,2,2), C(0,0,0), C(0,0,0), C(0,5,3), C(0,16,9), C(0,18,11), C(0,18,11), C(0,18,11), C(0,18,11), C(0,18,11), C(0,18,11), C(0,18,11),
C(0,18,11), C(0,16,9), C(0,5,3), C(0,0,0), C(0,0,0), C(1,4,2), C(0,5,3), C(0,6,4), C(0,6,4), C(0,6,4), C(0,6,3), C(0,6,4), C(0,6,4), C(0,6,4), C(0,6,4), C(0,5,3),
C(1,4,2), C(0,0,0), C(0,0,0), C(0,0,0), C(1,2,1), C(1,1,1), C(1,2,1), C(1,2,1), C(1,2,1), C(1,2,1), C(1,2,1), C(1,2,1), C(1,2,1), C(1,2,1), C(0,0,0), C(0,0,0),
C(0,0,0), C(0,0,0), C(0,0,0), C(0,0,0), C(0,0,0), C(0,0,0), C(0,0,0), C(0,0,0), C(0,0,0), C(0,0,0), C(0,0,0), C(0,0,0), C(0,0,0), C(0,0,0)};
// image object
const tgx::Image<tgx::RGB565> EQSlider(EQSlider_data, 14, 9);
#undef C
// end of file EQSlider.cpp