tcMenu
wifiAndConnectionIcons8x7.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_AND_CONNECTION_ICONS_8X7
7 #define _WIFI_AND_CONNECTION_ICONS_8X7
8 
9 #include <PlatformDetermination.h>
10 
18 const uint8_t iconConnectionNone[] PROGMEM = { 0x7e, 0xab, 0xd5, 0xab, 0xd5, 0xab, 0xd5, 0x7e };
19 
20 const uint8_t iconConnected[] PROGMEM = { 0x7e, 0x81, 0x81, 0x81, 0x81, 0x81, 0x99, 0x7e };
21 
22 const uint8_t iconWifiNone[] PROGMEM = { 0x00, 0x3e, 0x41, 0x41, 0x22, 0x22, 0x14, 0x08 };
23 
24 const uint8_t iconWifiLow[] PROGMEM = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08 };
25 
26 const uint8_t iconWifiMed[] PROGMEM = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x1c, 0x22, 0x08 };
27 
28 const uint8_t iconWifiGood[] PROGMEM = { 0x00, 0x00, 0x00, 0x3e, 0x41, 0x1c, 0x22, 0x08 };
29 
30 const uint8_t iconWifiStrong[] PROGMEM = { 0x00, 0x3e, 0x41, 0x3e, 0x41, 0x1c, 0x22, 0x08 };
31 
32 
33 
38 const uint8_t* const iconsWifi[] PROGMEM = { iconWifiNone, iconWifiLow, iconWifiMed, iconWifiGood, iconWifiStrong };
39 
44 const uint8_t* const iconsConnection[] PROGMEM = { iconConnectionNone, iconConnected };
45 
46 #endif //_WIFI_AND_CONNECTION_ICONS_8X7
const uint8_t iconConnectionNone[] PROGMEM
Definition: wifiAndConnectionIcons8x7.h:18