tcMenu
directionalIcons.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2018 https://www.thecoderscorner.com (Dave Cherry).
3  * This product is licensed under an Apache license, see the LICENSE file in the top-level directory.
4  */
5 
6 #ifndef TCMENU_DIRECTIONAL_ICONS_H
7 #define TCMENU_DIRECTIONAL_ICONS_H
8 
15 #include <PlatformDetermination.h>
16 
21 const uint8_t ArrowHoriz11x22BitmapLeft[] PROGMEM = {
22  0x00,0x04,0x00,0x06,0x00,0x07,0x80,0x03,0xc0,0x01,0xe0,0x00,0x70,0x00,0x38,0x00,0x1c,0x00,0x0e,0x00,
23  0x07,0x00,0x07,0x00,0x0e,0x00,0x1c,0x00,0x38,0x00,0x70,0x00,0xe0,0x00,0xc0,0x01,0x80,0x03,0x00,0x07,
24  0x00,0x06,0x00,0x04
25 };
26 
31 const uint8_t ArrowHoriz11x22BitmapRight[] PROGMEM = {
32  0x01,0x00,0x03,0x00,0x07,0x00,0x0e,0x00,0x1c,0x00,0x38,0x00,0x70,0x00,0xe0,0x00,0xc0,0x01,0x80,0x03,
33  0x00,0x07,0x00,0x07,0x80,0x03,0xc0,0x01,0xe0,0x00,0x70,0x00,0x38,0x00,0x1c,0x00,0x0e,0x00,0x07,0x00,
34  0x03,0x00,0x01,0x00
35 };
36 
40 // XBM_LSB_FIRST width=32, height=32, size=128
41 // auto size = Coord(32, 32);
42 const uint8_t defaultBackIconBitmap[] PROGMEM = {
43  0x00,0x00,0x00,0x00,0x00,0xc0,0x00,0x00,0x00,0xf0,0x00,0x00,0x00,0xf8,0x00,0x00,0x00,0xfc,0x00,0x00,
44  0x00,0xff,0x00,0x00,0x80,0xff,0x00,0x00,0xe0,0xff,0x03,0x00,0xf0,0xff,0x3f,0x00,0xfc,0xff,0xff,0x00,
45  0xfe,0xff,0xff,0x03,0xff,0xff,0xff,0x0f,0xff,0xff,0xff,0x1f,0xfe,0xff,0xff,0x3f,0xfc,0xff,0xff,0x3f,
46  0xf0,0xff,0xff,0x7f,0xe0,0xff,0xff,0x7f,0x80,0xff,0x00,0x7f,0x00,0xff,0x00,0x7c,0x00,0xfc,0x00,0x70,
47  0x00,0xf8,0x00,0x60,0x00,0xf0,0x00,0x40,0x00,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x78,
48  0x00,0x00,0x01,0x40,0x00,0x00,0x01,0x40,0x00,0x00,0x01,0x40,0x00,0x00,0x61,0x43,0x00,0x00,0x61,0x43,
49  0x00,0x00,0x0f,0x78,0x00,0x00,0x00,0x00
50 };
51 
52 
53 
54 #endif //TCMENU_DIRECTIONAL_ICONS_H
const uint8_t ArrowHoriz11x22BitmapLeft[] PROGMEM
Definition: directionalIcons.h:21