LiquidMenu  1.5.1
Menu creation Arduino library for LCDs, wraps LiquidCrystal.
glyphs.h
Go to the documentation of this file.
1 
6 #pragma once
7 
8 namespace glyph {
10 uint8_t rightFocus[8] = {
11  0b00000,
12  0b00100,
13  0b01000,
14  0b11111,
15  0b01000,
16  0b00100,
17  0b00000,
18  0b00000
19 };
20 
22 uint8_t leftFocus[8] = {
23  0b00000,
24  0b00100,
25  0b00010,
26  0b11111,
27  0b00010,
28  0b00100,
29  0b00000,
30  0b00000
31 };
32 
34 uint8_t customFocus[8] = {
35  0b00000,
36  0b00000,
37  0b01110,
38  0b01110,
39  0b01110,
40  0b00000,
41  0b00000,
42  0b00000
43 };
44 } //namespace glyph
uint8_t rightFocus[8]
The focus glyph shown on the right.
Definition: glyphs.h:10
Definition: glyphs.h:8
uint8_t leftFocus[8]
The focus glyph shown on the left.
Definition: glyphs.h:22
uint8_t customFocus[8]
The focus glyph shown when custom focus is set.
Definition: glyphs.h:34