tcMenu
Loading...
Searching...
No Matches
wifiAndConnectionIconsLCD.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 _WIFI_STOCK_CONNECTION_LCD_H
7#define _WIFI_STOCK_CONNECTION_LCD_H
8
9#include <PlatformDetermination.h>
10
17const uint8_t iconWifiNotConnected[8] PROGMEM = {
18 0b00000,
19 0b01110,
20 0b10001,
21 0b10001,
22 0b01010,
23 0b01010,
24 0b00100,
25 0
26};
27
28const uint8_t iconWifiLowSignal[8] PROGMEM = {
29 0b00000,
30 0b00000,
31 0b00000,
32 0b00000,
33 0b00000,
34 0b00000,
35 0b00100,
36 0
37};
38
39const uint8_t iconWifiMedSignal[8] PROGMEM = {
40 0b00000,
41 0b00000,
42 0b00000,
43 0b00100,
44 0b01010,
45 0b00000,
46 0b00100,
47 0
48};
49
50const uint8_t iconWifiStrongSignal[8] PROGMEM = {
51 0b00000,
52 0b01110,
53 0b10001,
54 0b00100,
55 0b01010,
56 0b00000,
57 0b00100,
58 0
59};
60
61const uint8_t iconWifiBestSignal[8] PROGMEM = {
62 0b01110,
63 0b10001,
64 0b01110,
65 0b10001,
66 0b00100,
67 0b01010,
68 0b00100,
69 0
70};
71
72const uint8_t iconConnected[8] PROGMEM = {
73 0b00001110,
74 0b00010001,
75 0b00010001,
76 0b00010001,
77 0b00010001,
78 0b00011111,
79 0b00001110,
80 0
81};
82
83const uint8_t iconDisconnected[8] PROGMEM = {
84 0b00011111,
85 0b00010011,
86 0b00010011,
87 0b00010101,
88 0b00010101,
89 0b00011001,
90 0b00011111,
91 0
92};
93
98const uint8_t* const iconsWifi[] PROGMEM = { iconWifiNotConnected, iconWifiLowSignal, iconWifiMedSignal, iconWifiStrongSignal, iconWifiBestSignal };
99
104const uint8_t* const iconsConnection[] PROGMEM = { iconDisconnected, iconConnected };
105
106#endif //_WIFI_STOCK_CONNECTION_LCD_H
const uint8_t iconWifiNotConnected[8] PROGMEM
Definition wifiAndConnectionIconsLCD.h:17