├── .gitignore ├── icons ├── sources-bmp │ ├── 01d-sun.bmp │ ├── 02d-cloud.bmp │ ├── 02d-sun.bmp │ ├── 03d-cloud.bmp │ ├── 04d-cloud.bmp │ ├── 09d-cloud.bmp │ ├── 09d-rain.bmp │ ├── 10d-cloud.bmp │ ├── 10d-sun.bmp │ ├── 11d-cloud.bmp │ ├── 13d-snow.bmp │ ├── 50d-fog.bmp │ ├── 04d-cloud-back.bmp │ └── 11d-lightning.bmp ├── 01d-sun.h ├── 02d-sun.h ├── 10d-sun.h ├── 50d-fog.h ├── 09d-rain.h ├── 13d-snow.h ├── 02d-cloud.h ├── 03d-cloud.h ├── 04d-cloud.h ├── 09d-cloud.h ├── 10d-cloud.h ├── 11d-cloud.h ├── 11d-lightning.h └── 04d-cloud-back.h ├── parameters.h.dist ├── temp.h ├── weather.h ├── network.h ├── README.md ├── esp32-weather-station.ino ├── display.h ├── Fonts ├── Cantarell_Regular_euro8pt8b.h └── Cantarell_Bold_euro9pt8b.h └── LICENSE /.gitignore: -------------------------------------------------------------------------------- 1 | parameters.h 2 | README.private.md 3 | pix 4 | -------------------------------------------------------------------------------- /icons/sources-bmp/01d-sun.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgreg/esp32-weather-station/HEAD/icons/sources-bmp/01d-sun.bmp -------------------------------------------------------------------------------- /icons/sources-bmp/02d-cloud.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgreg/esp32-weather-station/HEAD/icons/sources-bmp/02d-cloud.bmp -------------------------------------------------------------------------------- /icons/sources-bmp/02d-sun.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgreg/esp32-weather-station/HEAD/icons/sources-bmp/02d-sun.bmp -------------------------------------------------------------------------------- /icons/sources-bmp/03d-cloud.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgreg/esp32-weather-station/HEAD/icons/sources-bmp/03d-cloud.bmp -------------------------------------------------------------------------------- /icons/sources-bmp/04d-cloud.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgreg/esp32-weather-station/HEAD/icons/sources-bmp/04d-cloud.bmp -------------------------------------------------------------------------------- /icons/sources-bmp/09d-cloud.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgreg/esp32-weather-station/HEAD/icons/sources-bmp/09d-cloud.bmp -------------------------------------------------------------------------------- /icons/sources-bmp/09d-rain.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgreg/esp32-weather-station/HEAD/icons/sources-bmp/09d-rain.bmp -------------------------------------------------------------------------------- /icons/sources-bmp/10d-cloud.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgreg/esp32-weather-station/HEAD/icons/sources-bmp/10d-cloud.bmp -------------------------------------------------------------------------------- /icons/sources-bmp/10d-sun.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgreg/esp32-weather-station/HEAD/icons/sources-bmp/10d-sun.bmp -------------------------------------------------------------------------------- /icons/sources-bmp/11d-cloud.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgreg/esp32-weather-station/HEAD/icons/sources-bmp/11d-cloud.bmp -------------------------------------------------------------------------------- /icons/sources-bmp/13d-snow.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgreg/esp32-weather-station/HEAD/icons/sources-bmp/13d-snow.bmp -------------------------------------------------------------------------------- /icons/sources-bmp/50d-fog.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgreg/esp32-weather-station/HEAD/icons/sources-bmp/50d-fog.bmp -------------------------------------------------------------------------------- /icons/sources-bmp/04d-cloud-back.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgreg/esp32-weather-station/HEAD/icons/sources-bmp/04d-cloud-back.bmp -------------------------------------------------------------------------------- /icons/sources-bmp/11d-lightning.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgreg/esp32-weather-station/HEAD/icons/sources-bmp/11d-lightning.bmp -------------------------------------------------------------------------------- /parameters.h.dist: -------------------------------------------------------------------------------- 1 | #define WIFI_SSID "SSID" 2 | #define WIFI_PASSWORD "PASSWORD" 3 | 4 | #define WEATHER_URL "http://api.openweathermap.org/data/3.0/onecall?units=metric&exclude=minutely&appid={APIKEY}&lat={lat}&lon={lon}&lang=en" 5 | 6 | // to display local temperature from an Oregon Scientific sensor, uncomment line below (a RF module 433Mhz is mandatory) 7 | // #define RF_RX_PIN 5 8 | -------------------------------------------------------------------------------- /temp.h: -------------------------------------------------------------------------------- 1 | #ifdef RF_RX_PIN 2 | #include 3 | #include 4 | #endif 5 | 6 | struct LocalTemp { 7 | char temp[10]; 8 | }; 9 | 10 | #ifdef RF_RX_PIN 11 | void printReceivedData(OregonTHN128Data_t *data) { 12 | bool negativeTemperature = false; 13 | static uint32_t rxCount = 0; 14 | int16_t tempAbs; 15 | char msg[80]; 16 | 17 | // Convert to absolute temperature 18 | tempAbs = data->temperature; 19 | if (tempAbs < 0) { 20 | negativeTemperature = true; 21 | tempAbs *= -1; 22 | } 23 | snprintf_P(msg, sizeof(msg), 24 | PSTR("RX %lu: Rol: %d, Channel %d, Temp: %s%d.%d, Low batt: %d (0x%08lx)"), 25 | rxCount++, 26 | data->rollingAddress, data->channel, 27 | (negativeTemperature ? "-" : ""), (tempAbs / 10), (tempAbs % 10), data->lowBattery, 28 | data->rawData); 29 | Serial.println(msg); 30 | } 31 | 32 | void fillLocalTempFromJson(OregonTHN128Data_t *oregonData, LocalTemp* localTemp) { 33 | bool negativeTemperature = false; 34 | int16_t tempAbs = oregonData->temperature; 35 | 36 | // Convert to absolute temperature 37 | if (tempAbs < 0) { 38 | negativeTemperature = true; 39 | tempAbs *= -1; 40 | } 41 | 42 | sprintf(localTemp->temp, "%s%d\xb0", (negativeTemperature ? "-" : ""), (tempAbs / 10)); 43 | } 44 | #endif 45 | -------------------------------------------------------------------------------- /weather.h: -------------------------------------------------------------------------------- 1 | struct Weather { 2 | char iconH1[10]; 3 | char tempH1[10]; 4 | char feelsLikeH1[10]; 5 | char humidityH1[6]; 6 | 7 | char iconD[10]; 8 | char tempMinD[10]; 9 | char tempMaxD[10]; 10 | char humidityD[6]; 11 | 12 | char iconD1[10]; 13 | char tempMinD1[10]; 14 | char tempMaxD1[10]; 15 | char humidityD1[6]; 16 | 17 | char updated[20]; 18 | }; 19 | 20 | void fillWeatherFromJson(Weather* weather) { 21 | sprintf(weather->iconH1, "%s", (const char*) weatherJson["hourly"][1]["weather"][0]["icon"]); 22 | sprintf(weather->tempH1, "%2i\xb0", (int) round((double) weatherJson["hourly"][1]["temp"])); 23 | sprintf(weather->feelsLikeH1, "%2i\xb0", (int) round((double) weatherJson["hourly"][1]["feels_like"])); 24 | sprintf(weather->humidityH1, "%3i %%", (int) weatherJson["hourly"][1]["humidity"]); 25 | 26 | sprintf(weather->iconD, "%s", (const char*) weatherJson["daily"][0]["weather"][0]["icon"]); 27 | sprintf(weather->tempMinD, "%2i\xb0", (int) round((double) weatherJson["daily"][0]["temp"]["min"])); 28 | sprintf(weather->tempMaxD, "%2i\xb0", (int) round((double) weatherJson["daily"][0]["temp"]["max"])); 29 | sprintf(weather->humidityD, "%3i %%", (int) weatherJson["daily"][0]["humidity"]); 30 | 31 | sprintf(weather->iconD1, "%s", (const char*) weatherJson["daily"][1]["weather"][0]["icon"]); 32 | sprintf(weather->tempMinD1, "%2i\xb0", (int) round((double) weatherJson["daily"][1]["temp"]["min"])); 33 | sprintf(weather->tempMaxD1, "%2i\xb0", (int) round((double) weatherJson["daily"][1]["temp"]["max"])); 34 | sprintf(weather->humidityD1, "%3i %%", (int) weatherJson["daily"][1]["humidity"]); 35 | 36 | int timezone_offset = (int) weatherJson["timezone_offset"]; 37 | int dt = (int) weatherJson["current"]["dt"]; 38 | int t = dt + timezone_offset; 39 | sprintf(weather->updated, "MAJ : %02d/%02d %02d:%02d", day(t), month(t), hour(t), minute(t)); 40 | } 41 | -------------------------------------------------------------------------------- /network.h: -------------------------------------------------------------------------------- 1 | boolean connectToWifi() { 2 | Serial.print("\nconnecting to "); 3 | Serial.println(WIFI_SSID); 4 | 5 | WiFi.mode(WIFI_STA); 6 | WiFi.begin(WIFI_SSID, WIFI_PASSWORD); 7 | unsigned int retries = 50; 8 | while (WiFi.status() != WL_CONNECTED && (retries-- > 0)) { 9 | Serial.print("."); 10 | delay(1000); 11 | } 12 | if (WiFi.status() != WL_CONNECTED) { 13 | Serial.println("\nWifi connection failed"); 14 | return false; 15 | } 16 | Serial.println(""); 17 | Serial.println("wifi connected"); 18 | Serial.print("IP address: "); 19 | Serial.println(WiFi.localIP()); 20 | Serial.print("DNS: "); 21 | Serial.println(WiFi.dnsIP(0)); 22 | Serial.println(""); 23 | return true; 24 | } 25 | 26 | boolean disconnectFromWifi() { 27 | WiFi.disconnect(); 28 | } 29 | 30 | boolean getWeatherJSON(const char* url) { 31 | boolean success = false; 32 | 33 | if ((WiFi.status() == WL_CONNECTED)) { 34 | 35 | Serial.print("Connecting to "); 36 | Serial.println(url); 37 | 38 | HTTPClient http; 39 | http.begin(url); 40 | int httpCode = http.GET(); 41 | Serial.print("HTTP code : "); 42 | Serial.println(httpCode); 43 | if (httpCode > 0) { 44 | weatherJson = JSON.parse(http.getString()); 45 | 46 | if (JSON.typeof(weatherJson) == "undefined") { 47 | Serial.println("Parsing weatherJson input failed!"); 48 | } else { 49 | success = true; 50 | } 51 | } 52 | http.end(); 53 | } 54 | return success; 55 | } 56 | 57 | 58 | boolean getLocalJSON(const char* url, const char* authorization) { 59 | boolean success = false; 60 | 61 | WiFiClientSecure secureClient; 62 | secureClient.setTimeout(20000); 63 | secureClient.setInsecure(); 64 | 65 | if ((WiFi.status() == WL_CONNECTED)) { 66 | 67 | Serial.print("Connecting to "); 68 | Serial.println(url); 69 | 70 | HTTPClient http; 71 | http.begin(url); 72 | http.addHeader("Authorization", authorization); 73 | int httpCode = http.GET(); 74 | Serial.print("HTTP code : "); 75 | Serial.println(httpCode); 76 | if (httpCode > 0) { 77 | localJson = JSON.parse(http.getString()); 78 | 79 | if (JSON.typeof(localJson) == "undefined") { 80 | Serial.println("Parsing localJson input failed!"); 81 | } else { 82 | success = true; 83 | } 84 | } 85 | http.end(); 86 | } 87 | return success; 88 | } 89 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ESP32 Weather Station 2 | 3 | That project is a weather station (getting data from openweathermap.org) displayed on an e-ink screen. 4 | 5 | The main advantage of using an eink screen is that display stays, even if esp32 is powered down. 6 | So the ESP32 is waking up, fetch weather data, update screen and sleeps for one hour. 7 | Also, refresh is stopped from around midnight to 6 a.m. 8 | 9 | Here’s the [hackaday project page](https://hackaday.io/project/171910-esp32-weather-station) including pictures. 10 | 11 | Hardware components are : 12 | 13 | * [Waveshare Universal e-Paper Raw Panel Driver Board ESP32 WiFi/Bluetooth control](https://www.ebay.fr/itm/Waveshare-2-7inch-E-Ink-Raw-Display-Panel-Three-Color-e-paper-SPI-Interface/253103850269?ssPageName=STRK%3AMEBIDX%3AIT&_trksid=p2060353.m2749.l2649) 14 | * [2.7inch e-Paper (B) 264x176, raw display, three-color, SPI interface](https://www.ebay.fr/itm/Waveshare-Universal-e-Paper-Raw-Panel-Driver-Board-ESP32-WiFi-Bluetooth-control/254038211273?ssPageName=STRK%3AMEBIDX%3AIT&_trksid=p2060353.m2749.l2649) 15 | 16 | 17 | Optionally, it can also fetch local temperature from an Oregon Scientific sensor using an RF module 433Mhz connected to PIN 5 (and update parameters.h by uncommenting a line). Thanks to wonderful [ErriezOregonTHN128](https://github.com/Erriez/ErriezOregonTHN128) library ! 18 | 19 | 20 | ## Arduino env 21 | 22 | use Board "ESP32 Dev Module" to build with Arduino IDE. 23 | 24 | Use GxEPD2 in version 1.4.9 (compilation error for that screen with version 1.5.x) 25 | 26 | Copy `parameters.h.dist` to `parameters.h` and update it with your wifi settings and update the URL (you need to change lat/lng and set your OpenWeatherMap API token). 27 | 28 | I’m using the nice [GxEPD2](https://github.com/ZinggJM/GxEPD2) library from [ZinggJM](https://github.com/ZinggJM). Thanks 29 | 30 | ## Weather API 31 | 32 | * https://openweathermap.org/api/one-call-api 33 | * create an account and an API KEY 34 | 35 | ## Icons 36 | 37 | Icons are [official icons from OpenWeatherMap](https://openweathermap.org/weather-conditions#How-to-get-icon-URL). 38 | 39 | To be able to open them correctly in GxEPD2, I convert them using [LCD Assistant](http://en.radzio.dxp.pl/bitmap_converter/) with byte orientation set to horizontal and big endian settings. 40 | It can be opened via wine (by adding 32 bits architecture). 41 | 42 | ## Fonts 43 | 44 | Fonts are from [Adafruit-GFX-Library-fontconvert](https://github.com/paulgreg/Adafruit-GFX-Library-fontconvert) project. 45 | 46 | ## HTTP request & JSON parsing 47 | 48 | * https://randomnerdtutorials.com/esp32-http-get-post-arduino/ 49 | 50 | ## HTTPS request 51 | 52 | * https://techtutorialsx.com/2017/11/18/esp32-arduino-https-get-request/ 53 | -------------------------------------------------------------------------------- /esp32-weather-station.ino: -------------------------------------------------------------------------------- 1 | // use Board "ESP32 Dev Module" to build with Arduino IDE 2 | 3 | #include 4 | #include 5 | 6 | GxEPD2_3C display(GxEPD2_270c(/*CS=*/ 15, /*DC=*/ 27, /*RST=*/ 26, /*BUSY=*/ 25)); 7 | 8 | // Screen used 9 | #include "bitmaps/Bitmaps3c176x264.h" // 2.7" b/w/r 10 | 11 | #include 12 | #include 13 | #include 14 | #include 15 | 16 | JSONVar weatherJson, localJson; 17 | 18 | #include "parameters.h" 19 | #include "temp.h" 20 | #include "weather.h" 21 | #include "display.h" 22 | #include "network.h" 23 | 24 | const uint64_t SECOND = 1000; 25 | const uint64_t MINUTE = 60 * SECOND; 26 | const uint64_t HOUR = 60 * MINUTE; 27 | const uint64_t MICRO_SEC_TO_MILLI_SEC_FACTOR = 1000; 28 | 29 | void setup() { 30 | Serial.begin(115200); 31 | Serial.setTimeout(2000); 32 | while(!Serial) {} 33 | Serial.println("Weather station"); 34 | 35 | display.init(115200); 36 | // *** special handling for Waveshare ESP32 Driver board *** // 37 | SPI.end(); // release standard SPI pins, e.g. SCK(18), MISO(19), MOSI(23), SS(5) 38 | //SPI: void begin(int8_t sck=-1, int8_t miso=-1, int8_t mosi=-1, int8_t ss=-1); 39 | SPI.begin(13, 12, 14, 15); // map and init SPI pins SCK(13), MISO(12), MOSI(14), SS(15) 40 | // *** end of special handling for Waveshare ESP32 Driver board *** // 41 | 42 | print_wakeup_reason(); 43 | 44 | display.setRotation(1); 45 | 46 | #ifdef RF_RX_PIN 47 | OregonTHN128_RxBegin(RF_RX_PIN); 48 | #endif 49 | } 50 | 51 | void loop() { 52 | uint64_t sleepTime = HOUR; 53 | 54 | if (!connectToWifi()) { 55 | displayError("Error: WIFI"); 56 | } else { 57 | uint64_t retries = 5; 58 | boolean jsonParsed = false; 59 | while(!jsonParsed && (retries-- > 0)) { 60 | delay(1000); 61 | jsonParsed = getWeatherJSON(WEATHER_URL); 62 | } 63 | if (!jsonParsed) { 64 | displayError("Error:JSON"); 65 | } else { 66 | Weather weather; 67 | fillWeatherFromJson(&weather); 68 | displayWeather(&weather); 69 | 70 | if (weather.updated[0] == '0' && weather.updated[1] == '0') sleepTime = HOUR * 6; // sleep for the night 71 | 72 | #ifdef RF_RX_PIN 73 | // get local temperature from oregon sensor 74 | retries = 500000000; 75 | boolean localTemp = false; 76 | OregonTHN128Data_t oregonData; 77 | 78 | Serial.println("Try to fetch local temp"); 79 | while(!localTemp && (retries-- > 0)) { 80 | if (OregonTHN128_Available()) { 81 | Serial.println("found"); 82 | Serial.println(retries); 83 | OregonTHN128_Read(&oregonData); 84 | printReceivedData(&oregonData); 85 | localTemp = true; 86 | // OregonTHN128_RxEnable(); 87 | } 88 | } 89 | Serial.println("End fetch local temp loop"); 90 | 91 | if (localTemp) { 92 | LocalTemp localTemp; 93 | fillLocalTempFromJson(&oregonData, &localTemp); 94 | displayLocalTemp(&localTemp); 95 | } 96 | #endif 97 | } 98 | 99 | // disconnectFromWifi(); 100 | } 101 | 102 | sleep(sleepTime); 103 | 104 | Serial.println("After sleep, that line should never be printed"); 105 | delay(HOUR); 106 | } 107 | 108 | void sleep(uint64_t sleepTime) { 109 | Serial.print("Will sleep "); 110 | Serial.println(sleepTime); 111 | delay(SECOND); 112 | Serial.flush(); 113 | display.powerOff(); 114 | esp_sleep_enable_timer_wakeup((uint64_t) sleepTime * MICRO_SEC_TO_MILLI_SEC_FACTOR); 115 | esp_deep_sleep_start(); 116 | delay(MINUTE); 117 | } 118 | 119 | void print_wakeup_reason(){ 120 | esp_sleep_wakeup_cause_t wakeup_reason; 121 | wakeup_reason = esp_sleep_get_wakeup_cause(); 122 | switch(wakeup_reason) 123 | { 124 | case 1 : Serial.println("Wakeup caused by external signal using RTC_IO"); break; 125 | case 2 : Serial.println("Wakeup caused by external signal using RTC_CNTL"); break; 126 | case 3 : Serial.println("Wakeup caused by timer"); break; 127 | case 4 : { 128 | Serial.print("Wakeup caused by touchpad pin "); 129 | Serial.println(esp_sleep_get_touchpad_wakeup_status()); 130 | break; 131 | } 132 | case 5 : Serial.println("Wakeup caused by ULP program"); break; 133 | default : Serial.println("Wakeup was not caused by deep sleep"); break; 134 | } 135 | } 136 | -------------------------------------------------------------------------------- /icons/01d-sun.h: -------------------------------------------------------------------------------- 1 | #define icon_01d_sun_width 80 2 | #define icon_01d_sun_height 80 3 | 4 | #include 5 | 6 | const unsigned char PROGMEM icon_01d_sun_bits[] = { 7 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 8 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 9 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 10 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 11 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 12 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 13 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 14 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 15 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 16 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 17 | 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xFF, 0xFF, 18 | 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0xFF, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 19 | 0x00, 0x1F, 0xFF, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFF, 0xFF, 0xFE, 0x00, 20 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFF, 0xFF, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 21 | 0xFF, 0xFF, 0xFF, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0xFF, 0xFF, 0xE0, 0x00, 0x00, 22 | 0x00, 0x00, 0x03, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x07, 0xFF, 0xFF, 0xFF, 23 | 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFF, 0xFF, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 24 | 0x1F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFC, 25 | 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFF, 26 | 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 27 | 0x00, 0x00, 0x7F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFF, 0xFF, 0xFF, 28 | 0xFF, 0xFF, 0x80, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x80, 0x00, 0x00, 0x00, 29 | 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x80, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 30 | 0x80, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x80, 0x00, 0x00, 0x00, 0xFF, 0xFF, 31 | 0xFF, 0xFF, 0xFF, 0xFF, 0x80, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x80, 0x00, 32 | 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x80, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 33 | 0xFF, 0xFF, 0x80, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x80, 0x00, 0x00, 0x00, 34 | 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x80, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 35 | 0x80, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x80, 0x00, 0x00, 0x00, 0xFF, 0xFF, 36 | 0xFF, 0xFF, 0xFF, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x7F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x80, 0x00, 37 | 0x00, 0x00, 0x7F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFF, 0xFF, 0xFF, 38 | 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 39 | 0x3F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFC, 40 | 0x00, 0x00, 0x00, 0x00, 0x1F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 41 | 0xFF, 0xFF, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFF, 0xFF, 0xFF, 0xF8, 0x00, 0x00, 42 | 0x00, 0x00, 0x03, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0xFF, 43 | 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x01, 0xFF, 0xFF, 0xFF, 0xFF, 0xC0, 0x00, 0x00, 0x00, 0x00, 44 | 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFF, 0xFF, 0xFF, 0x00, 45 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xFF, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 46 | 0xFF, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x00, 47 | 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 48 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 49 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 50 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 51 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 52 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 53 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 54 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 55 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 56 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 57 | }; 58 | -------------------------------------------------------------------------------- /icons/02d-sun.h: -------------------------------------------------------------------------------- 1 | #define icon_02d_sun_width 80 2 | #define icon_02d_sun_height 80 3 | 4 | #include 5 | 6 | const unsigned char PROGMEM icon_02d_sun_bits[] = { 7 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 8 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 9 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 10 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 11 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 12 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 13 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 14 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 15 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 16 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 17 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 18 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 19 | 0x00, 0x00, 0x00, 0x00, 0x3F, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFE, 20 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 21 | 0x00, 0x07, 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xFF, 0xFF, 0xF0, 0x00, 22 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFF, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 23 | 0xFF, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFF, 0xFF, 0xFC, 0x00, 0x00, 0x00, 24 | 0x00, 0x00, 0x00, 0x7F, 0xFF, 0xFF, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFF, 0xFF, 25 | 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 26 | 0x00, 0x0F, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFF, 0xFF, 0x80, 27 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0xFF, 0xFF, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 28 | 0xFF, 0xFF, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x8F, 0xFF, 0xFF, 0x80, 0x00, 0x00, 29 | 0x00, 0x00, 0x00, 0x06, 0x03, 0xFF, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 30 | 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 31 | 0x00, 0x00, 0x00, 0x7F, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFF, 0x80, 32 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 33 | 0x00, 0x3F, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFF, 0x00, 0x00, 0x00, 34 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 35 | 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 36 | 0x00, 0x00, 0x00, 0x00, 0x7E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0x00, 37 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 38 | 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 39 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 40 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 41 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 42 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 43 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 44 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 45 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 46 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 47 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 48 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 49 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 50 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 51 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 52 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 53 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 54 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 55 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 56 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 57 | }; 58 | -------------------------------------------------------------------------------- /icons/10d-sun.h: -------------------------------------------------------------------------------- 1 | #define icon_10d_sun_width 80 2 | #define icon_10d_sun_height 80 3 | 4 | #include 5 | 6 | const unsigned char PROGMEM icon_10d_sun_bits[] = { 7 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 8 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 9 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 10 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 11 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 12 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 13 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 14 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 15 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 16 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7E, 0x00, 0x00, 0x00, 17 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 18 | 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 19 | 0x00, 0x00, 0x00, 0x3F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFF, 0xFE, 20 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 21 | 0x00, 0x7F, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFF, 0xFF, 0x80, 0x00, 22 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xFF, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 23 | 0xFF, 0xFF, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFF, 0xC0, 0x00, 0x00, 0x00, 24 | 0x00, 0x00, 0x00, 0x0F, 0x7F, 0xFF, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1F, 0xFF, 25 | 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 26 | 0x00, 0x00, 0x07, 0xFF, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xC0, 0x00, 27 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 28 | 0x03, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0x80, 0x00, 0x00, 0x00, 29 | 0x00, 0x00, 0x00, 0x00, 0x02, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 30 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 31 | 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 32 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 33 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 34 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 35 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 36 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 37 | 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 38 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 39 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 40 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 41 | 0x1C, 0x1C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x00, 42 | 0x00, 0x00, 0x00, 0x38, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x38, 0x00, 43 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 44 | 0x00, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 45 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xE0, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 46 | 0xE0, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC0, 0xE0, 0x00, 0x00, 0x00, 0x00, 47 | 0x00, 0x00, 0x00, 0x00, 0x00, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 48 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 49 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 50 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 51 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 52 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 53 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 54 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 55 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 56 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 57 | }; 58 | -------------------------------------------------------------------------------- /icons/50d-fog.h: -------------------------------------------------------------------------------- 1 | #define icon_50d_fog_width 80 2 | #define icon_50d_fog_height 80 3 | 4 | #include 5 | 6 | const unsigned char PROGMEM icon_50d_fog_bits[] = { 7 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 8 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 9 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 10 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 11 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 12 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 13 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 14 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 15 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 16 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 17 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 18 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 19 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 20 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 21 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 22 | 0x00, 0x00, 0x00, 0x07, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFE, 23 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 24 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 25 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFF, 26 | 0xFF, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xC0, 0x00, 0x00, 0x00, 27 | 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 28 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 29 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFF, 0xFF, 0xFF, 30 | 0xC0, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xFF, 0xFF, 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x1F, 31 | 0xFF, 0xFF, 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 32 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 33 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x07, 34 | 0xFF, 0xFF, 0xFF, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x07, 0xFF, 0xFF, 0xFF, 0xFF, 0xF8, 0x00, 35 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 36 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 37 | 0x00, 0x00, 0x03, 0xFF, 0xFF, 0xFF, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x07, 0xFF, 0xFF, 0xFF, 38 | 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x07, 0xFF, 0xFF, 0xFF, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 39 | 0x01, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 40 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 41 | 0xFF, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xFF, 0xFF, 0xF8, 0x00, 0x00, 0x00, 42 | 0x00, 0x00, 0x00, 0x1F, 0xFF, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 43 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 44 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 45 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 46 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 47 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 48 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 49 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 50 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 51 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 52 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 53 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 54 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 55 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 56 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 57 | }; 58 | -------------------------------------------------------------------------------- /icons/09d-rain.h: -------------------------------------------------------------------------------- 1 | #define icon_09d_rain_width 80 2 | #define icon_09d_rain_height 80 3 | 4 | #include 5 | 6 | const unsigned char PROGMEM icon_09d_rain_bits[] = { 7 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 8 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 9 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 10 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 11 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 12 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 13 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 14 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 15 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 16 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0x00, 0x00, 0x00, 0x00, 17 | 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xFF, 18 | 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 19 | 0x00, 0x00, 0x07, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0xFF, 0xF8, 0x00, 20 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 21 | 0x01, 0xFF, 0xFB, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xF0, 0x00, 0x00, 22 | 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 23 | 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 24 | 0x00, 0x00, 0x00, 0x3F, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0xFF, 0xFE, 25 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFF, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 26 | 0x00, 0x00, 0x1F, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xFF, 0xE0, 0x00, 27 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 28 | 0x0F, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xF0, 0x00, 0x00, 0x00, 29 | 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 30 | 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 31 | 0x00, 0x00, 0x00, 0x3F, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0x80, 0x00, 32 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 33 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 34 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 35 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 36 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 37 | 0x00, 0x00, 0x00, 0x1C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0x00, 0x00, 38 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 39 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 40 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 41 | 0x70, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xE0, 0xF0, 0x20, 0x00, 0x00, 0x00, 0x00, 42 | 0x00, 0x00, 0x00, 0xE0, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE1, 0xE0, 0x00, 43 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xC0, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 44 | 0x01, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x80, 0x00, 0x00, 45 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x83, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 46 | 0x83, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 47 | 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 48 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 49 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 50 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 51 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 52 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 53 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 54 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 55 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 56 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 57 | }; 58 | -------------------------------------------------------------------------------- /icons/13d-snow.h: -------------------------------------------------------------------------------- 1 | #define icon_13d_snow_width 80 2 | #define icon_13d_snow_height 80 3 | 4 | #include 5 | 6 | const unsigned char PROGMEM icon_13d_snow_bits[] = { 7 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 8 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 9 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 10 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 11 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 12 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 13 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 14 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 15 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 16 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 17 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 18 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 19 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 20 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 21 | 0x63, 0xE6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF3, 0xCF, 0x00, 0x00, 0x00, 0x00, 22 | 0x00, 0x00, 0x00, 0x00, 0xFB, 0xDF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0C, 0xFF, 0xFF, 23 | 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 0x7F, 0xFE, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 24 | 0x00, 0x1E, 0x3F, 0xFC, 0x7C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0x1F, 0xF8, 0x78, 0x00, 25 | 0x00, 0x00, 0x00, 0x00, 0x03, 0x9F, 0x0F, 0xF0, 0xF9, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 26 | 0x07, 0xE0, 0xFB, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x07, 0xFF, 0x83, 0xE0, 0xFF, 0xE0, 0x00, 0x00, 27 | 0x00, 0x00, 0x03, 0xFF, 0x83, 0xE1, 0xFF, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x01, 0xFF, 0x83, 0xE1, 28 | 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xC7, 0xE3, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 29 | 0x03, 0xFF, 0xFF, 0xFF, 0xFF, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x07, 0xFF, 0xFF, 0xFF, 0xFF, 0xE0, 30 | 0x00, 0x00, 0x00, 0x00, 0x07, 0xFF, 0xFF, 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x07, 0xFC, 31 | 0xFE, 0x7F, 0x1F, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x7C, 0x3E, 0x01, 0xE0, 0x00, 0x00, 32 | 0x00, 0x00, 0x00, 0x00, 0x7C, 0x3E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x7C, 0x3E, 33 | 0x00, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x07, 0xF8, 0xFE, 0x7F, 0x0F, 0xE0, 0x00, 0x00, 0x00, 0x00, 34 | 0x07, 0xFF, 0xFF, 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x07, 0xFF, 0xFF, 0xFF, 0xFF, 0xE0, 35 | 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0xFF, 0xFF, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 36 | 0xC7, 0xE3, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xFF, 0x83, 0xE1, 0xFF, 0x80, 0x00, 0x00, 37 | 0x00, 0x00, 0x03, 0xFF, 0x83, 0xE1, 0xFF, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x07, 0xFF, 0x83, 0xE0, 38 | 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x07, 0xFF, 0x07, 0xE0, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x00, 39 | 0x03, 0xDF, 0x0F, 0xF0, 0xF9, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0x1F, 0xF8, 0xF8, 0x00, 40 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0x3F, 0xFC, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 41 | 0x7F, 0xFE, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 0xFF, 0xFF, 0x38, 0x00, 0x00, 0x00, 42 | 0x00, 0x00, 0x00, 0x00, 0xFB, 0xDF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF3, 0xCF, 43 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x73, 0xE7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 44 | 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 45 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 46 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 47 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 48 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 49 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 50 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 51 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 52 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 53 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 54 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 55 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 56 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 57 | }; 58 | -------------------------------------------------------------------------------- /icons/02d-cloud.h: -------------------------------------------------------------------------------- 1 | #define icon_02d_cloud_width 80 2 | #define icon_02d_cloud_height 80 3 | 4 | #include 5 | 6 | const unsigned char PROGMEM icon_02d_cloud_bits[] = { 7 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 8 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 9 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 10 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 11 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 12 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 13 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 14 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 15 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 16 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 17 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 18 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 19 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 20 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 21 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 22 | 0x00, 0x00, 0x00, 0x07, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xFE, 0x00, 23 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 24 | 0x00, 0xFF, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xFF, 0xFF, 0xC0, 0x00, 0x00, 25 | 0x00, 0x00, 0x00, 0x00, 0x01, 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 26 | 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0xFF, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, 27 | 0x00, 0x00, 0x07, 0xFF, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0xFF, 0xFF, 0xF8, 28 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 29 | 0x0F, 0xFF, 0xFF, 0xF8, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFF, 0xFB, 0xFE, 0x00, 30 | 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 31 | 0xFF, 0xFF, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x80, 0x00, 0x00, 32 | 0x00, 0x03, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFF, 0xFF, 0xFF, 33 | 0xFF, 0xC0, 0x00, 0x00, 0x00, 0x1F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xC0, 0x00, 0x00, 0x00, 0x3F, 34 | 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x7F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x80, 35 | 0x00, 0x00, 0x00, 0x7F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 36 | 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x80, 0x00, 37 | 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xC0, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 38 | 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0x00, 0x00, 0xFF, 39 | 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 40 | 0xF8, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF8, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 41 | 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0x00, 0x00, 0x7F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0x00, 42 | 0x00, 0x7F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0x00, 0x00, 0x3F, 0xFF, 0xFF, 0xFF, 0xFF, 43 | 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x1F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x0F, 44 | 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xC0, 0x00, 0x00, 0x07, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 45 | 0x80, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 46 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 47 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 48 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 49 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 50 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 51 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 52 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 53 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 54 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 55 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 56 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 57 | }; 58 | -------------------------------------------------------------------------------- /icons/03d-cloud.h: -------------------------------------------------------------------------------- 1 | #define icon_03d_cloud_width 80 2 | #define icon_03d_cloud_height 80 3 | 4 | #include 5 | 6 | const unsigned char PROGMEM icon_03d_cloud_bits[] = { 7 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 8 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 9 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 10 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 11 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 12 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 13 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 14 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 15 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 16 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 17 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 18 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 19 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 20 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 21 | 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0xFF, 0xC0, 0x00, 0x00, 0x00, 0x00, 22 | 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xFF, 0xF8, 23 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 24 | 0x00, 0x7F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFE, 0x00, 0x00, 25 | 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xFF, 26 | 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xFF, 0xFF, 0xFF, 0x0C, 0x00, 0x00, 0x00, 27 | 0x00, 0x00, 0x01, 0xFF, 0xFF, 0xFF, 0x7F, 0x80, 0x00, 0x00, 0x00, 0x00, 0x01, 0xFF, 0xFF, 0xFF, 28 | 0xFF, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x01, 0xFF, 0xFF, 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x00, 29 | 0x01, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x0D, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 30 | 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFF, 0xFF, 0xFF, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x01, 0xFF, 0xFF, 31 | 0xFF, 0xFF, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF8, 0x00, 0x00, 32 | 0x00, 0x07, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFF, 0xFF, 0xFF, 33 | 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xC0, 0x00, 0x00, 0x1F, 34 | 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x1F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 35 | 0xF8, 0x00, 0x00, 0x1F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF8, 0x00, 0x00, 0x1F, 0xFF, 0xFF, 36 | 0xFF, 0xFF, 0xFF, 0xFF, 0xFC, 0x00, 0x00, 0x1F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFC, 0x00, 37 | 0x00, 0x1F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFC, 0x00, 0x00, 0x1F, 0xFF, 0xFF, 0xFF, 0xFF, 38 | 0xFF, 0xFF, 0xFC, 0x00, 0x00, 0x1F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFC, 0x00, 0x00, 0x1F, 39 | 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFC, 0x00, 0x00, 0x0F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 40 | 0xFC, 0x00, 0x00, 0x0F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFC, 0x00, 0x00, 0x07, 0xFF, 0xFF, 41 | 0xFF, 0xFF, 0xFF, 0xFF, 0xFC, 0x00, 0x00, 0x07, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF8, 0x00, 42 | 0x00, 0x03, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0x00, 0x00, 0x01, 0xFF, 0xFF, 0xFF, 0xFF, 43 | 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x7F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xC0, 0x00, 0x00, 0x00, 44 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 45 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 46 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 47 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 48 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 49 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 50 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 51 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 52 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 53 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 54 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 55 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 56 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 57 | }; 58 | -------------------------------------------------------------------------------- /icons/04d-cloud.h: -------------------------------------------------------------------------------- 1 | #define icon_04d_cloud_width 80 2 | #define icon_04d_cloud_height 80 3 | 4 | #include 5 | 6 | const unsigned char PROGMEM icon_04d_cloud_bits[] = { 7 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 8 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 9 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 10 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 11 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 12 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 13 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 14 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 15 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 16 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 17 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 18 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 19 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 20 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 21 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 22 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xE0, 0x00, 23 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 24 | 0x01, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFE, 0x00, 0x00, 0x00, 25 | 0x00, 0x00, 0x00, 0x00, 0x07, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 26 | 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xFF, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 27 | 0x00, 0x00, 0x1F, 0xFF, 0xFF, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xFF, 0xFF, 0xC0, 28 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 29 | 0x3F, 0xFF, 0xFF, 0xE7, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFF, 0xFF, 0xEF, 0xF0, 0x00, 30 | 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFF, 0xFF, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFF, 31 | 0xFF, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x01, 0xBF, 0xFF, 0xFF, 0xFF, 0xFE, 0x00, 0x00, 0x00, 32 | 0x00, 0x0F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xFF, 0xFF, 0xFF, 0xFF, 33 | 0xFE, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFE, 0x00, 0x00, 0x00, 0x00, 0xFF, 34 | 0xFF, 0xFF, 0xFF, 0xFF, 0xFE, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFE, 0x00, 35 | 0x00, 0x00, 0x01, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0x00, 0x00, 0x01, 0xFF, 0xFF, 0xFF, 36 | 0xFF, 0xFF, 0xFF, 0xFC, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFE, 0x00, 0x00, 37 | 0x03, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 38 | 0xFF, 0xFF, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x80, 0x00, 0x03, 0xFF, 39 | 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xC0, 0x00, 0x03, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 40 | 0xC0, 0x00, 0x03, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xC0, 0x00, 0x03, 0xFF, 0xFF, 0xFF, 41 | 0xFF, 0xFF, 0xFF, 0xFF, 0xC0, 0x00, 0x01, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xC0, 0x00, 42 | 0x01, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x80, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 43 | 0xFF, 0xFF, 0x80, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x7F, 44 | 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFE, 0x00, 0x00, 0x00, 0x3F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFE, 45 | 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 46 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 47 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 48 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 49 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 50 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 51 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 52 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 53 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 54 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 55 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 56 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 57 | }; 58 | -------------------------------------------------------------------------------- /icons/09d-cloud.h: -------------------------------------------------------------------------------- 1 | #define icon_09d_cloud_width 80 2 | #define icon_09d_cloud_height 80 3 | 4 | #include 5 | 6 | const unsigned char PROGMEM icon_09d_cloud_bits[] = { 7 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 8 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 9 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 10 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 11 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 12 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 13 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 14 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 15 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 16 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 17 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 18 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 19 | 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xF0, 0x00, 0x00, 0x00, 20 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 21 | 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 22 | 0x00, 0x00, 0x01, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x80, 23 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 24 | 0x03, 0xFF, 0xFF, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0xDF, 0x00, 0x00, 25 | 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0xFF, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 26 | 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xFF, 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x00, 27 | 0x00, 0x00, 0x7F, 0xFF, 0xFF, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x01, 0xFF, 0xFF, 0xFF, 0xFF, 28 | 0xF0, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x07, 29 | 0xFF, 0xFF, 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x07, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 30 | 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFF, 31 | 0xFF, 0xFF, 0xFF, 0xC0, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xE0, 0x00, 0x00, 32 | 0x00, 0x0F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFF, 0xFF, 0xFF, 33 | 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x0F, 34 | 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 35 | 0x00, 0x00, 0x00, 0x07, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 36 | 0xFF, 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x01, 0xFF, 0xE7, 0xFF, 0xFF, 0xFF, 0xC0, 0x00, 0x00, 37 | 0x00, 0x00, 0xFF, 0xE3, 0xFF, 0xFF, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xC3, 0xFF, 0xFF, 38 | 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 39 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 40 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 41 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 42 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 43 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 44 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 45 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 46 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 47 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 48 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 49 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 50 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 51 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 52 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 53 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 54 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 55 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 56 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 57 | }; 58 | -------------------------------------------------------------------------------- /icons/10d-cloud.h: -------------------------------------------------------------------------------- 1 | #define icon_10d_cloud_width 80 2 | #define icon_10d_cloud_height 80 3 | 4 | #include 5 | 6 | const unsigned char PROGMEM icon_10d_cloud_bits[] = { 7 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 8 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 9 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 10 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 11 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 12 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 13 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 14 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 15 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 16 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 17 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 18 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 19 | 0x00, 0x01, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0xFE, 0x00, 0x00, 0x00, 20 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 21 | 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFF, 0xC0, 0x00, 0x00, 0x00, 0x00, 22 | 0x00, 0x00, 0x00, 0x7F, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xE0, 23 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 24 | 0x00, 0xFF, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xF7, 0xE0, 0x00, 25 | 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 26 | 0xFF, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFF, 0xFF, 0xFC, 0x00, 0x00, 0x00, 27 | 0x00, 0x00, 0x3F, 0xFF, 0xFF, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFF, 0xFF, 0xFF, 28 | 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x01, 29 | 0xFF, 0xFF, 0xFF, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x01, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xE0, 30 | 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 31 | 0xFF, 0xFF, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF8, 0x00, 0x00, 32 | 0x00, 0x03, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0xFF, 0xFF, 33 | 0xFF, 0xFE, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFE, 0x00, 0x00, 0x00, 0x03, 34 | 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFE, 0x00, 0x00, 0x00, 0x01, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFC, 35 | 0x00, 0x00, 0x00, 0x01, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 36 | 0xFF, 0xFF, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xF8, 0xFF, 0xFF, 0xFF, 0xF8, 0x00, 0x00, 37 | 0x00, 0x00, 0x3F, 0xF8, 0xFF, 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xF0, 0xFF, 0xFF, 38 | 0xFF, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 39 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 40 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 41 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 42 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 43 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 44 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 45 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 46 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 47 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 48 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 49 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 50 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 51 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 52 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 53 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 54 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 55 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 56 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 57 | }; 58 | -------------------------------------------------------------------------------- /icons/11d-cloud.h: -------------------------------------------------------------------------------- 1 | #define icon_11d_cloud_width 80 2 | #define icon_11d_cloud_height 80 3 | 4 | #include 5 | 6 | const unsigned char PROGMEM icon_11d_cloud_bits[] = { 7 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 8 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 9 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 10 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 11 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 12 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 13 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 14 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 15 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 16 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 17 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 18 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 19 | 0x00, 0x7F, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF0, 0x00, 0x00, 0x00, 20 | 0x00, 0x00, 0x00, 0x00, 0x01, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0xFF, 21 | 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 22 | 0x00, 0x00, 0x0F, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xFF, 0xFF, 0x80, 23 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xFF, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 24 | 0x1F, 0xFF, 0xFF, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xFF, 0xFF, 0xC7, 0x80, 0x00, 25 | 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFF, 0xFF, 0xDF, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFF, 26 | 0xFF, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFF, 0xFF, 0xFF, 0xF8, 0x00, 0x00, 0x00, 27 | 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x07, 0xFF, 0xFF, 0xFF, 0xFF, 28 | 0xFC, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x3F, 29 | 0xFF, 0xFF, 0xFF, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFC, 0x00, 30 | 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 31 | 0xFF, 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x01, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0x00, 0x00, 32 | 0x01, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF8, 0x00, 0x00, 0x01, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 33 | 0xFF, 0xFC, 0x00, 0x00, 0x01, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFE, 0x00, 0x00, 0x01, 0xFF, 34 | 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFE, 0x00, 0x00, 0x01, 0xFF, 0xFF, 0xF0, 0x3F, 0xFF, 0xFF, 0xFF, 35 | 0x00, 0x00, 0x01, 0xFF, 0xFF, 0xE0, 0x3F, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x01, 0xFF, 0xFF, 0xC0, 36 | 0x7F, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x01, 0xFF, 0xFF, 0xC0, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 37 | 0x00, 0xFF, 0xFF, 0x80, 0xFF, 0xFF, 0xFF, 0xFE, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x81, 0xFF, 0xFF, 38 | 0xFF, 0xFE, 0x00, 0x00, 0x00, 0x7F, 0xFF, 0x03, 0xFF, 0xFF, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x3F, 39 | 0xFF, 0x03, 0xFF, 0xFF, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x1F, 0xFE, 0x00, 0x3F, 0xFF, 0xFF, 0xF0, 40 | 0x00, 0x00, 0x00, 0x07, 0xFE, 0x00, 0x3F, 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x7C, 0x00, 41 | 0x7F, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 42 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 43 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 44 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 45 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 46 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 47 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 48 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 49 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 50 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 51 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 52 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 53 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 54 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 55 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 56 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 57 | }; 58 | -------------------------------------------------------------------------------- /icons/11d-lightning.h: -------------------------------------------------------------------------------- 1 | #define icon_11d_ligthning_width 80 2 | #define icon_11d_ligthning_height 80 3 | 4 | #include 5 | 6 | const unsigned char PROGMEM icon_11d_ligthning_bits[] = { 7 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 8 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 9 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 10 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 11 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 12 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 13 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 14 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 15 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 16 | 0x01, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xF8, 0x00, 0x00, 0x00, 17 | 0x00, 0x00, 0x00, 0x00, 0x07, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0xFF, 18 | 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 19 | 0x00, 0x00, 0x0F, 0xFF, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0xFF, 0xFF, 0x30, 20 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 21 | 0x01, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0x80, 0x00, 22 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFF, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 23 | 0xFF, 0xFF, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFF, 0xFF, 0xC0, 0x00, 0x00, 0x00, 24 | 0x00, 0x00, 0x00, 0x3F, 0xFF, 0xFF, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x7F, 0xFF, 25 | 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 26 | 0x00, 0x00, 0x0F, 0xFF, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0xFF, 0xFF, 0x00, 27 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0xFF, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 28 | 0x03, 0xFF, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x80, 0x00, 0x00, 29 | 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 30 | 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 31 | 0x00, 0x00, 0x00, 0x1F, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0x80, 32 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 33 | 0x00, 0x03, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xF8, 0x00, 0x00, 0x00, 34 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xC0, 0x00, 0x00, 0x00, 35 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 36 | 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 37 | 0x00, 0x00, 0x00, 0x7F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7E, 0x00, 0x00, 38 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 39 | 0x00, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xFF, 0xC0, 0x00, 0x00, 0x00, 40 | 0x00, 0x00, 0x00, 0x00, 0x01, 0xFF, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 41 | 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 42 | 0x00, 0x00, 0x07, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7E, 0x00, 0x00, 43 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 44 | 0x00, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x00, 0x00, 0x00, 0x00, 45 | 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 46 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 47 | 0x00, 0x00, 0x03, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 48 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 49 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 50 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 51 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 52 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 53 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 54 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 55 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 56 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 57 | }; 58 | -------------------------------------------------------------------------------- /icons/04d-cloud-back.h: -------------------------------------------------------------------------------- 1 | #define icon_04d_cloud_back_width 80 2 | #define icon_04d_cloud_back_height 80 3 | 4 | #include 5 | 6 | const unsigned char PROGMEM icon_04d_cloud_back_bits[] = { 7 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 8 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 9 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 10 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 11 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 12 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 13 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 14 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 15 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 16 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 17 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 18 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 19 | 0x00, 0x00, 0x00, 0x1F, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xE0, 0x00, 20 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 21 | 0x03, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0xFF, 0xFE, 0x00, 0x00, 0x00, 22 | 0x00, 0x00, 0x00, 0x00, 0x07, 0xFF, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 23 | 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 24 | 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x1C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xFF, 0xFF, 0xFF, 25 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 26 | 0x00, 0x7F, 0xFF, 0xFF, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFF, 0xFF, 0xC0, 0x00, 27 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 28 | 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x00, 29 | 0x00, 0x00, 0x00, 0x18, 0x1F, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0xFF, 30 | 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 31 | 0x00, 0x00, 0x03, 0xFF, 0xFF, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xFF, 0xFF, 0xC0, 32 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 33 | 0x01, 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xE0, 0x00, 0x00, 34 | 0x00, 0x00, 0x00, 0x00, 0x01, 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xFF, 35 | 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x00, 36 | 0x00, 0x00, 0x00, 0x03, 0xFF, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xFF, 0x80, 37 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 38 | 0x00, 0x00, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 39 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 40 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 41 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 42 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 43 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 44 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 45 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 46 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 47 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 48 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 49 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 50 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 51 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 52 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 53 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 54 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 55 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 56 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 57 | }; 58 | -------------------------------------------------------------------------------- /display.h: -------------------------------------------------------------------------------- 1 | #include "icons/01d-sun.h" 2 | #include "icons/02d-sun.h" 3 | #include "icons/02d-cloud.h" 4 | #include "icons/03d-cloud.h" 5 | #include "icons/04d-cloud.h" 6 | #include "icons/04d-cloud-back.h" 7 | #include "icons/09d-cloud.h" 8 | #include "icons/09d-rain.h" 9 | #include "icons/10d-cloud.h" 10 | #include "icons/10d-sun.h" 11 | #include "icons/11d-cloud.h" 12 | #include "icons/11d-lightning.h" 13 | #include "icons/13d-snow.h" 14 | #include "icons/50d-fog.h" 15 | 16 | #include "Fonts/Cantarell_Regular_euro8pt8b.h" 17 | #include "Fonts/Cantarell_Bold_euro9pt8b.h" 18 | #include "Fonts/FreeMonoBold_euro14pt8b.h" 19 | #include "Fonts/Cantarell_Bold_euro16pt8b.h" 20 | 21 | #define FONT_TINY Cantarell_Regular_euro8pt8b 22 | #define FONT_SMALL Cantarell_Bold_euro9pt8b 23 | #define FONT_NORMAL FreeMonoBold_euro14pt8b 24 | #define FONT_BIG Cantarell_Bold_euro16pt8b 25 | 26 | void drawTinyTextRightAlign(int x, int y, char* text, int color) { 27 | display.setFont(&FONT_TINY); 28 | display.setTextColor(color); 29 | int16_t tbx, tby; uint16_t tbw, tbh; 30 | display.getTextBounds(text, 0, 0, &tbx, &tby, &tbw, &tbh); 31 | display.setCursor(x - tbw, y); 32 | display.println(text); 33 | } 34 | 35 | void drawSmallTextCenterAlign(int x, int y, char* text, int color) { 36 | display.setFont(&FONT_SMALL); 37 | display.setTextColor(color); 38 | int16_t tbx, tby; uint16_t tbw, tbh; 39 | display.getTextBounds(text, 0, 0, &tbx, &tby, &tbw, &tbh); 40 | display.setCursor(x - (tbw / 2), y); 41 | display.println(text); 42 | } 43 | 44 | void drawTextCenterAlign(int x, int y, char* text, int color) { 45 | display.setFont(&FONT_NORMAL); 46 | display.setTextColor(color); 47 | int16_t tbx, tby; uint16_t tbw, tbh; 48 | display.getTextBounds(text, 0, 0, &tbx, &tby, &tbw, &tbh); 49 | display.setCursor(x - (tbw / 2), y); 50 | display.println(text); 51 | } 52 | 53 | void drawBigTextCenterAlign(int x, int y, char* text) { 54 | display.setFont(&FONT_BIG); 55 | display.setTextColor(GxEPD_BLACK); 56 | int16_t tbx, tby; uint16_t tbw, tbh; 57 | display.getTextBounds(text, 0, 0, &tbx, &tby, &tbw, &tbh); 58 | display.setCursor(x - (tbw / 2), y); 59 | display.println(text); 60 | } 61 | 62 | void drawIcon(int x, int y, char* icon) { 63 | if (strcmp(icon, "01d") == 0) { 64 | // 01d - Sun 65 | display.drawBitmap(x, y, icon_01d_sun_bits, icon_01d_sun_width, icon_01d_sun_height, GxEPD_RED); 66 | } else if (strcmp(icon, "01n") == 0) { 67 | // 01d - Sun - night 68 | display.drawBitmap(x, y, icon_01d_sun_bits, icon_01d_sun_width, icon_01d_sun_height, GxEPD_BLACK); 69 | } else if (strcmp(icon, "02d") == 0) { 70 | // 02d - Cloud, sun 71 | display.drawBitmap(x, y, icon_02d_sun_bits, icon_02d_sun_width, icon_02d_sun_height, GxEPD_RED); 72 | display.drawBitmap(x, y, icon_02d_cloud_bits, icon_02d_cloud_width, icon_02d_cloud_height, GxEPD_BLACK); 73 | } else if (strcmp(icon, "02n") == 0) { 74 | // 02d - Cloud, sun - night 75 | display.drawBitmap(x, y, icon_02d_sun_bits, icon_02d_sun_width, icon_02d_sun_height, GxEPD_BLACK); 76 | display.drawBitmap(x, y, icon_02d_cloud_bits, icon_02d_cloud_width, icon_02d_cloud_height, GxEPD_BLACK); 77 | } else if (strcmp(icon, "03d") == 0 || strcmp(icon, "03n") == 0) { 78 | // 03d - Cloud 79 | display.drawBitmap(x, y, icon_03d_cloud_bits, icon_03d_cloud_width, icon_03d_cloud_height, GxEPD_BLACK); 80 | } else if (strcmp(icon, "04d") == 0) { 81 | // 04d - Cloud, second cloud 82 | display.drawBitmap(x, y, icon_04d_cloud_bits, icon_04d_cloud_width, icon_04d_cloud_height, GxEPD_BLACK); 83 | display.drawBitmap(x, y, icon_04d_cloud_back_bits, icon_04d_cloud_back_width, icon_04d_cloud_back_height, GxEPD_RED); 84 | } else if (strcmp(icon, "04n") == 0) { 85 | // 04d - Cloud, second cloud - night 86 | display.drawBitmap(x, y, icon_04d_cloud_bits, icon_04d_cloud_width, icon_04d_cloud_height, GxEPD_BLACK); 87 | display.drawBitmap(x, y, icon_04d_cloud_back_bits, icon_04d_cloud_back_width, icon_04d_cloud_back_height, GxEPD_BLACK); 88 | } else if (strcmp(icon, "09d") == 0) { 89 | // 09d - Clouds, rain 90 | display.drawBitmap(x, y, icon_09d_cloud_bits, icon_09d_cloud_width, icon_09d_cloud_height, GxEPD_BLACK); 91 | display.drawBitmap(x, y, icon_09d_rain_bits, icon_09d_rain_width, icon_09d_rain_height, GxEPD_BLACK); 92 | } else if (strcmp(icon, "09n") == 0) { 93 | // 09d - Clouds, rain - night 94 | display.drawBitmap(x, y, icon_09d_cloud_bits, icon_09d_cloud_width, icon_09d_cloud_height, GxEPD_BLACK); 95 | display.drawBitmap(x, y, icon_09d_rain_bits, icon_09d_rain_width, icon_09d_rain_height, GxEPD_BLACK); 96 | } else if (strcmp(icon, "10d") == 0) { 97 | // 10d - Clouds, sun, rain 98 | display.drawBitmap(x, y, icon_10d_cloud_bits, icon_10d_cloud_width, icon_10d_cloud_height, GxEPD_BLACK); 99 | display.drawBitmap(x, y, icon_10d_sun_bits, icon_10d_sun_width, icon_10d_sun_height, GxEPD_BLACK); 100 | } else if (strcmp(icon, "10n") == 0) { 101 | // 10d - Clouds, sun, rain - night 102 | display.drawBitmap(x, y, icon_10d_cloud_bits, icon_10d_cloud_width, icon_10d_cloud_height, GxEPD_BLACK); 103 | display.drawBitmap(x, y, icon_10d_sun_bits, icon_10d_sun_width, icon_10d_sun_height, GxEPD_BLACK); 104 | } else if (strcmp(icon, "11d") == 0) { 105 | // 11d - Clouds, lightning 106 | display.drawBitmap(x, y, icon_11d_cloud_bits, icon_11d_cloud_width, icon_11d_cloud_height, GxEPD_BLACK); 107 | display.drawBitmap(x, y, icon_11d_ligthning_bits, icon_11d_ligthning_width, icon_11d_ligthning_height, GxEPD_RED); 108 | } else if (strcmp(icon, "11n") == 0) { 109 | // 11d - Clouds, lightning - night 110 | display.drawBitmap(x, y, icon_11d_cloud_bits, icon_11d_cloud_width, icon_11d_cloud_height, GxEPD_BLACK); 111 | display.drawBitmap(x, y, icon_11d_ligthning_bits, icon_11d_ligthning_width, icon_11d_ligthning_height, GxEPD_BLACK); 112 | } else if (strcmp(icon, "13d") == 0 || strcmp(icon, "13n") == 0) { 113 | // 13d - Snow 114 | display.drawBitmap(x, y, icon_13d_snow_bits, icon_13d_snow_width, icon_13d_snow_height, GxEPD_BLACK); 115 | } else if (strcmp(icon, "50d") == 0 ||strcmp(icon, "50n") == 0) { 116 | // 50d - Fog 117 | display.drawBitmap(x, y, icon_50d_fog_bits, icon_50d_fog_width, icon_50d_fog_height, GxEPD_BLACK); 118 | } 119 | } 120 | 121 | void displayDayMinMax(int x, char* title, char* icon, char* temp1, char* temp2, char* humidity) { 122 | int centerOffset = 38; 123 | drawBigTextCenterAlign(x + centerOffset, 28, title); 124 | drawIcon(x, 22, icon); 125 | drawTextCenterAlign(x + centerOffset, 112, temp1, GxEPD_BLACK); 126 | drawTextCenterAlign(x + centerOffset, 138, temp2, GxEPD_BLACK); 127 | drawSmallTextCenterAlign(x + centerOffset, 157, humidity, GxEPD_BLACK); 128 | } 129 | 130 | void displayWeather(Weather* weather) { 131 | display.fillScreen(GxEPD_WHITE); 132 | display.firstPage(); 133 | do 134 | { 135 | displayDayMinMax(5, "H+1", weather->iconH1, weather->feelsLikeH1, weather->tempH1, weather->humidityH1); 136 | displayDayMinMax(95, "J", weather->iconD, weather->tempMinD, weather->tempMaxD, weather->humidityD); 137 | displayDayMinMax(185, "J+1", weather->iconD1, weather->tempMinD1, weather->tempMaxD1, weather->humidityD1); 138 | drawTinyTextRightAlign(258, 173, weather->updated, GxEPD_BLACK); 139 | } while (display.nextPage()); 140 | } 141 | 142 | void displayLocalTemp(LocalTemp* localTemp) { 143 | int x = 5; 144 | int y = 100; 145 | int w = 90; 146 | int h = 38; 147 | 148 | display.setPartialWindow(x, y, w, h); 149 | display.firstPage(); 150 | do 151 | { 152 | display.fillScreen(GxEPD_WHITE); 153 | drawTextCenterAlign(x + 40, y + 24, localTemp->temp, GxEPD_BLACK); 154 | } while (display.nextPage()); 155 | } 156 | 157 | void displayError(char* text) { 158 | int x = 0; 159 | int y = display.height() - 20; 160 | int w = display.width() / 2; 161 | int h = 20; 162 | display.setFont(&FONT_SMALL); 163 | display.setTextColor(GxEPD_RED); 164 | 165 | display.setPartialWindow(x, y, w, h); 166 | display.firstPage(); 167 | do 168 | { 169 | display.fillScreen(GxEPD_WHITE); 170 | display.setCursor(x + 5, y + 12); 171 | display.print(text); 172 | } while (display.nextPage()); 173 | } 174 | -------------------------------------------------------------------------------- /Fonts/Cantarell_Regular_euro8pt8b.h: -------------------------------------------------------------------------------- 1 | const uint8_t Cantarell_Regular_euro8pt8bBitmaps[] PROGMEM = { 2 | 0xFE, 0xAA, 0x3C, 0x99, 0x99, 0x22, 0x11, 0x08, 0x9F, 0xF2, 0x21, 0x10, 3 | 0x89, 0xFF, 0x22, 0x11, 0x08, 0x80, 0x08, 0x08, 0x3E, 0x40, 0xC0, 0xC0, 4 | 0x60, 0x3C, 0x06, 0x03, 0x03, 0xC6, 0x7C, 0x08, 0x08, 0x70, 0x42, 0x46, 5 | 0x32, 0x21, 0x12, 0x0C, 0x97, 0x25, 0x2D, 0xCA, 0x20, 0x91, 0x0C, 0x88, 6 | 0x46, 0x46, 0x1C, 0x3C, 0x13, 0x18, 0x8C, 0x83, 0x83, 0x81, 0x63, 0x1B, 7 | 0x87, 0x63, 0x9F, 0x60, 0x55, 0x2D, 0x29, 0x24, 0x93, 0x24, 0x40, 0x91, 8 | 0x24, 0xC9, 0x6D, 0x2D, 0x20, 0x22, 0xA7, 0x1C, 0xAC, 0x80, 0x08, 0x08, 9 | 0x08, 0x08, 0xFF, 0x08, 0x08, 0x08, 0x08, 0x7A, 0xF8, 0xF0, 0x08, 0xC4, 10 | 0x21, 0x18, 0x84, 0x23, 0x10, 0x84, 0x00, 0x3C, 0x66, 0x42, 0xC3, 0x83, 11 | 0x81, 0x83, 0xC3, 0xC2, 0x66, 0x3C, 0x23, 0x8A, 0x08, 0x20, 0x82, 0x08, 12 | 0x20, 0x8F, 0xC0, 0x79, 0x18, 0x10, 0x20, 0x41, 0x06, 0x18, 0x20, 0x83, 13 | 0xF8, 0x79, 0x18, 0x18, 0x20, 0xC7, 0x01, 0x81, 0x03, 0x0F, 0xE0, 0x04, 14 | 0x0C, 0x14, 0x34, 0x24, 0x44, 0x84, 0xFF, 0x04, 0x04, 0x04, 0x7C, 0x81, 15 | 0x06, 0x0F, 0x81, 0x81, 0x81, 0x07, 0x09, 0xE0, 0x1E, 0xC1, 0x06, 0x0B, 16 | 0xD8, 0xE0, 0xE1, 0xC2, 0xCC, 0xF0, 0xFE, 0x08, 0x10, 0x60, 0x83, 0x04, 17 | 0x18, 0x20, 0x41, 0x80, 0x3C, 0x8F, 0x0E, 0x16, 0x47, 0x31, 0xC1, 0x83, 18 | 0x8D, 0xF0, 0x39, 0x8A, 0x1C, 0x18, 0x38, 0xDE, 0x81, 0x07, 0x1B, 0xE0, 19 | 0xF0, 0x0F, 0xF0, 0x0F, 0xA0, 0x02, 0x1C, 0xE7, 0x06, 0x07, 0x03, 0x81, 20 | 0xFE, 0x00, 0x07, 0xF0, 0x80, 0xC0, 0x60, 0x30, 0x63, 0x18, 0x40, 0x7A, 21 | 0x30, 0x41, 0x08, 0x41, 0x0C, 0x00, 0xC3, 0x00, 0x0F, 0xC0, 0xC1, 0x88, 22 | 0x06, 0x8E, 0x94, 0xCC, 0xC4, 0x66, 0x23, 0x31, 0x19, 0xCC, 0xCA, 0x3B, 23 | 0x90, 0x00, 0x40, 0x01, 0x80, 0x07, 0xE0, 0x18, 0x0E, 0x05, 0x06, 0x82, 24 | 0x61, 0x11, 0x8C, 0xFE, 0xC1, 0x40, 0xE0, 0x60, 0xF9, 0x1A, 0x1C, 0x28, 25 | 0x5F, 0xA1, 0xC1, 0x83, 0x0F, 0xF0, 0x1F, 0x18, 0x10, 0x18, 0x08, 0x04, 26 | 0x02, 0x01, 0x80, 0x40, 0x38, 0x07, 0xC0, 0xFC, 0x86, 0x83, 0x81, 0x81, 27 | 0x81, 0x81, 0x81, 0x83, 0x86, 0xF8, 0xFE, 0x08, 0x20, 0x83, 0xF8, 0x20, 28 | 0x82, 0x0F, 0xC0, 0xFE, 0x08, 0x20, 0x83, 0xF8, 0x20, 0x82, 0x08, 0x00, 29 | 0x1F, 0x18, 0x50, 0x18, 0x08, 0x04, 0x3E, 0x03, 0x81, 0x40, 0x98, 0x47, 30 | 0xC0, 0x81, 0x81, 0x81, 0x81, 0x81, 0xFF, 0x81, 0x81, 0x81, 0x81, 0x81, 31 | 0xFF, 0xE0, 0x11, 0x11, 0x11, 0x11, 0x11, 0xE0, 0x87, 0x1A, 0x65, 0x8A, 32 | 0x1C, 0x2C, 0x48, 0x89, 0x1A, 0x18, 0x82, 0x08, 0x20, 0x82, 0x08, 0x20, 33 | 0x82, 0x0F, 0xC0, 0x80, 0x70, 0x3C, 0x0F, 0x85, 0xA1, 0x6C, 0x99, 0x26, 34 | 0x71, 0x8C, 0x60, 0x18, 0x04, 0x81, 0xC1, 0xE1, 0xA1, 0x91, 0x99, 0x89, 35 | 0x85, 0x87, 0x83, 0x81, 0x1E, 0x18, 0x64, 0x0F, 0x01, 0x80, 0x60, 0x18, 36 | 0x07, 0x01, 0x40, 0x98, 0x61, 0xE0, 0xF9, 0x1A, 0x1C, 0x38, 0x70, 0xBE, 37 | 0x40, 0x81, 0x02, 0x00, 0x1E, 0x0C, 0x31, 0x03, 0x60, 0x28, 0x05, 0x00, 38 | 0xA1, 0x16, 0x12, 0x41, 0x8C, 0x30, 0x79, 0x00, 0xF9, 0x0E, 0x1C, 0x38, 39 | 0x5F, 0x22, 0x46, 0x85, 0x0E, 0x08, 0x3F, 0x86, 0x04, 0x0E, 0x07, 0x81, 40 | 0x81, 0x03, 0x0D, 0xF0, 0xFF, 0x84, 0x02, 0x01, 0x00, 0x80, 0x40, 0x20, 41 | 0x10, 0x08, 0x04, 0x02, 0x00, 0xC1, 0xE0, 0xF0, 0x78, 0x3C, 0x1E, 0x0F, 42 | 0x07, 0x83, 0x41, 0x31, 0x8F, 0x80, 0x40, 0x90, 0x26, 0x18, 0x84, 0x21, 43 | 0x0C, 0xC1, 0x20, 0x48, 0x1E, 0x03, 0x00, 0xC0, 0x41, 0x82, 0x83, 0x05, 44 | 0x86, 0x19, 0x16, 0x22, 0x24, 0x46, 0x48, 0x8D, 0x9A, 0x0A, 0x14, 0x14, 45 | 0x28, 0x38, 0x70, 0x20, 0x40, 0x61, 0x88, 0x43, 0x20, 0x58, 0x0C, 0x03, 46 | 0x01, 0xC0, 0x48, 0x23, 0x18, 0x64, 0x08, 0x41, 0xB0, 0x88, 0xC6, 0x41, 47 | 0x40, 0x60, 0x20, 0x10, 0x08, 0x04, 0x02, 0x00, 0xFF, 0x03, 0x02, 0x04, 48 | 0x0C, 0x18, 0x10, 0x20, 0x40, 0xC0, 0xFF, 0xF2, 0x49, 0x24, 0x92, 0x49, 49 | 0x38, 0x88, 0xC4, 0x44, 0x62, 0x22, 0x21, 0x10, 0xE4, 0x92, 0x49, 0x24, 50 | 0x92, 0x78, 0x18, 0x18, 0x2C, 0x24, 0x46, 0x42, 0x83, 0xFE, 0xA4, 0xFA, 51 | 0x30, 0x4F, 0xC6, 0x18, 0xFD, 0xC1, 0x83, 0x06, 0x0F, 0x98, 0xB0, 0xE1, 52 | 0xC3, 0x87, 0x15, 0xC0, 0x3D, 0x08, 0x20, 0x82, 0x0C, 0x1F, 0x06, 0x0C, 53 | 0x18, 0x33, 0xE8, 0xE1, 0xC3, 0x87, 0x0F, 0x1B, 0xD0, 0x7B, 0x18, 0x7F, 54 | 0x83, 0x04, 0x0F, 0x1C, 0x82, 0x08, 0xF8, 0x82, 0x08, 0x20, 0x82, 0x08, 55 | 0x3B, 0x8E, 0x1C, 0x38, 0x70, 0xF1, 0xBF, 0x06, 0x08, 0x33, 0xC0, 0xC1, 56 | 0x83, 0x06, 0x0F, 0xD8, 0xB1, 0xE3, 0xC7, 0x8F, 0x1E, 0x30, 0xF0, 0xFF, 57 | 0xFF, 0x6C, 0x06, 0xDB, 0x6D, 0xB6, 0xD4, 0xC1, 0x83, 0x06, 0x0C, 0xD9, 58 | 0x34, 0x70, 0xF1, 0xB3, 0x26, 0x20, 0xDB, 0x6D, 0xB6, 0xDB, 0x30, 0xBD, 59 | 0xEC, 0x62, 0xC6, 0x3C, 0x63, 0xC6, 0x3C, 0x63, 0xC6, 0x3C, 0x63, 0xBD, 60 | 0x8B, 0x1E, 0x3C, 0x78, 0xF1, 0xE3, 0x38, 0x8A, 0x1C, 0x18, 0x30, 0x71, 61 | 0x3C, 0xBD, 0x8F, 0x0E, 0x1C, 0x38, 0x71, 0x7C, 0xC1, 0x83, 0x06, 0x00, 62 | 0x3B, 0x8E, 0x1C, 0x38, 0x70, 0xF1, 0xBF, 0x06, 0x0C, 0x18, 0x30, 0xBE, 63 | 0x31, 0x8C, 0x63, 0x18, 0x7A, 0x08, 0x38, 0x38, 0x30, 0xBE, 0x63, 0x3E, 64 | 0xC6, 0x31, 0x8C, 0x21, 0xC0, 0x86, 0x18, 0x61, 0x86, 0x1C, 0x5F, 0xC2, 65 | 0x85, 0x13, 0x22, 0x45, 0x06, 0x0C, 0xC6, 0x14, 0x63, 0x47, 0x26, 0x52, 66 | 0x29, 0x62, 0x9C, 0x38, 0xC1, 0x0C, 0x46, 0xC8, 0xA0, 0xC1, 0x85, 0x19, 67 | 0x23, 0xC2, 0x85, 0x13, 0x22, 0x45, 0x06, 0x0C, 0x10, 0x20, 0xC1, 0x00, 68 | 0xFC, 0x21, 0x0C, 0x21, 0x0C, 0x3F, 0x1C, 0x43, 0x0C, 0x30, 0x86, 0x10, 69 | 0x20, 0xC3, 0x0C, 0x30, 0xC1, 0xC0, 0xFF, 0xFC, 0xC3, 0x08, 0x42, 0x10, 70 | 0x83, 0x31, 0x08, 0x42, 0x33, 0x00, 0x31, 0x59, 0x4E, 0xFE, 0x18, 0x61, 71 | 0x86, 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x7F, 0x07, 0xC6, 0x13, 72 | 0x00, 0x80, 0xFF, 0x98, 0x0F, 0xF8, 0x80, 0x30, 0x06, 0x10, 0xFC, 0xFE, 73 | 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x7F, 0xFE, 74 | 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x7F, 0xFE, 75 | 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x7F, 0xFE, 76 | 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x7F, 0xFE, 77 | 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x7F, 0xFE, 78 | 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x7F, 0xFE, 79 | 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x7F, 0xFE, 80 | 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x7F, 0xFE, 81 | 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x7F, 0xFE, 82 | 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x7F, 0xFE, 83 | 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x7F, 0xFE, 84 | 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x7F, 0xFE, 85 | 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x7F, 0xFE, 86 | 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x7F, 0xFE, 87 | 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x7F, 0xFE, 88 | 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x7F, 0xFE, 89 | 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x7F, 0xFE, 90 | 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x7F, 0xFE, 91 | 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x7F, 0xFE, 92 | 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x7F, 0xFE, 93 | 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x7F, 0xFE, 94 | 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x7F, 0xFE, 95 | 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x7F, 0xFE, 96 | 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x7F, 0xFE, 97 | 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x7F, 0xFE, 98 | 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x7F, 0xFE, 99 | 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x7F, 0xFE, 100 | 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x7F, 0xFE, 101 | 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x7F, 0xFE, 102 | 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x7F, 0xFE, 103 | 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x18, 0x7F, 0xF2, 104 | 0xAA, 0xFF, 0x10, 0x43, 0xD8, 0x43, 0x0C, 0x30, 0x60, 0xF1, 0x04, 0x1E, 105 | 0x30, 0x20, 0x60, 0x60, 0xFC, 0x60, 0x60, 0x60, 0x40, 0xFF, 0x01, 0x7E, 106 | 0x66, 0x42, 0x42, 0x66, 0x7E, 0x00, 0xC1, 0xB0, 0x88, 0x86, 0xC1, 0xC3, 107 | 0xF8, 0x20, 0x10, 0x7F, 0x04, 0x02, 0x00, 0xF8, 0x7C, 0x3D, 0x14, 0x18, 108 | 0x7D, 0x14, 0x5E, 0x0C, 0x10, 0x5E, 0xDE, 0xC0, 0x1F, 0x82, 0x0C, 0x4F, 109 | 0x25, 0x82, 0x90, 0x19, 0x01, 0x90, 0x25, 0x82, 0x4F, 0x23, 0x0C, 0x1F, 110 | 0x00, 0xF0, 0x86, 0xF9, 0xF4, 0x24, 0x9B, 0x24, 0xCC, 0x8D, 0x89, 0x80, 111 | 0xFF, 0x03, 0x03, 0x03, 0xF8, 0x3C, 0x5A, 0x95, 0x9D, 0x95, 0x55, 0x62, 112 | 0x1C, 0xF8, 0xE9, 0x9E, 0x10, 0x10, 0x10, 0xFF, 0x10, 0x10, 0x10, 0x00, 113 | 0xFF, 0xF0, 0xC6, 0x22, 0x23, 0xE0, 0xF0, 0xC6, 0xE0, 0x87, 0xC0, 0x78, 114 | 0x86, 0x18, 0x61, 0x86, 0x1C, 0xFF, 0x82, 0x08, 0x20, 0x3F, 0x79, 0xF9, 115 | 0xF9, 0xF9, 0x79, 0x39, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0xF0, 116 | 0x5C, 0xF0, 0xEE, 0x66, 0x66, 0xF0, 0x74, 0x63, 0x18, 0xB8, 0x99, 0x26, 117 | 0x49, 0x4D, 0x29, 0x00, 0x20, 0x00, 0xE0, 0xC0, 0x60, 0x80, 0x61, 0x80, 118 | 0x61, 0x00, 0x61, 0x04, 0x62, 0x0C, 0xF2, 0x14, 0x04, 0x24, 0x04, 0x7F, 119 | 0x0C, 0x04, 0x08, 0x04, 0x20, 0x01, 0xC1, 0x81, 0x82, 0x03, 0x0C, 0x06, 120 | 0x13, 0xCC, 0x20, 0x98, 0x81, 0xF9, 0x02, 0x04, 0x04, 0x08, 0x10, 0x30, 121 | 0x40, 0x41, 0xF0, 0xF0, 0x00, 0x0C, 0x10, 0x02, 0x18, 0x02, 0x08, 0x07, 122 | 0x04, 0x00, 0x44, 0x18, 0x22, 0x0D, 0xE3, 0x0A, 0x01, 0x09, 0x00, 0x8F, 123 | 0xC0, 0x80, 0x40, 0x40, 0x20, 0x30, 0xC0, 0x08, 0x20, 0x86, 0x30, 0x82, 124 | 0x0C, 0x5E, 0x30, 0x0C, 0x00, 0x03, 0x01, 0xC0, 0xA0, 0xD0, 0x4C, 0x22, 125 | 0x31, 0x9F, 0xD8, 0x28, 0x1C, 0x0C, 0x06, 0x04, 0x00, 0x03, 0x01, 0xC0, 126 | 0xA0, 0xD0, 0x4C, 0x22, 0x31, 0x9F, 0xD8, 0x28, 0x1C, 0x0C, 0x08, 0x0E, 127 | 0x09, 0x80, 0x01, 0x80, 0xE0, 0x50, 0x68, 0x26, 0x11, 0x18, 0xCF, 0xEC, 128 | 0x14, 0x0E, 0x06, 0x32, 0x16, 0x00, 0x03, 0x01, 0xC0, 0xA0, 0xD0, 0x4C, 129 | 0x22, 0x31, 0x9F, 0xD8, 0x28, 0x1C, 0x0C, 0x36, 0x13, 0x00, 0x03, 0x01, 130 | 0xC0, 0xA0, 0xD0, 0x4C, 0x22, 0x31, 0x9F, 0xD8, 0x28, 0x1C, 0x0C, 0x1C, 131 | 0x0A, 0x07, 0x00, 0x01, 0x80, 0xE0, 0x50, 0x68, 0x26, 0x11, 0x18, 0xCF, 132 | 0xEC, 0x14, 0x0E, 0x06, 0x03, 0xF8, 0x38, 0x01, 0x40, 0x12, 0x01, 0x90, 133 | 0x08, 0xFC, 0xC4, 0x07, 0xE0, 0x61, 0x06, 0x08, 0x20, 0x7E, 0x1F, 0x18, 134 | 0x10, 0x18, 0x08, 0x04, 0x02, 0x01, 0x80, 0x40, 0x38, 0x07, 0xC1, 0x00, 135 | 0xE0, 0x10, 0x70, 0x60, 0xC0, 0x3F, 0x82, 0x08, 0x20, 0xFE, 0x08, 0x20, 136 | 0x83, 0xF0, 0x0C, 0x40, 0x3F, 0x82, 0x08, 0x20, 0xFE, 0x08, 0x20, 0x83, 137 | 0xF0, 0x10, 0xE4, 0xC0, 0xFE, 0x08, 0x20, 0x83, 0xF8, 0x20, 0x82, 0x0F, 138 | 0xC0, 0x4D, 0x20, 0x3F, 0x82, 0x08, 0x20, 0xFE, 0x08, 0x20, 0x83, 0xF0, 139 | 0xCC, 0x12, 0x49, 0x24, 0x92, 0x40, 0x70, 0x49, 0x24, 0x92, 0x49, 0x00, 140 | 0x23, 0xA6, 0x02, 0x10, 0x84, 0x21, 0x08, 0x42, 0x10, 0x80, 0x9C, 0xC0, 141 | 0x42, 0x10, 0x84, 0x21, 0x08, 0x42, 0x10, 0x3F, 0x08, 0x62, 0x0C, 0x81, 142 | 0x20, 0x7E, 0x12, 0x04, 0x81, 0x20, 0xC8, 0x63, 0xE0, 0x32, 0x4C, 0x00, 143 | 0x81, 0xC1, 0xE1, 0xA1, 0x91, 0x99, 0x89, 0x85, 0x87, 0x83, 0x81, 0x18, 144 | 0x03, 0x00, 0x00, 0x78, 0x61, 0x90, 0x3C, 0x06, 0x01, 0x80, 0x60, 0x1C, 145 | 0x05, 0x02, 0x61, 0x87, 0x80, 0x02, 0x01, 0x00, 0x00, 0x78, 0x61, 0x90, 146 | 0x3C, 0x06, 0x01, 0x80, 0x60, 0x1C, 0x05, 0x02, 0x61, 0x87, 0x80, 0x0E, 147 | 0x04, 0xC0, 0x00, 0x78, 0x61, 0x90, 0x3C, 0x06, 0x01, 0x80, 0x60, 0x1C, 148 | 0x05, 0x02, 0x61, 0x87, 0x80, 0x19, 0x09, 0x80, 0x00, 0x78, 0x61, 0x90, 149 | 0x3C, 0x06, 0x01, 0x80, 0x60, 0x1C, 0x05, 0x02, 0x61, 0x87, 0x80, 0x12, 150 | 0x04, 0x80, 0x00, 0x78, 0x61, 0x90, 0x3C, 0x06, 0x01, 0x80, 0x60, 0x1C, 151 | 0x05, 0x02, 0x61, 0x87, 0x80, 0x00, 0x88, 0xA0, 0x82, 0x8D, 0xB1, 0x80, 152 | 0x00, 0x87, 0xA6, 0x19, 0x07, 0xC2, 0x61, 0x18, 0x46, 0x21, 0xD0, 0x54, 153 | 0x26, 0x19, 0x78, 0x00, 0x00, 0x30, 0x04, 0x00, 0x18, 0x3C, 0x1E, 0x0F, 154 | 0x07, 0x83, 0xC1, 0xE0, 0xF0, 0x68, 0x26, 0x31, 0xF0, 0x06, 0x04, 0x00, 155 | 0x18, 0x3C, 0x1E, 0x0F, 0x07, 0x83, 0xC1, 0xE0, 0xF0, 0x68, 0x26, 0x31, 156 | 0xF0, 0x08, 0x0E, 0x08, 0x80, 0x0C, 0x1E, 0x0F, 0x07, 0x83, 0xC1, 0xE0, 157 | 0xF0, 0x78, 0x34, 0x13, 0x18, 0xF8, 0x36, 0x1B, 0x00, 0x18, 0x3C, 0x1E, 158 | 0x0F, 0x07, 0x83, 0xC1, 0xE0, 0xF0, 0x68, 0x26, 0x31, 0xF0, 0x06, 0x06, 159 | 0x00, 0x08, 0x36, 0x11, 0x18, 0xC8, 0x28, 0x0C, 0x04, 0x02, 0x01, 0x00, 160 | 0x80, 0x40, 0x81, 0x03, 0xE4, 0x28, 0x70, 0xE1, 0xC2, 0xF9, 0x02, 0x00, 161 | 0x38, 0x44, 0xC6, 0xC4, 0xCC, 0xC8, 0xC8, 0xCE, 0xC3, 0xC3, 0xC2, 0xDE, 162 | 0x41, 0x82, 0x00, 0xFA, 0x30, 0x4F, 0xC6, 0x18, 0xFD, 0x10, 0x42, 0x00, 163 | 0xFA, 0x30, 0x4F, 0xC6, 0x18, 0xFD, 0x21, 0xC4, 0x80, 0xFA, 0x30, 0x4F, 164 | 0xC6, 0x18, 0xFD, 0x66, 0x60, 0x3E, 0x8C, 0x13, 0xF1, 0x86, 0x3F, 0x40, 165 | 0x4B, 0x20, 0x00, 0xFA, 0x30, 0x4F, 0xC6, 0x18, 0xFD, 0x31, 0x43, 0x00, 166 | 0xFA, 0x30, 0x4F, 0xC6, 0x18, 0xFD, 0x7B, 0xD1, 0xCC, 0x10, 0x9F, 0xFC, 167 | 0x41, 0x08, 0x23, 0x83, 0x9F, 0x3D, 0x08, 0x20, 0x82, 0x0C, 0x1F, 0x20, 168 | 0xE0, 0x9C, 0x40, 0x81, 0x00, 0x7B, 0x18, 0x7F, 0x83, 0x04, 0x0F, 0x08, 169 | 0x61, 0x00, 0x7B, 0x18, 0x7F, 0x83, 0x04, 0x0F, 0x10, 0xE4, 0x80, 0x7B, 170 | 0x18, 0x7F, 0x83, 0x04, 0x0F, 0x49, 0x30, 0x00, 0x7B, 0x18, 0x7F, 0x83, 171 | 0x04, 0x0F, 0x99, 0x06, 0xDB, 0x6D, 0xB0, 0x2D, 0x0D, 0xB6, 0xDB, 0x60, 172 | 0x6F, 0x90, 0x66, 0x66, 0x66, 0x66, 0x99, 0x00, 0x66, 0x66, 0x66, 0x66, 173 | 0x40, 0x71, 0xE0, 0x60, 0x4F, 0xB1, 0xC3, 0x87, 0x0B, 0x13, 0xC0, 0x74, 174 | 0x98, 0x05, 0xEC, 0x58, 0xF1, 0xE3, 0xC7, 0x8F, 0x18, 0x20, 0x40, 0x40, 175 | 0x03, 0x88, 0xA1, 0xC1, 0x83, 0x07, 0x13, 0xC0, 0x08, 0x10, 0x40, 0x03, 176 | 0x88, 0xA1, 0xC1, 0x83, 0x07, 0x13, 0xC0, 0x10, 0x71, 0x10, 0x03, 0x88, 177 | 0xA1, 0xC1, 0x83, 0x07, 0x13, 0xC0, 0x64, 0xB8, 0x01, 0xC4, 0x50, 0xE0, 178 | 0xC1, 0x83, 0x89, 0xE0, 0x6C, 0xD8, 0x00, 0x03, 0x88, 0xA1, 0xC1, 0x83, 179 | 0x07, 0x13, 0xC0, 0x18, 0x18, 0x00, 0xFF, 0x00, 0x00, 0x18, 0x18, 0x02, 180 | 0x79, 0x14, 0x59, 0x32, 0x68, 0xE2, 0x79, 0x00, 0x40, 0x81, 0x00, 0x86, 181 | 0x18, 0x61, 0x86, 0x1C, 0x5F, 0x08, 0x61, 0x00, 0x86, 0x18, 0x61, 0x86, 182 | 0x1C, 0x5F, 0x10, 0xE4, 0x00, 0x86, 0x18, 0x61, 0x86, 0x1C, 0x5F, 0x4D, 183 | 0xB0, 0x00, 0x86, 0x18, 0x61, 0x86, 0x1C, 0x5F, 0x08, 0x10, 0x40, 0x0C, 184 | 0x28, 0x51, 0x32, 0x24, 0x50, 0x60, 0xC1, 0x02, 0x0C, 0x10, 0xC1, 0x83, 185 | 0x06, 0x0F, 0x98, 0xB1, 0xE1, 0xC3, 0x87, 0x17, 0xCC, 0x18, 0x30, 0x60, 186 | 0x6C, 0xD8, 0x00, 0x0C, 0x28, 0x51, 0x32, 0x24, 0x50, 0x60, 0xC1, 0x02, 187 | 0x0C, 0x10 }; 188 | 189 | const GFXglyph Cantarell_Regular_euro8pt8bGlyphs[] PROGMEM = { 190 | { 0, 0, 0, 3, 0, 1 }, // 0x20 ' ' 191 | { 0, 2, 11, 4, 1, -10 }, // 0x21 '!' 192 | { 3, 4, 4, 7, 2, -10 }, // 0x22 '"' 193 | { 5, 9, 11, 10, 1, -10 }, // 0x23 '#' 194 | { 18, 8, 15, 10, 1, -12 }, // 0x24 '$' 195 | { 33, 13, 11, 16, 1, -10 }, // 0x25 '%' 196 | { 51, 9, 11, 11, 1, -10 }, // 0x26 '&' 197 | { 64, 2, 4, 4, 1, -10 }, // 0x27 ''' 198 | { 65, 3, 15, 5, 1, -11 }, // 0x28 '(' 199 | { 71, 3, 15, 5, 1, -11 }, // 0x29 ')' 200 | { 77, 6, 6, 7, 1, -10 }, // 0x2A '*' 201 | { 82, 8, 9, 10, 1, -9 }, // 0x2B '+' 202 | { 91, 2, 4, 4, 1, 0 }, // 0x2C ',' 203 | { 92, 5, 1, 7, 1, -3 }, // 0x2D '-' 204 | { 93, 2, 2, 4, 1, -1 }, // 0x2E '.' 205 | { 94, 5, 13, 5, 0, -11 }, // 0x2F '/' 206 | { 103, 8, 11, 10, 1, -10 }, // 0x30 '0' 207 | { 114, 6, 11, 7, 1, -10 }, // 0x31 '1' 208 | { 123, 7, 11, 8, 1, -10 }, // 0x32 '2' 209 | { 133, 7, 11, 9, 1, -10 }, // 0x33 '3' 210 | { 143, 8, 11, 10, 1, -10 }, // 0x34 '4' 211 | { 154, 7, 11, 9, 1, -10 }, // 0x35 '5' 212 | { 164, 7, 11, 9, 1, -10 }, // 0x36 '6' 213 | { 174, 7, 11, 8, 1, -10 }, // 0x37 '7' 214 | { 184, 7, 11, 9, 1, -10 }, // 0x38 '8' 215 | { 194, 7, 11, 9, 1, -10 }, // 0x39 '9' 216 | { 204, 2, 8, 4, 1, -7 }, // 0x3A ':' 217 | { 206, 2, 10, 4, 1, -7 }, // 0x3B ';' 218 | { 209, 7, 8, 10, 1, -8 }, // 0x3C '<' 219 | { 216, 7, 4, 11, 2, -6 }, // 0x3D '=' 220 | { 220, 7, 8, 9, 1, -8 }, // 0x3E '>' 221 | { 227, 6, 11, 7, 0, -10 }, // 0x3F '?' 222 | { 236, 13, 14, 16, 1, -10 }, // 0x40 '@' 223 | { 259, 9, 11, 11, 1, -10 }, // 0x41 'A' 224 | { 272, 7, 11, 10, 2, -10 }, // 0x42 'B' 225 | { 282, 9, 11, 10, 1, -10 }, // 0x43 'C' 226 | { 295, 8, 11, 11, 2, -10 }, // 0x44 'D' 227 | { 306, 6, 11, 9, 2, -10 }, // 0x45 'E' 228 | { 315, 6, 11, 9, 2, -10 }, // 0x46 'F' 229 | { 324, 9, 11, 12, 1, -10 }, // 0x47 'G' 230 | { 337, 8, 11, 12, 2, -10 }, // 0x48 'H' 231 | { 348, 1, 11, 5, 2, -10 }, // 0x49 'I' 232 | { 350, 4, 11, 7, 1, -10 }, // 0x4A 'J' 233 | { 356, 7, 11, 10, 2, -10 }, // 0x4B 'K' 234 | { 366, 6, 11, 8, 2, -10 }, // 0x4C 'L' 235 | { 375, 10, 11, 14, 2, -10 }, // 0x4D 'M' 236 | { 389, 8, 11, 12, 2, -10 }, // 0x4E 'N' 237 | { 400, 10, 11, 12, 1, -10 }, // 0x4F 'O' 238 | { 414, 7, 11, 10, 2, -10 }, // 0x50 'P' 239 | { 424, 11, 11, 12, 1, -10 }, // 0x51 'Q' 240 | { 440, 7, 11, 10, 2, -10 }, // 0x52 'R' 241 | { 450, 7, 11, 9, 1, -10 }, // 0x53 'S' 242 | { 460, 9, 11, 9, 0, -10 }, // 0x54 'T' 243 | { 473, 9, 11, 11, 1, -10 }, // 0x55 'U' 244 | { 486, 10, 11, 10, 0, -10 }, // 0x56 'V' 245 | { 500, 15, 11, 16, 0, -10 }, // 0x57 'W' 246 | { 521, 10, 11, 10, 0, -10 }, // 0x58 'X' 247 | { 535, 9, 11, 10, 0, -10 }, // 0x59 'Y' 248 | { 548, 8, 11, 10, 1, -10 }, // 0x5A 'Z' 249 | { 559, 3, 15, 6, 2, -11 }, // 0x5B '[' 250 | { 565, 4, 13, 6, 1, -11 }, // 0x5C '\' 251 | { 572, 3, 15, 6, 1, -11 }, // 0x5D ']' 252 | { 578, 8, 7, 10, 1, -10 }, // 0x5E '^' 253 | { 585, 7, 1, 9, 1, 1 }, // 0x5F '_' 254 | { 586, 2, 3, 4, 1, -11 }, // 0x60 '`' 255 | { 587, 6, 8, 8, 1, -7 }, // 0x61 'a' 256 | { 593, 7, 12, 9, 1, -11 }, // 0x62 'b' 257 | { 604, 6, 8, 7, 1, -7 }, // 0x63 'c' 258 | { 610, 7, 12, 9, 1, -11 }, // 0x64 'd' 259 | { 621, 6, 8, 8, 1, -7 }, // 0x65 'e' 260 | { 627, 6, 12, 5, 0, -11 }, // 0x66 'f' 261 | { 636, 7, 12, 9, 1, -7 }, // 0x67 'g' 262 | { 647, 7, 12, 9, 1, -11 }, // 0x68 'h' 263 | { 658, 2, 12, 4, 1, -11 }, // 0x69 'i' 264 | { 661, 3, 16, 4, 0, -11 }, // 0x6A 'j' 265 | { 667, 7, 12, 8, 1, -11 }, // 0x6B 'k' 266 | { 678, 3, 12, 4, 1, -11 }, // 0x6C 'l' 267 | { 683, 12, 8, 14, 1, -7 }, // 0x6D 'm' 268 | { 695, 7, 8, 9, 1, -7 }, // 0x6E 'n' 269 | { 702, 7, 8, 9, 1, -7 }, // 0x6F 'o' 270 | { 709, 7, 12, 9, 1, -7 }, // 0x70 'p' 271 | { 720, 7, 12, 9, 1, -7 }, // 0x71 'q' 272 | { 731, 5, 8, 6, 1, -7 }, // 0x72 'r' 273 | { 736, 6, 8, 7, 1, -7 }, // 0x73 's' 274 | { 742, 5, 10, 6, 0, -9 }, // 0x74 't' 275 | { 749, 6, 8, 9, 1, -7 }, // 0x75 'u' 276 | { 755, 7, 8, 8, 0, -7 }, // 0x76 'v' 277 | { 762, 12, 8, 12, 0, -7 }, // 0x77 'w' 278 | { 774, 7, 8, 7, 0, -7 }, // 0x78 'x' 279 | { 781, 7, 12, 8, 0, -7 }, // 0x79 'y' 280 | { 792, 6, 8, 7, 1, -7 }, // 0x7A 'z' 281 | { 798, 6, 15, 6, 0, -11 }, // 0x7B '{' 282 | { 810, 1, 14, 5, 2, -11 }, // 0x7C '|' 283 | { 812, 5, 15, 6, 1, -11 }, // 0x7D '}' 284 | { 822, 8, 3, 11, 1, -6 }, // 0x7E '~' 285 | { 825, 6, 16, 8, 1, -11 }, // 0x7F 286 | { 837, 10, 11, 12, 1, -10 }, // 0x80 287 | { 851, 6, 16, 8, 1, -11 }, // 0x81 288 | { 863, 6, 16, 8, 1, -11 }, // 0x82 289 | { 875, 6, 16, 8, 1, -11 }, // 0x83 290 | { 887, 6, 16, 8, 1, -11 }, // 0x84 291 | { 899, 6, 16, 8, 1, -11 }, // 0x85 292 | { 911, 6, 16, 8, 1, -11 }, // 0x86 293 | { 923, 6, 16, 8, 1, -11 }, // 0x87 294 | { 935, 6, 16, 8, 1, -11 }, // 0x88 295 | { 947, 6, 16, 8, 1, -11 }, // 0x89 296 | { 959, 6, 16, 8, 1, -11 }, // 0x8A 297 | { 971, 6, 16, 8, 1, -11 }, // 0x8B 298 | { 983, 6, 16, 8, 1, -11 }, // 0x8C 299 | { 995, 6, 16, 8, 1, -11 }, // 0x8D 300 | { 1007, 6, 16, 8, 1, -11 }, // 0x8E 301 | { 1019, 6, 16, 8, 1, -11 }, // 0x8F 302 | { 1031, 6, 16, 8, 1, -11 }, // 0x90 303 | { 1043, 6, 16, 8, 1, -11 }, // 0x91 304 | { 1055, 6, 16, 8, 1, -11 }, // 0x92 305 | { 1067, 6, 16, 8, 1, -11 }, // 0x93 306 | { 1079, 6, 16, 8, 1, -11 }, // 0x94 307 | { 1091, 6, 16, 8, 1, -11 }, // 0x95 308 | { 1103, 6, 16, 8, 1, -11 }, // 0x96 309 | { 1115, 6, 16, 8, 1, -11 }, // 0x97 310 | { 1127, 6, 16, 8, 1, -11 }, // 0x98 311 | { 1139, 6, 16, 8, 1, -11 }, // 0x99 312 | { 1151, 6, 16, 8, 1, -11 }, // 0x9A 313 | { 1163, 6, 16, 8, 1, -11 }, // 0x9B 314 | { 1175, 6, 16, 8, 1, -11 }, // 0x9C 315 | { 1187, 6, 16, 8, 1, -11 }, // 0x9D 316 | { 1199, 6, 16, 8, 1, -11 }, // 0x9E 317 | { 1211, 6, 16, 8, 1, -11 }, // 0x9F 318 | { 1223, 0, 0, 3, 0, 1 }, // 0xA0 319 | { 1223, 2, 12, 4, 1, -7 }, // 0xA1 320 | { 1226, 6, 12, 9, 1, -9 }, // 0xA2 321 | { 1235, 8, 11, 10, 1, -10 }, // 0xA3 322 | { 1246, 8, 8, 10, 1, -8 }, // 0xA4 323 | { 1254, 9, 11, 11, 1, -10 }, // 0xA5 324 | { 1267, 1, 14, 5, 2, -11 }, // 0xA6 325 | { 1269, 6, 12, 9, 1, -10 }, // 0xA7 326 | { 1278, 5, 2, 7, 1, -10 }, // 0xA8 327 | { 1280, 12, 11, 14, 1, -10 }, // 0xA9 328 | { 1297, 5, 6, 7, 1, -11 }, // 0xAA 329 | { 1301, 7, 7, 8, 1, -6 }, // 0xAB 330 | { 1308, 8, 4, 11, 1, -5 }, // 0xAC 331 | { 1312, 5, 1, 7, 1, -3 }, // 0xAD 332 | { 1313, 8, 8, 10, 1, -11 }, // 0xAE 333 | { 1321, 5, 1, 8, 1, -10 }, // 0xAF 334 | { 1322, 4, 4, 8, 2, -10 }, // 0xB0 335 | { 1324, 8, 9, 10, 1, -9 }, // 0xB1 336 | { 1333, 5, 7, 7, 1, -12 }, // 0xB2 337 | { 1338, 5, 7, 7, 1, -12 }, // 0xB3 338 | { 1343, 2, 3, 4, 1, -11 }, // 0xB4 339 | { 1344, 6, 12, 10, 2, -7 }, // 0xB5 340 | { 1353, 8, 14, 11, 1, -10 }, // 0xB6 341 | { 1367, 2, 2, 4, 1, -4 }, // 0xB7 342 | { 1368, 3, 4, 5, 1, 1 }, // 0xB8 343 | { 1370, 4, 7, 5, 1, -12 }, // 0xB9 344 | { 1374, 5, 6, 7, 1, -11 }, // 0xBA 345 | { 1378, 6, 7, 8, 1, -6 }, // 0xBB 346 | { 1384, 16, 12, 17, 1, -11 }, // 0xBC 347 | { 1408, 15, 12, 17, 1, -11 }, // 0xBD 348 | { 1431, 17, 12, 19, 1, -11 }, // 0xBE 349 | { 1457, 6, 12, 7, 1, -7 }, // 0xBF 350 | { 1466, 9, 14, 11, 1, -13 }, // 0xC0 351 | { 1482, 9, 14, 11, 1, -13 }, // 0xC1 352 | { 1498, 9, 15, 11, 1, -14 }, // 0xC2 353 | { 1515, 9, 14, 11, 1, -13 }, // 0xC3 354 | { 1531, 9, 14, 11, 1, -13 }, // 0xC4 355 | { 1547, 9, 15, 11, 1, -14 }, // 0xC5 356 | { 1564, 13, 11, 15, 1, -10 }, // 0xC6 357 | { 1582, 9, 15, 10, 1, -10 }, // 0xC7 358 | { 1599, 6, 14, 9, 2, -13 }, // 0xC8 359 | { 1610, 6, 14, 9, 2, -13 }, // 0xC9 360 | { 1621, 6, 15, 9, 2, -14 }, // 0xCA 361 | { 1633, 6, 14, 9, 2, -13 }, // 0xCB 362 | { 1644, 3, 14, 5, 0, -13 }, // 0xCC 363 | { 1650, 3, 14, 5, 2, -13 }, // 0xCD 364 | { 1656, 5, 15, 5, 0, -14 }, // 0xCE 365 | { 1666, 5, 14, 5, 0, -13 }, // 0xCF 366 | { 1675, 10, 11, 11, 0, -10 }, // 0xD0 367 | { 1689, 8, 14, 12, 2, -13 }, // 0xD1 368 | { 1703, 10, 14, 12, 1, -13 }, // 0xD2 369 | { 1721, 10, 14, 12, 1, -13 }, // 0xD3 370 | { 1739, 10, 14, 12, 1, -13 }, // 0xD4 371 | { 1757, 10, 14, 12, 1, -13 }, // 0xD5 372 | { 1775, 10, 14, 12, 1, -13 }, // 0xD6 373 | { 1793, 7, 7, 9, 1, -8 }, // 0xD7 374 | { 1800, 10, 13, 12, 1, -11 }, // 0xD8 375 | { 1817, 9, 14, 11, 1, -13 }, // 0xD9 376 | { 1833, 9, 14, 11, 1, -13 }, // 0xDA 377 | { 1849, 9, 15, 11, 1, -14 }, // 0xDB 378 | { 1866, 9, 14, 11, 1, -13 }, // 0xDC 379 | { 1882, 9, 14, 10, 0, -13 }, // 0xDD 380 | { 1898, 7, 11, 10, 2, -10 }, // 0xDE 381 | { 1908, 8, 12, 9, 1, -11 }, // 0xDF 382 | { 1920, 6, 12, 8, 1, -11 }, // 0xE0 383 | { 1929, 6, 12, 8, 1, -11 }, // 0xE1 384 | { 1938, 6, 12, 8, 1, -11 }, // 0xE2 385 | { 1947, 6, 11, 8, 1, -10 }, // 0xE3 386 | { 1956, 6, 12, 8, 1, -11 }, // 0xE4 387 | { 1965, 6, 12, 8, 1, -11 }, // 0xE5 388 | { 1974, 11, 8, 13, 1, -7 }, // 0xE6 389 | { 1985, 6, 12, 7, 1, -7 }, // 0xE7 390 | { 1994, 6, 12, 8, 1, -11 }, // 0xE8 391 | { 2003, 6, 12, 8, 1, -11 }, // 0xE9 392 | { 2012, 6, 12, 8, 1, -11 }, // 0xEA 393 | { 2021, 6, 12, 8, 1, -11 }, // 0xEB 394 | { 2030, 3, 12, 4, 0, -11 }, // 0xEC 395 | { 2035, 3, 12, 4, 1, -11 }, // 0xED 396 | { 2040, 4, 12, 4, 0, -11 }, // 0xEE 397 | { 2046, 4, 12, 4, 0, -11 }, // 0xEF 398 | { 2052, 7, 12, 9, 1, -11 }, // 0xF0 399 | { 2063, 7, 11, 9, 1, -10 }, // 0xF1 400 | { 2073, 7, 12, 9, 1, -11 }, // 0xF2 401 | { 2084, 7, 12, 9, 1, -11 }, // 0xF3 402 | { 2095, 7, 12, 9, 1, -11 }, // 0xF4 403 | { 2106, 7, 11, 9, 1, -10 }, // 0xF5 404 | { 2116, 7, 12, 9, 1, -11 }, // 0xF6 405 | { 2127, 8, 8, 10, 1, -8 }, // 0xF7 406 | { 2135, 7, 10, 9, 1, -8 }, // 0xF8 407 | { 2144, 6, 12, 9, 1, -11 }, // 0xF9 408 | { 2153, 6, 12, 9, 1, -11 }, // 0xFA 409 | { 2162, 6, 12, 9, 1, -11 }, // 0xFB 410 | { 2171, 6, 12, 9, 1, -11 }, // 0xFC 411 | { 2180, 7, 16, 8, 0, -11 }, // 0xFD 412 | { 2194, 7, 16, 9, 1, -11 }, // 0xFE 413 | { 2208, 7, 16, 8, 0, -11 } }; // 0xFF 414 | 415 | const GFXfont Cantarell_Regular_euro8pt8b PROGMEM = { 416 | (uint8_t *)Cantarell_Regular_euro8pt8bBitmaps, 417 | (GFXglyph *)Cantarell_Regular_euro8pt8bGlyphs, 418 | 0x20, 0xFF, 19 }; 419 | 420 | // Approx. 3797 bytes 421 | -------------------------------------------------------------------------------- /Fonts/Cantarell_Bold_euro9pt8b.h: -------------------------------------------------------------------------------- 1 | const uint8_t Cantarell_Bold_euro9pt8bBitmaps[] PROGMEM = { 2 | 0xDB, 0x6D, 0xB6, 0xC3, 0x7C, 0xEF, 0xBE, 0xDB, 0x4C, 0x33, 0x0C, 0xC3, 3 | 0x33, 0xFF, 0xFF, 0xCC, 0xC3, 0x30, 0xCC, 0xFF, 0xFF, 0xF3, 0x30, 0xCC, 4 | 0x33, 0x00, 0x0C, 0x06, 0x0F, 0xCF, 0xEE, 0x06, 0x03, 0x80, 0xF0, 0x7F, 5 | 0x07, 0xC0, 0xE0, 0x38, 0x3F, 0xF9, 0xF8, 0x18, 0x0C, 0x06, 0x00, 0x78, 6 | 0x30, 0x7C, 0x70, 0xCC, 0x60, 0xCC, 0xE0, 0xCC, 0xC0, 0xCD, 0x9C, 0x7D, 7 | 0xBE, 0x7B, 0x33, 0x03, 0x63, 0x06, 0x63, 0x06, 0x33, 0x0C, 0x3E, 0x0C, 8 | 0x1C, 0x1E, 0x07, 0xE1, 0xCC, 0x31, 0x83, 0x70, 0x7C, 0x1E, 0x07, 0xE6, 9 | 0xCE, 0xD8, 0xF3, 0x0E, 0x3F, 0xE3, 0xC4, 0xFF, 0x6C, 0x36, 0x6C, 0xCC, 10 | 0xCC, 0xCC, 0xCC, 0x66, 0x32, 0x43, 0x18, 0x63, 0x18, 0xC7, 0x39, 0xCC, 11 | 0x63, 0x19, 0x8C, 0x00, 0x18, 0x58, 0x6F, 0x3C, 0x3C, 0x6F, 0x58, 0x18, 12 | 0x1C, 0x0E, 0x07, 0x03, 0x8F, 0xFF, 0xFC, 0x70, 0x38, 0x1C, 0x0E, 0x00, 13 | 0xFF, 0x6C, 0xFF, 0xC0, 0xFF, 0x80, 0x0C, 0x71, 0x86, 0x18, 0xE3, 0x0C, 14 | 0x31, 0xC6, 0x18, 0x63, 0x8C, 0x00, 0x1E, 0x3F, 0x98, 0xFC, 0x3C, 0x1E, 15 | 0x0F, 0x07, 0x83, 0xC1, 0xF0, 0xD8, 0xEF, 0xE3, 0xE0, 0x1C, 0x3C, 0xFC, 16 | 0x5C, 0x1C, 0x1C, 0x1C, 0x1C, 0x1C, 0x1C, 0x1C, 0x7F, 0x7F, 0x3E, 0x7F, 17 | 0x90, 0xC0, 0x70, 0x38, 0x18, 0x1C, 0x0C, 0x0C, 0x0E, 0x0E, 0x0F, 0xF7, 18 | 0xF8, 0x7C, 0xFE, 0x87, 0x07, 0x06, 0x3C, 0x3E, 0x07, 0x03, 0x03, 0x87, 19 | 0xFF, 0xFC, 0x03, 0x00, 0xE0, 0x1C, 0x07, 0x81, 0xB0, 0x26, 0x0C, 0xC3, 20 | 0x18, 0x7F, 0xFF, 0xFC, 0x0C, 0x01, 0x80, 0x30, 0x7F, 0x7F, 0xE0, 0xE0, 21 | 0xE0, 0xFC, 0xFF, 0x07, 0x03, 0x03, 0x87, 0xFE, 0x7C, 0x1F, 0x1F, 0x9C, 22 | 0x1C, 0x0C, 0x06, 0xF3, 0xFD, 0xC7, 0xC3, 0xF0, 0xF8, 0xCF, 0xE3, 0xE0, 23 | 0xFF, 0xFF, 0xC0, 0xE0, 0x60, 0x70, 0x30, 0x38, 0x18, 0x0C, 0x0E, 0x06, 24 | 0x07, 0x03, 0x00, 0x3E, 0x3F, 0xB8, 0xD8, 0x6E, 0x33, 0xF0, 0xF8, 0xDE, 25 | 0xC3, 0xE0, 0xF8, 0xFF, 0xE3, 0xE0, 0x3C, 0x3F, 0x31, 0xD8, 0x6C, 0x3F, 26 | 0x1F, 0xFE, 0xF7, 0x03, 0x81, 0x81, 0xDF, 0xCF, 0xC0, 0xFF, 0x80, 0x3F, 27 | 0xE0, 0xDF, 0x80, 0x07, 0xDB, 0x40, 0x01, 0x07, 0x1F, 0xF8, 0xE0, 0xF8, 28 | 0x3E, 0x0F, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0xFF, 0xFF, 0x80, 0xE0, 0x78, 29 | 0x1E, 0x07, 0x0F, 0x3E, 0xF0, 0xC0, 0x7D, 0xFE, 0x18, 0x30, 0x61, 0x87, 30 | 0x0C, 0x18, 0x00, 0x61, 0xC1, 0x80, 0x07, 0xE0, 0x3F, 0xF0, 0xE0, 0x73, 31 | 0x00, 0x76, 0x3A, 0x78, 0xFC, 0xF3, 0x19, 0xE6, 0x33, 0xCC, 0x67, 0x98, 32 | 0xCF, 0x3F, 0xF3, 0x3D, 0xC6, 0x00, 0x07, 0x00, 0x07, 0xF8, 0x03, 0xE0, 33 | 0x07, 0x00, 0xF0, 0x0F, 0x00, 0xF8, 0x19, 0x81, 0x98, 0x19, 0xC3, 0x0C, 34 | 0x3F, 0xC7, 0xFE, 0x70, 0x66, 0x06, 0xE0, 0x70, 0xFE, 0x3F, 0xCE, 0x3B, 35 | 0x86, 0xE3, 0xBF, 0xCF, 0xFB, 0x87, 0xE1, 0xF8, 0x3E, 0x1F, 0xFE, 0xFF, 36 | 0x00, 0x0F, 0x8F, 0xE7, 0x03, 0x80, 0xC0, 0x30, 0x0C, 0x03, 0x00, 0xC0, 37 | 0x38, 0x07, 0x00, 0xFE, 0x1F, 0x80, 0xFF, 0x1F, 0xF3, 0x87, 0x70, 0x7E, 38 | 0x0F, 0xC0, 0xF8, 0x1F, 0x03, 0xE0, 0x7C, 0x1B, 0x87, 0x7F, 0xCF, 0xE0, 39 | 0xFF, 0xFF, 0xF8, 0x1C, 0x0E, 0x07, 0xFB, 0xFD, 0xC0, 0xE0, 0x70, 0x38, 40 | 0x1F, 0xFF, 0xF8, 0xFF, 0xFF, 0xF8, 0x1C, 0x0E, 0x07, 0xFB, 0xFD, 0xC0, 41 | 0xE0, 0x70, 0x38, 0x1C, 0x0E, 0x00, 0x0F, 0xC7, 0xF9, 0xC1, 0x70, 0x0C, 42 | 0x01, 0x80, 0x30, 0xFE, 0x1F, 0xC0, 0x7C, 0x0D, 0xC1, 0x9F, 0xF1, 0xF8, 43 | 0xE0, 0xFC, 0x1F, 0x83, 0xF0, 0x7E, 0x0F, 0xFF, 0xFF, 0xFF, 0x07, 0xE0, 44 | 0xFC, 0x1F, 0x83, 0xF0, 0x7E, 0x0E, 0xFF, 0xFF, 0xFF, 0xFF, 0xFE, 0x0E, 45 | 0x1C, 0x38, 0x70, 0xE1, 0xC3, 0x87, 0x0E, 0x1C, 0x33, 0xE7, 0x80, 0xC3, 46 | 0xB1, 0xCC, 0x63, 0x30, 0xDC, 0x3E, 0x0F, 0x83, 0x60, 0xDC, 0x33, 0x8C, 47 | 0x73, 0x1C, 0xC3, 0x80, 0xE0, 0xE0, 0xE0, 0xE0, 0xE0, 0xE0, 0xE0, 0xE0, 48 | 0xE0, 0xE0, 0xE0, 0xFF, 0xFF, 0xE0, 0x1F, 0x01, 0xFC, 0x0F, 0xE0, 0xFF, 49 | 0x87, 0xFC, 0x6F, 0xB3, 0x7D, 0xB3, 0xE7, 0x9F, 0x38, 0xF8, 0xC7, 0xC0, 50 | 0x3E, 0x01, 0x80, 0xE0, 0x7E, 0x0F, 0xE1, 0xFC, 0x3F, 0xC7, 0xD8, 0xF9, 51 | 0x9F, 0x3B, 0xE3, 0x7C, 0x7F, 0x87, 0xF0, 0x7E, 0x0E, 0x1F, 0x03, 0xFC, 52 | 0x70, 0xEE, 0x06, 0xC0, 0x7C, 0x07, 0xC0, 0x7C, 0x07, 0xC0, 0x7E, 0x06, 53 | 0x70, 0xE3, 0xFC, 0x1F, 0x00, 0xFE, 0x7F, 0xB8, 0xFC, 0x3E, 0x1F, 0x0F, 54 | 0x8F, 0xFE, 0xFE, 0x70, 0x38, 0x1C, 0x0E, 0x00, 0x1F, 0x03, 0xFC, 0x70, 55 | 0xEE, 0x06, 0xC0, 0x7C, 0x07, 0xC0, 0x7C, 0x27, 0xC7, 0x7E, 0x3E, 0x71, 56 | 0xE3, 0xFE, 0x1F, 0x70, 0x00, 0xFF, 0x3F, 0xEE, 0x3B, 0x86, 0xE1, 0xB8, 57 | 0x6F, 0xF3, 0xF8, 0xE7, 0x38, 0xCE, 0x3B, 0x86, 0xE1, 0xC0, 0x3F, 0x3F, 58 | 0xB8, 0x58, 0x0E, 0x07, 0xC1, 0xF8, 0x1E, 0x03, 0x81, 0xE0, 0xDF, 0xE7, 59 | 0xE0, 0xFF, 0xFF, 0xF0, 0xC0, 0x30, 0x0C, 0x03, 0x00, 0xC0, 0x30, 0x0C, 60 | 0x03, 0x00, 0xC0, 0x30, 0x0C, 0x00, 0xE0, 0xF8, 0x3E, 0x0F, 0x83, 0xE0, 61 | 0xF8, 0x3E, 0x0F, 0x83, 0xE0, 0xF8, 0x37, 0x1D, 0xFE, 0x1F, 0x00, 0xE0, 62 | 0x6C, 0x0D, 0xC3, 0xB8, 0x63, 0x0C, 0x63, 0x0E, 0x60, 0xCC, 0x1B, 0x03, 63 | 0xE0, 0x3C, 0x07, 0x00, 0xE0, 0xE0, 0xC1, 0xD8, 0x78, 0x66, 0x1E, 0x19, 64 | 0xC7, 0x86, 0x31, 0xE3, 0x0C, 0xDC, 0xC3, 0x33, 0x30, 0xEC, 0xDC, 0x1B, 65 | 0x3E, 0x07, 0x87, 0x81, 0xE1, 0xE0, 0x38, 0x70, 0x0E, 0x1C, 0x00, 0x60, 66 | 0xEE, 0x38, 0xE6, 0x0D, 0xC1, 0xF0, 0x1C, 0x03, 0x80, 0x78, 0x1B, 0x07, 67 | 0x70, 0xC7, 0x38, 0x6E, 0x0E, 0xE0, 0xEC, 0x19, 0xC7, 0x18, 0xC1, 0xB8, 68 | 0x3E, 0x03, 0xC0, 0x70, 0x0E, 0x01, 0xC0, 0x38, 0x07, 0x00, 0xE0, 0xFF, 69 | 0xFF, 0xF0, 0x38, 0x1C, 0x06, 0x03, 0x81, 0xC0, 0x60, 0x30, 0x1C, 0x0E, 70 | 0x03, 0xFF, 0xFF, 0xC0, 0xFF, 0xF9, 0xCE, 0x73, 0x9C, 0xE7, 0x39, 0xCE, 71 | 0x73, 0xFF, 0xE1, 0x86, 0x18, 0x70, 0xC3, 0x0C, 0x38, 0x61, 0x86, 0x0C, 72 | 0x30, 0xC0, 0xFF, 0xC6, 0x31, 0x8C, 0x63, 0x18, 0xC6, 0x31, 0x8F, 0xFF, 73 | 0x1C, 0x07, 0x03, 0xE0, 0xD8, 0x77, 0x18, 0xCE, 0x3B, 0x06, 0x41, 0x00, 74 | 0xFF, 0xFF, 0x19, 0x90, 0x7D, 0xFC, 0x18, 0x37, 0xF8, 0xF1, 0xFF, 0xFE, 75 | 0xC0, 0xC0, 0xC0, 0xC0, 0xDE, 0xFF, 0xC7, 0xC3, 0xC3, 0xC3, 0xE3, 0xFF, 76 | 0xDC, 0x3E, 0xFB, 0x86, 0x0C, 0x18, 0x38, 0x7E, 0x3C, 0x03, 0x03, 0x03, 77 | 0x03, 0x3B, 0x7F, 0xE7, 0xC3, 0xC3, 0xC3, 0xE3, 0xFF, 0x7B, 0x3C, 0x7E, 78 | 0xC6, 0xC7, 0xFF, 0xC0, 0xE0, 0x7E, 0x3E, 0x1E, 0x7C, 0xC1, 0x8F, 0xDF, 79 | 0x8C, 0x18, 0x30, 0x60, 0xC1, 0x83, 0x00, 0x3F, 0x7F, 0xE7, 0xC3, 0xC3, 80 | 0xC3, 0xE3, 0xFF, 0x7B, 0x03, 0x07, 0x7E, 0x7C, 0xC0, 0xC0, 0xC0, 0xC0, 81 | 0xDE, 0xFF, 0xE7, 0xC3, 0xC3, 0xC3, 0xC3, 0xC3, 0xC3, 0xFF, 0x0F, 0xFF, 82 | 0xFF, 0xFE, 0x77, 0x60, 0x77, 0x77, 0x77, 0x77, 0x76, 0x6E, 0x80, 0xC0, 83 | 0xC0, 0xC0, 0xC0, 0xC7, 0xCE, 0xCC, 0xD8, 0xF8, 0xDC, 0xCE, 0xC6, 0xC7, 84 | 0xCC, 0xCC, 0xCC, 0xCC, 0xCC, 0xCF, 0x70, 0xDE, 0x73, 0xFF, 0xEE, 0x71, 85 | 0xF0, 0xC7, 0xC3, 0x1F, 0x0C, 0x7C, 0x31, 0xF0, 0xC7, 0xC3, 0x1C, 0xDE, 86 | 0xFF, 0xE7, 0xC3, 0xC3, 0xC3, 0xC3, 0xC3, 0xC3, 0x3C, 0x7E, 0xC7, 0xC3, 87 | 0xC3, 0xC3, 0xE7, 0xFE, 0x3C, 0xDE, 0xFF, 0xE3, 0xC3, 0xC3, 0xC3, 0xE3, 88 | 0xFF, 0xDC, 0xC0, 0xC0, 0xC0, 0xC0, 0x3F, 0x7F, 0xE7, 0xC3, 0xC3, 0xC3, 89 | 0xE3, 0xFF, 0x7B, 0x03, 0x03, 0x03, 0x03, 0xDF, 0xFE, 0x30, 0xC3, 0x0C, 90 | 0x30, 0xC0, 0x7D, 0xFB, 0x07, 0x87, 0xC1, 0xC3, 0xFE, 0xF8, 0x71, 0xCF, 91 | 0xFF, 0x71, 0xC7, 0x1C, 0x30, 0xF1, 0xC0, 0xC3, 0xC3, 0xC3, 0xC3, 0xC3, 92 | 0xC3, 0xE7, 0xFF, 0x7B, 0xE1, 0xB1, 0x98, 0xCE, 0x63, 0x61, 0xB0, 0xD8, 93 | 0x38, 0x1C, 0x00, 0xE3, 0x8D, 0x8E, 0x36, 0x79, 0x99, 0xE6, 0x36, 0xD8, 94 | 0xD3, 0x43, 0xCF, 0x07, 0x1C, 0x18, 0x60, 0xE3, 0x3B, 0x8D, 0x87, 0x81, 95 | 0x80, 0xE0, 0xF8, 0xCE, 0xE3, 0x00, 0xE3, 0xB1, 0x98, 0xCE, 0x63, 0x61, 96 | 0xB0, 0xD8, 0x38, 0x1C, 0x0C, 0x06, 0x07, 0x03, 0x00, 0xFF, 0xFC, 0x70, 97 | 0xC3, 0x0E, 0x38, 0x7F, 0xFE, 0x0E, 0x3C, 0x60, 0xC1, 0x87, 0x0C, 0x70, 98 | 0x70, 0x60, 0xE0, 0xC1, 0x83, 0x07, 0x87, 0xFF, 0xFF, 0xFF, 0xFF, 0xE1, 99 | 0xE0, 0xE0, 0xC1, 0x83, 0x06, 0x0E, 0x0E, 0x30, 0x60, 0xC1, 0x87, 0x3C, 100 | 0x70, 0x39, 0xBF, 0xF1, 0xC0, 0xFF, 0x06, 0x0C, 0x18, 0x30, 0x60, 0xC1, 101 | 0x83, 0x06, 0x0C, 0x18, 0x30, 0x60, 0xC1, 0xFE, 0x07, 0xE3, 0xFC, 0xE0, 102 | 0x18, 0x0F, 0xFC, 0xE0, 0x1C, 0x07, 0xFE, 0x70, 0x07, 0x00, 0xF0, 0x0F, 103 | 0xF0, 0x7C, 0xFF, 0x06, 0x0C, 0x18, 0x30, 0x60, 0xC1, 0x83, 0x06, 0x0C, 104 | 0x18, 0x30, 0x60, 0xC1, 0xFE, 0xFF, 0x06, 0x0C, 0x18, 0x30, 0x60, 0xC1, 105 | 0x83, 0x06, 0x0C, 0x18, 0x30, 0x60, 0xC1, 0xFE, 0xFF, 0x06, 0x0C, 0x18, 106 | 0x30, 0x60, 0xC1, 0x83, 0x06, 0x0C, 0x18, 0x30, 0x60, 0xC1, 0xFE, 0xFF, 107 | 0x06, 0x0C, 0x18, 0x30, 0x60, 0xC1, 0x83, 0x06, 0x0C, 0x18, 0x30, 0x60, 108 | 0xC1, 0xFE, 0xFF, 0x06, 0x0C, 0x18, 0x30, 0x60, 0xC1, 0x83, 0x06, 0x0C, 109 | 0x18, 0x30, 0x60, 0xC1, 0xFE, 0xFF, 0x06, 0x0C, 0x18, 0x30, 0x60, 0xC1, 110 | 0x83, 0x06, 0x0C, 0x18, 0x30, 0x60, 0xC1, 0xFE, 0xFF, 0x06, 0x0C, 0x18, 111 | 0x30, 0x60, 0xC1, 0x83, 0x06, 0x0C, 0x18, 0x30, 0x60, 0xC1, 0xFE, 0xFF, 112 | 0x06, 0x0C, 0x18, 0x30, 0x60, 0xC1, 0x83, 0x06, 0x0C, 0x18, 0x30, 0x60, 113 | 0xC1, 0xFE, 0xFF, 0x06, 0x0C, 0x18, 0x30, 0x60, 0xC1, 0x83, 0x06, 0x0C, 114 | 0x18, 0x30, 0x60, 0xC1, 0xFE, 0xFF, 0x06, 0x0C, 0x18, 0x30, 0x60, 0xC1, 115 | 0x83, 0x06, 0x0C, 0x18, 0x30, 0x60, 0xC1, 0xFE, 0xFF, 0x06, 0x0C, 0x18, 116 | 0x30, 0x60, 0xC1, 0x83, 0x06, 0x0C, 0x18, 0x30, 0x60, 0xC1, 0xFE, 0xFF, 117 | 0x06, 0x0C, 0x18, 0x30, 0x60, 0xC1, 0x83, 0x06, 0x0C, 0x18, 0x30, 0x60, 118 | 0xC1, 0xFE, 0xFF, 0x06, 0x0C, 0x18, 0x30, 0x60, 0xC1, 0x83, 0x06, 0x0C, 119 | 0x18, 0x30, 0x60, 0xC1, 0xFE, 0xFF, 0x06, 0x0C, 0x18, 0x30, 0x60, 0xC1, 120 | 0x83, 0x06, 0x0C, 0x18, 0x30, 0x60, 0xC1, 0xFE, 0xFF, 0x06, 0x0C, 0x18, 121 | 0x30, 0x60, 0xC1, 0x83, 0x06, 0x0C, 0x18, 0x30, 0x60, 0xC1, 0xFE, 0xFF, 122 | 0x06, 0x0C, 0x18, 0x30, 0x60, 0xC1, 0x83, 0x06, 0x0C, 0x18, 0x30, 0x60, 123 | 0xC1, 0xFE, 0xFF, 0x06, 0x0C, 0x18, 0x30, 0x60, 0xC1, 0x83, 0x06, 0x0C, 124 | 0x18, 0x30, 0x60, 0xC1, 0xFE, 0xFF, 0x06, 0x0C, 0x18, 0x30, 0x60, 0xC1, 125 | 0x83, 0x06, 0x0C, 0x18, 0x30, 0x60, 0xC1, 0xFE, 0xFF, 0x06, 0x0C, 0x18, 126 | 0x30, 0x60, 0xC1, 0x83, 0x06, 0x0C, 0x18, 0x30, 0x60, 0xC1, 0xFE, 0xFF, 127 | 0x06, 0x0C, 0x18, 0x30, 0x60, 0xC1, 0x83, 0x06, 0x0C, 0x18, 0x30, 0x60, 128 | 0xC1, 0xFE, 0xFF, 0x06, 0x0C, 0x18, 0x30, 0x60, 0xC1, 0x83, 0x06, 0x0C, 129 | 0x18, 0x30, 0x60, 0xC1, 0xFE, 0xFF, 0x06, 0x0C, 0x18, 0x30, 0x60, 0xC1, 130 | 0x83, 0x06, 0x0C, 0x18, 0x30, 0x60, 0xC1, 0xFE, 0xFF, 0x06, 0x0C, 0x18, 131 | 0x30, 0x60, 0xC1, 0x83, 0x06, 0x0C, 0x18, 0x30, 0x60, 0xC1, 0xFE, 0xFF, 132 | 0x06, 0x0C, 0x18, 0x30, 0x60, 0xC1, 0x83, 0x06, 0x0C, 0x18, 0x30, 0x60, 133 | 0xC1, 0xFE, 0xFF, 0x06, 0x0C, 0x18, 0x30, 0x60, 0xC1, 0x83, 0x06, 0x0C, 134 | 0x18, 0x30, 0x60, 0xC1, 0xFE, 0xFF, 0x06, 0x0C, 0x18, 0x30, 0x60, 0xC1, 135 | 0x83, 0x06, 0x0C, 0x18, 0x30, 0x60, 0xC1, 0xFE, 0xFF, 0x06, 0x0C, 0x18, 136 | 0x30, 0x60, 0xC1, 0x83, 0x06, 0x0C, 0x18, 0x30, 0x60, 0xC1, 0xFE, 0xFF, 137 | 0x06, 0x0C, 0x18, 0x30, 0x60, 0xC1, 0x83, 0x06, 0x0C, 0x18, 0x30, 0x60, 138 | 0xC1, 0xFE, 0xFF, 0x06, 0x0C, 0x18, 0x30, 0x60, 0xC1, 0x83, 0x06, 0x0C, 139 | 0x18, 0x30, 0x60, 0xC1, 0xFE, 0xFF, 0x06, 0x0C, 0x18, 0x30, 0x60, 0xC1, 140 | 0x83, 0x06, 0x0C, 0x18, 0x30, 0x60, 0xC1, 0xFE, 0xFF, 0x06, 0x0C, 0x18, 141 | 0x30, 0x60, 0xC1, 0x83, 0x06, 0x0C, 0x18, 0x30, 0x60, 0xC1, 0xFE, 0xDF, 142 | 0x0D, 0xB6, 0xDB, 0x60, 0x18, 0x30, 0x7B, 0xF6, 0x18, 0x30, 0x70, 0xE0, 143 | 0xFC, 0xF8, 0xC1, 0x80, 0x0F, 0x9F, 0x8C, 0x06, 0x07, 0x03, 0x83, 0xF9, 144 | 0xFC, 0x70, 0x38, 0x18, 0x1F, 0xFF, 0xF8, 0x40, 0xBF, 0xF7, 0xF9, 0xCE, 145 | 0x61, 0x98, 0x67, 0x38, 0xFE, 0x7F, 0xD0, 0x20, 0xE0, 0xEC, 0x19, 0xC6, 146 | 0x18, 0xC3, 0xB0, 0x36, 0x1F, 0xF3, 0xFE, 0x0E, 0x01, 0xC1, 0xFF, 0x07, 147 | 0x00, 0xE0, 0xFF, 0xF0, 0x0F, 0xFF, 0x3E, 0xFF, 0x87, 0x07, 0xCF, 0xF9, 148 | 0xF3, 0x7E, 0x7C, 0x18, 0x3F, 0xEF, 0x80, 0xCD, 0xDF, 0x30, 0x0F, 0x81, 149 | 0xC7, 0x18, 0x0C, 0x8F, 0x2C, 0xF9, 0xCC, 0x0E, 0x60, 0x7B, 0x03, 0xDF, 150 | 0x9A, 0x3C, 0x98, 0x0C, 0x71, 0xC0, 0xF8, 0x00, 0xF8, 0x5F, 0x98, 0xFC, 151 | 0x19, 0x99, 0x99, 0xCC, 0xC6, 0x61, 0x98, 0xEE, 0xFF, 0xFF, 0xC0, 0x60, 152 | 0x30, 0x18, 0xFF, 0xC0, 0x3E, 0x31, 0x97, 0x72, 0xD9, 0xCC, 0xA5, 0x04, 153 | 0x7C, 0xFF, 0xF0, 0x79, 0xEC, 0xF3, 0x78, 0xC0, 0x18, 0x0C, 0x06, 0x1F, 154 | 0xFF, 0xF8, 0xC0, 0x60, 0x30, 0xFF, 0xFF, 0xC0, 0x78, 0xF8, 0x38, 0x70, 155 | 0xC3, 0x0C, 0x3F, 0x7E, 0x38, 0xF8, 0x18, 0x73, 0x87, 0xC1, 0xBF, 0x7C, 156 | 0x4F, 0x40, 0xC7, 0xC7, 0xC7, 0xC7, 0xC7, 0xC7, 0xC7, 0xFF, 0xFB, 0xC0, 157 | 0xC0, 0xC0, 0xC0, 0x3F, 0xDF, 0xFF, 0xCF, 0xF3, 0xFC, 0xFF, 0x37, 0xCC, 158 | 0xF3, 0x0C, 0xC3, 0x30, 0xCC, 0x33, 0x0C, 0xC3, 0x30, 0xCC, 0xFF, 0x80, 159 | 0x47, 0x3F, 0x19, 0xE7, 0x86, 0x18, 0x61, 0x9F, 0x7C, 0x7B, 0x38, 0xE3, 160 | 0xCF, 0xE0, 0x66, 0x3B, 0x8C, 0xC3, 0x33, 0xB9, 0x99, 0x98, 0x18, 0x00, 161 | 0x07, 0x83, 0x80, 0x78, 0x30, 0x01, 0x83, 0x00, 0x18, 0x60, 0x01, 0x86, 162 | 0x0C, 0x18, 0xE1, 0xC7, 0xCC, 0x1C, 0x7C, 0xC3, 0xC0, 0x18, 0x6C, 0x01, 163 | 0x87, 0xF0, 0x38, 0xFF, 0x03, 0x00, 0xC0, 0x30, 0x0C, 0x18, 0x00, 0x0F, 164 | 0x07, 0x01, 0xE0, 0xC0, 0x0C, 0x18, 0x01, 0x86, 0x00, 0x30, 0xCF, 0x06, 165 | 0x39, 0xF3, 0xE6, 0x07, 0x7C, 0xC0, 0xE0, 0x30, 0x18, 0x06, 0x07, 0x01, 166 | 0xC1, 0xC0, 0x30, 0x7E, 0x06, 0x0F, 0xC0, 0x7C, 0x0C, 0x03, 0xF0, 0xE0, 167 | 0x01, 0x86, 0x00, 0x78, 0x30, 0x03, 0xC3, 0x00, 0x03, 0x18, 0x38, 0x19, 168 | 0xC1, 0xCF, 0xCC, 0x16, 0x38, 0x61, 0xB0, 0x06, 0x19, 0x80, 0x30, 0xFE, 169 | 0x03, 0x07, 0xF0, 0x18, 0x03, 0x00, 0x18, 0x38, 0x18, 0x00, 0x18, 0x18, 170 | 0x38, 0x70, 0x60, 0xE0, 0xE0, 0x7F, 0x3E, 0x00, 0x00, 0xC0, 0x0E, 0x00, 171 | 0x60, 0x00, 0x00, 0x70, 0x0F, 0x00, 0xF0, 0x0F, 0x81, 0x98, 0x19, 0x81, 172 | 0x9C, 0x30, 0xC3, 0xFC, 0x7F, 0xE7, 0x06, 0x60, 0x6E, 0x07, 0x00, 0x00, 173 | 0x18, 0x03, 0x80, 0x60, 0x00, 0x00, 0x70, 0x0F, 0x00, 0xF0, 0x0F, 0x81, 174 | 0x98, 0x19, 0x81, 0x9C, 0x30, 0xC3, 0xFC, 0x7F, 0xE7, 0x06, 0x60, 0x6E, 175 | 0x07, 0x07, 0x00, 0xF8, 0x19, 0x80, 0x00, 0x07, 0x00, 0xF0, 0x0F, 0x00, 176 | 0xF8, 0x19, 0x81, 0x98, 0x19, 0xC3, 0x0C, 0x3F, 0xC7, 0xFE, 0x70, 0x66, 177 | 0x06, 0xE0, 0x70, 0x0C, 0x81, 0xF8, 0x13, 0x00, 0x00, 0x07, 0x00, 0xF0, 178 | 0x0F, 0x00, 0xF8, 0x19, 0x81, 0x98, 0x19, 0xC3, 0x0C, 0x3F, 0xC7, 0xFE, 179 | 0x70, 0x66, 0x06, 0xE0, 0x70, 0x19, 0x81, 0x98, 0x19, 0x80, 0x00, 0x07, 180 | 0x00, 0xF0, 0x0F, 0x00, 0xF8, 0x19, 0x81, 0x98, 0x19, 0xC3, 0x0C, 0x3F, 181 | 0xC7, 0xFE, 0x70, 0x66, 0x06, 0xE0, 0x70, 0x07, 0x00, 0xD0, 0x09, 0x00, 182 | 0xF0, 0x00, 0x00, 0x70, 0x0F, 0x00, 0xF0, 0x0F, 0x81, 0x98, 0x19, 0x81, 183 | 0x9C, 0x30, 0xC3, 0xFC, 0x7F, 0xE7, 0x06, 0x60, 0x6E, 0x07, 0x01, 0xFF, 184 | 0x80, 0xFF, 0xC0, 0xF8, 0x00, 0x7C, 0x00, 0x6E, 0x00, 0x37, 0xF8, 0x33, 185 | 0xFC, 0x39, 0xC0, 0x1F, 0xE0, 0x1F, 0xF0, 0x0C, 0x38, 0x0E, 0x1F, 0xF6, 186 | 0x0F, 0xF8, 0x0F, 0x8F, 0xE7, 0x03, 0x80, 0xC0, 0x30, 0x0C, 0x03, 0x00, 187 | 0xC0, 0x38, 0x07, 0x00, 0xFE, 0x1F, 0x83, 0x00, 0xF0, 0x0C, 0x0F, 0x00, 188 | 0x00, 0x18, 0x0E, 0x01, 0x00, 0x07, 0xFF, 0xFF, 0xC0, 0xE0, 0x70, 0x3F, 189 | 0xDF, 0xEE, 0x07, 0x03, 0x81, 0xC0, 0xFF, 0xFF, 0xC0, 0x00, 0x03, 0x03, 190 | 0x81, 0x80, 0x07, 0xFF, 0xFF, 0xC0, 0xE0, 0x70, 0x3F, 0xDF, 0xEE, 0x07, 191 | 0x03, 0x81, 0xC0, 0xFF, 0xFF, 0xC0, 0x1C, 0x0F, 0x0C, 0x80, 0x0F, 0xFF, 192 | 0xFF, 0x81, 0xC0, 0xE0, 0x7F, 0xBF, 0xDC, 0x0E, 0x07, 0x03, 0x81, 0xFF, 193 | 0xFF, 0x80, 0x37, 0x3B, 0x8C, 0x80, 0x0F, 0xFF, 0xFF, 0x81, 0xC0, 0xE0, 194 | 0x7F, 0xBF, 0xDC, 0x0E, 0x07, 0x03, 0x81, 0xFF, 0xFF, 0x80, 0x0C, 0xE2, 195 | 0x07, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x01, 0x9C, 0xC0, 0x73, 0x9C, 196 | 0xE7, 0x39, 0xCE, 0x73, 0x9C, 0xE7, 0x00, 0x71, 0xE8, 0x80, 0x71, 0xC7, 197 | 0x1C, 0x71, 0xC7, 0x1C, 0x71, 0xC7, 0x1C, 0x70, 0xEF, 0xDD, 0x10, 0x03, 198 | 0x87, 0x0E, 0x1C, 0x38, 0x70, 0xE1, 0xC3, 0x87, 0x0E, 0x1C, 0x38, 0x7F, 199 | 0x87, 0xFC, 0x70, 0xE7, 0x07, 0x70, 0x77, 0x03, 0xFC, 0x3F, 0xC3, 0x70, 200 | 0x37, 0x07, 0x70, 0xE7, 0xFC, 0x7F, 0x00, 0x0C, 0x83, 0xF0, 0x4C, 0x00, 201 | 0x0E, 0x07, 0xE0, 0xFE, 0x1F, 0xC3, 0xFC, 0x7D, 0x8F, 0x99, 0xF3, 0xBE, 202 | 0x37, 0xC7, 0xF8, 0x7F, 0x07, 0xE0, 0xE0, 0x18, 0x01, 0xC0, 0x06, 0x00, 203 | 0x00, 0x1F, 0x03, 0xFC, 0x70, 0xEE, 0x06, 0xC0, 0x7C, 0x07, 0xC0, 0x7C, 204 | 0x07, 0xC0, 0x7E, 0x06, 0x70, 0xE3, 0xFC, 0x1F, 0x00, 0x01, 0x00, 0x78, 205 | 0x06, 0x00, 0x00, 0x1F, 0x03, 0xFC, 0x70, 0xEE, 0x06, 0xC0, 0x7C, 0x07, 206 | 0xC0, 0x7C, 0x07, 0xC0, 0x7E, 0x06, 0x70, 0xE3, 0xFC, 0x1F, 0x00, 0x06, 207 | 0x00, 0xF0, 0x19, 0x80, 0x00, 0x1F, 0x03, 0xFC, 0x70, 0xEE, 0x06, 0xC0, 208 | 0x7C, 0x07, 0xC0, 0x7C, 0x07, 0xC0, 0x7E, 0x06, 0x70, 0xE3, 0xFC, 0x1F, 209 | 0x00, 0x0C, 0x01, 0xF8, 0x13, 0x00, 0x00, 0x1F, 0x03, 0xFC, 0x70, 0xEE, 210 | 0x06, 0xC0, 0x7C, 0x07, 0xC0, 0x7C, 0x07, 0xC0, 0x7E, 0x06, 0x70, 0xE3, 211 | 0xFC, 0x1F, 0x00, 0x19, 0x83, 0xB8, 0x19, 0x80, 0x00, 0x1F, 0x03, 0xFC, 212 | 0x70, 0xEE, 0x06, 0xC0, 0x7C, 0x07, 0xC0, 0x7C, 0x07, 0xC0, 0x7E, 0x06, 213 | 0x70, 0xE3, 0xFC, 0x1F, 0x00, 0x40, 0xC3, 0x67, 0x3E, 0x1C, 0x3C, 0x7E, 214 | 0xE7, 0x42, 0x1F, 0x63, 0xFC, 0x71, 0xEE, 0x1E, 0xC3, 0x7C, 0x67, 0xC6, 215 | 0x7C, 0xC7, 0xCC, 0x7F, 0x86, 0x70, 0xE3, 0xFC, 0x7F, 0x00, 0x00, 0x00, 216 | 0x06, 0x01, 0xC0, 0x30, 0x00, 0x38, 0x3E, 0x0F, 0x83, 0xE0, 0xF8, 0x3E, 217 | 0x0F, 0x83, 0xE0, 0xF8, 0x3E, 0x0D, 0xC7, 0x7F, 0x87, 0xC0, 0x00, 0x00, 218 | 0xC0, 0x70, 0x30, 0x00, 0x38, 0x3E, 0x0F, 0x83, 0xE0, 0xF8, 0x3E, 0x0F, 219 | 0x83, 0xE0, 0xF8, 0x3E, 0x0D, 0xC7, 0x7F, 0x87, 0xC0, 0x0E, 0x07, 0xC1, 220 | 0x30, 0x00, 0xE0, 0xF8, 0x3E, 0x0F, 0x83, 0xE0, 0xF8, 0x3E, 0x0F, 0x83, 221 | 0xE0, 0xF8, 0x37, 0x1D, 0xFE, 0x1F, 0x00, 0x33, 0x0E, 0xE3, 0x30, 0x00, 222 | 0xE0, 0xF8, 0x3E, 0x0F, 0x83, 0xE0, 0xF8, 0x3E, 0x0F, 0x83, 0xE0, 0xF8, 223 | 0x37, 0x1D, 0xFE, 0x1F, 0x00, 0x00, 0x00, 0x60, 0x1C, 0x02, 0x00, 0x01, 224 | 0xC1, 0xD8, 0x33, 0x8E, 0x31, 0x83, 0x70, 0x7C, 0x07, 0x80, 0xE0, 0x1C, 225 | 0x03, 0x80, 0x70, 0x0E, 0x01, 0xC0, 0xE0, 0x70, 0x3F, 0x9F, 0xEE, 0x3F, 226 | 0x0F, 0x87, 0xC3, 0xE3, 0xFF, 0xBF, 0x9C, 0x0E, 0x00, 0x3E, 0x1F, 0xCE, 227 | 0x33, 0x8C, 0xE7, 0x3B, 0x8E, 0xE3, 0xBC, 0xE7, 0xB8, 0x7E, 0x1F, 0xBE, 228 | 0xFF, 0x00, 0x00, 0xC1, 0xC0, 0x80, 0x0F, 0xBF, 0x83, 0x06, 0xFF, 0x1E, 229 | 0x3F, 0xFF, 0xC0, 0x08, 0x18, 0x60, 0x80, 0x0F, 0xBF, 0x83, 0x06, 0xFF, 230 | 0x1E, 0x3F, 0xFF, 0xC0, 0x38, 0xF9, 0x30, 0x07, 0xDF, 0xC1, 0x83, 0x7F, 231 | 0x8F, 0x1F, 0xFF, 0xE0, 0x66, 0xFF, 0x30, 0x07, 0xDF, 0xC1, 0x83, 0x7F, 232 | 0x8F, 0x1F, 0xFF, 0xE0, 0xEF, 0xDD, 0x10, 0x07, 0xDF, 0xC1, 0x83, 0x7F, 233 | 0x8F, 0x1F, 0xFF, 0xE0, 0x38, 0xD1, 0xA1, 0xC0, 0x0F, 0xBF, 0x83, 0x06, 234 | 0xFF, 0x1E, 0x3F, 0xFF, 0xC0, 0x79, 0xE7, 0xFF, 0x81, 0x8C, 0x0C, 0x77, 235 | 0xFF, 0xE3, 0x03, 0x1C, 0x1F, 0xFE, 0x71, 0xF0, 0x3E, 0xFB, 0x86, 0x0C, 236 | 0x18, 0x38, 0x7E, 0x3C, 0x60, 0xE0, 0x67, 0x80, 0x20, 0x60, 0x30, 0x10, 237 | 0x00, 0x3C, 0x7E, 0xC6, 0xC7, 0xFF, 0xC0, 0xE0, 0x7E, 0x3E, 0x00, 0x0C, 238 | 0x1C, 0x18, 0x00, 0x3C, 0x7E, 0xC6, 0xC7, 0xFF, 0xC0, 0xE0, 0x7E, 0x3E, 239 | 0x18, 0x3C, 0x64, 0x00, 0x3C, 0x7E, 0xC6, 0xC7, 0xFF, 0xC0, 0xE0, 0x7E, 240 | 0x3E, 0x66, 0xEE, 0x66, 0x00, 0x3C, 0x7E, 0xC6, 0xC7, 0xFF, 0xC0, 0xE0, 241 | 0x7E, 0x3E, 0x0C, 0x62, 0x07, 0x77, 0x77, 0x77, 0x77, 0x23, 0x64, 0x0E, 242 | 0xEE, 0xEE, 0xEE, 0xEE, 0x39, 0xF4, 0xC0, 0x38, 0xE3, 0x8E, 0x38, 0xE3, 243 | 0x8E, 0x38, 0xED, 0xDF, 0x30, 0x03, 0x87, 0x0E, 0x1C, 0x38, 0x70, 0xE1, 244 | 0xC3, 0x80, 0x60, 0x7E, 0x3C, 0x6E, 0x06, 0x3B, 0xFF, 0xC7, 0xC3, 0xC3, 245 | 0xC7, 0xFE, 0x3C, 0x32, 0x7E, 0x4C, 0x00, 0xDE, 0xFF, 0xE7, 0xC3, 0xC3, 246 | 0xC3, 0xC3, 0xC3, 0xC3, 0x00, 0x70, 0x30, 0x10, 0x00, 0x3C, 0x7E, 0xC7, 247 | 0xC3, 0xC3, 0xC3, 0xE7, 0xFE, 0x3C, 0x00, 0x0C, 0x0C, 0x18, 0x00, 0x3C, 248 | 0x7E, 0xC7, 0xC3, 0xC3, 0xC3, 0xE7, 0xFE, 0x3C, 0x18, 0x3C, 0x66, 0x00, 249 | 0x3C, 0x7E, 0xC7, 0xC3, 0xC3, 0xC3, 0xE7, 0xFE, 0x3C, 0x32, 0x7E, 0x4C, 250 | 0x00, 0x3C, 0x7E, 0xC7, 0xC3, 0xC3, 0xC3, 0xE7, 0xFE, 0x3C, 0x66, 0x66, 251 | 0x66, 0x00, 0x3C, 0x7E, 0xC7, 0xC3, 0xC3, 0xC3, 0xE7, 0xFE, 0x3C, 0x08, 252 | 0x0E, 0x07, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x10, 0x1C, 0x0E, 0x00, 0x00, 253 | 0x3E, 0x7F, 0xC7, 0xCB, 0xDB, 0xD3, 0xE3, 0x7E, 0x7C, 0x80, 0x20, 0x70, 254 | 0x30, 0x10, 0x00, 0xC3, 0xC3, 0xC3, 0xC3, 0xC3, 0xC3, 0xE7, 0xFF, 0x7B, 255 | 0x00, 0x0E, 0x1C, 0x10, 0x00, 0xC3, 0xC3, 0xC3, 0xC3, 0xC3, 0xC3, 0xE7, 256 | 0xFF, 0x7B, 0x18, 0x3C, 0x64, 0x00, 0xC3, 0xC3, 0xC3, 0xC3, 0xC3, 0xC3, 257 | 0xE7, 0xFF, 0x7B, 0x66, 0x6E, 0x66, 0x00, 0xC3, 0xC3, 0xC3, 0xC3, 0xC3, 258 | 0xC3, 0xE7, 0xFF, 0x7B, 0x04, 0x07, 0x03, 0x01, 0x00, 0x07, 0x1D, 0x8C, 259 | 0xC6, 0x73, 0x1B, 0x0D, 0x86, 0xC1, 0xC0, 0xE0, 0x60, 0x30, 0x38, 0x18, 260 | 0x00, 0xC0, 0xC0, 0xC0, 0xC0, 0xDC, 0xFF, 0xC7, 0xC3, 0xC3, 0xC3, 0xE3, 261 | 0xFE, 0xDC, 0xC0, 0xC0, 0xC0, 0xC0, 0x66, 0x3B, 0x99, 0x80, 0x0E, 0x3B, 262 | 0x19, 0x8C, 0xE6, 0x36, 0x1B, 0x0D, 0x83, 0x81, 0xC0, 0xC0, 0x60, 0x70, 263 | 0x30, 0x00 }; 264 | 265 | const GFXglyph Cantarell_Bold_euro9pt8bGlyphs[] PROGMEM = { 266 | { 0, 0, 0, 3, 0, 1 }, // 0x20 ' ' 267 | { 0, 3, 13, 4, 1, -12 }, // 0x21 '!' 268 | { 5, 6, 5, 8, 1, -12 }, // 0x22 '"' 269 | { 9, 10, 13, 12, 1, -12 }, // 0x23 '#' 270 | { 26, 9, 18, 11, 1, -14 }, // 0x24 '$' 271 | { 47, 16, 13, 18, 1, -12 }, // 0x25 '%' 272 | { 73, 11, 13, 12, 1, -12 }, // 0x26 '&' 273 | { 91, 3, 5, 5, 1, -12 }, // 0x27 ''' 274 | { 93, 4, 16, 5, 1, -12 }, // 0x28 '(' 275 | { 101, 5, 17, 5, 0, -12 }, // 0x29 ')' 276 | { 112, 8, 8, 8, 0, -12 }, // 0x2A '*' 277 | { 120, 9, 10, 11, 1, -10 }, // 0x2B '+' 278 | { 132, 3, 5, 5, 1, -1 }, // 0x2C ',' 279 | { 134, 5, 2, 8, 1, -5 }, // 0x2D '-' 280 | { 136, 3, 3, 5, 1, -2 }, // 0x2E '.' 281 | { 138, 6, 15, 6, 0, -12 }, // 0x2F '/' 282 | { 150, 9, 13, 11, 1, -12 }, // 0x30 '0' 283 | { 165, 8, 13, 8, 0, -12 }, // 0x31 '1' 284 | { 178, 9, 13, 10, 0, -12 }, // 0x32 '2' 285 | { 193, 8, 13, 10, 1, -12 }, // 0x33 '3' 286 | { 206, 11, 13, 11, 0, -12 }, // 0x34 '4' 287 | { 224, 8, 13, 10, 1, -12 }, // 0x35 '5' 288 | { 237, 9, 13, 11, 1, -12 }, // 0x36 '6' 289 | { 252, 9, 13, 9, 0, -12 }, // 0x37 '7' 290 | { 267, 9, 13, 11, 1, -12 }, // 0x38 '8' 291 | { 282, 9, 13, 11, 1, -12 }, // 0x39 '9' 292 | { 297, 3, 9, 5, 1, -8 }, // 0x3A ':' 293 | { 301, 3, 12, 5, 1, -8 }, // 0x3B ';' 294 | { 306, 8, 9, 10, 1, -10 }, // 0x3C '<' 295 | { 315, 8, 6, 12, 2, -8 }, // 0x3D '=' 296 | { 321, 8, 9, 10, 1, -10 }, // 0x3E '>' 297 | { 330, 7, 13, 8, 0, -12 }, // 0x3F '?' 298 | { 342, 15, 16, 17, 1, -12 }, // 0x40 '@' 299 | { 372, 12, 13, 12, 0, -12 }, // 0x41 'A' 300 | { 392, 10, 13, 12, 1, -12 }, // 0x42 'B' 301 | { 409, 10, 13, 11, 1, -12 }, // 0x43 'C' 302 | { 426, 11, 13, 13, 1, -12 }, // 0x44 'D' 303 | { 444, 9, 13, 11, 1, -12 }, // 0x45 'E' 304 | { 459, 9, 13, 10, 1, -12 }, // 0x46 'F' 305 | { 474, 11, 13, 13, 1, -12 }, // 0x47 'G' 306 | { 492, 11, 13, 13, 1, -12 }, // 0x48 'H' 307 | { 510, 3, 13, 5, 1, -12 }, // 0x49 'I' 308 | { 515, 7, 13, 8, 0, -12 }, // 0x4A 'J' 309 | { 527, 10, 13, 12, 2, -12 }, // 0x4B 'K' 310 | { 544, 8, 13, 9, 1, -12 }, // 0x4C 'L' 311 | { 557, 13, 13, 16, 1, -12 }, // 0x4D 'M' 312 | { 579, 11, 13, 14, 1, -12 }, // 0x4E 'N' 313 | { 597, 12, 13, 14, 1, -12 }, // 0x4F 'O' 314 | { 617, 9, 13, 11, 1, -12 }, // 0x50 'P' 315 | { 632, 12, 14, 14, 1, -12 }, // 0x51 'Q' 316 | { 653, 10, 13, 12, 1, -12 }, // 0x52 'R' 317 | { 670, 9, 13, 10, 1, -12 }, // 0x53 'S' 318 | { 685, 10, 13, 11, 0, -12 }, // 0x54 'T' 319 | { 702, 10, 13, 13, 1, -12 }, // 0x55 'U' 320 | { 719, 11, 13, 12, 0, -12 }, // 0x56 'V' 321 | { 737, 18, 13, 18, 0, -12 }, // 0x57 'W' 322 | { 767, 11, 13, 12, 0, -12 }, // 0x58 'X' 323 | { 785, 11, 13, 11, 0, -12 }, // 0x59 'Y' 324 | { 803, 10, 13, 11, 1, -12 }, // 0x5A 'Z' 325 | { 820, 5, 16, 7, 1, -12 }, // 0x5B '[' 326 | { 830, 6, 15, 6, 0, -12 }, // 0x5C '\' 327 | { 842, 5, 16, 7, 0, -12 }, // 0x5D ']' 328 | { 852, 10, 9, 11, 1, -12 }, // 0x5E '^' 329 | { 864, 8, 2, 10, 1, 1 }, // 0x5F '_' 330 | { 866, 3, 4, 5, 1, -13 }, // 0x60 '`' 331 | { 868, 7, 9, 9, 1, -8 }, // 0x61 'a' 332 | { 876, 8, 13, 10, 1, -12 }, // 0x62 'b' 333 | { 889, 7, 9, 8, 1, -8 }, // 0x63 'c' 334 | { 897, 8, 13, 10, 1, -12 }, // 0x64 'd' 335 | { 910, 8, 9, 9, 1, -8 }, // 0x65 'e' 336 | { 919, 7, 13, 6, 0, -12 }, // 0x66 'f' 337 | { 931, 8, 13, 10, 1, -8 }, // 0x67 'g' 338 | { 944, 8, 13, 10, 1, -12 }, // 0x68 'h' 339 | { 957, 3, 13, 5, 1, -12 }, // 0x69 'i' 340 | { 962, 4, 17, 5, 0, -12 }, // 0x6A 'j' 341 | { 971, 8, 13, 9, 1, -12 }, // 0x6B 'k' 342 | { 984, 4, 13, 5, 1, -12 }, // 0x6C 'l' 343 | { 991, 14, 9, 16, 1, -8 }, // 0x6D 'm' 344 | { 1007, 8, 9, 10, 1, -8 }, // 0x6E 'n' 345 | { 1016, 8, 9, 10, 1, -8 }, // 0x6F 'o' 346 | { 1025, 8, 13, 10, 1, -8 }, // 0x70 'p' 347 | { 1038, 8, 13, 10, 1, -8 }, // 0x71 'q' 348 | { 1051, 6, 9, 7, 1, -8 }, // 0x72 'r' 349 | { 1058, 7, 9, 8, 1, -8 }, // 0x73 's' 350 | { 1066, 6, 11, 7, 0, -10 }, // 0x74 't' 351 | { 1075, 8, 9, 10, 1, -8 }, // 0x75 'u' 352 | { 1084, 9, 9, 9, 0, -8 }, // 0x76 'v' 353 | { 1095, 14, 9, 14, 0, -8 }, // 0x77 'w' 354 | { 1111, 9, 9, 9, 0, -8 }, // 0x78 'x' 355 | { 1122, 9, 13, 9, 0, -8 }, // 0x79 'y' 356 | { 1137, 7, 9, 8, 1, -8 }, // 0x7A 'z' 357 | { 1145, 7, 16, 7, 0, -12 }, // 0x7B '{' 358 | { 1159, 2, 16, 6, 2, -12 }, // 0x7C '|' 359 | { 1163, 7, 16, 7, 0, -12 }, // 0x7D '}' 360 | { 1177, 9, 3, 11, 1, -6 }, // 0x7E '~' 361 | { 1181, 7, 17, 9, 1, -12 }, // 0x7F 362 | { 1196, 11, 13, 13, 1, -12 }, // 0x80 363 | { 1214, 7, 17, 9, 1, -12 }, // 0x81 364 | { 1229, 7, 17, 9, 1, -12 }, // 0x82 365 | { 1244, 7, 17, 9, 1, -12 }, // 0x83 366 | { 1259, 7, 17, 9, 1, -12 }, // 0x84 367 | { 1274, 7, 17, 9, 1, -12 }, // 0x85 368 | { 1289, 7, 17, 9, 1, -12 }, // 0x86 369 | { 1304, 7, 17, 9, 1, -12 }, // 0x87 370 | { 1319, 7, 17, 9, 1, -12 }, // 0x88 371 | { 1334, 7, 17, 9, 1, -12 }, // 0x89 372 | { 1349, 7, 17, 9, 1, -12 }, // 0x8A 373 | { 1364, 7, 17, 9, 1, -12 }, // 0x8B 374 | { 1379, 7, 17, 9, 1, -12 }, // 0x8C 375 | { 1394, 7, 17, 9, 1, -12 }, // 0x8D 376 | { 1409, 7, 17, 9, 1, -12 }, // 0x8E 377 | { 1424, 7, 17, 9, 1, -12 }, // 0x8F 378 | { 1439, 7, 17, 9, 1, -12 }, // 0x90 379 | { 1454, 7, 17, 9, 1, -12 }, // 0x91 380 | { 1469, 7, 17, 9, 1, -12 }, // 0x92 381 | { 1484, 7, 17, 9, 1, -12 }, // 0x93 382 | { 1499, 7, 17, 9, 1, -12 }, // 0x94 383 | { 1514, 7, 17, 9, 1, -12 }, // 0x95 384 | { 1529, 7, 17, 9, 1, -12 }, // 0x96 385 | { 1544, 7, 17, 9, 1, -12 }, // 0x97 386 | { 1559, 7, 17, 9, 1, -12 }, // 0x98 387 | { 1574, 7, 17, 9, 1, -12 }, // 0x99 388 | { 1589, 7, 17, 9, 1, -12 }, // 0x9A 389 | { 1604, 7, 17, 9, 1, -12 }, // 0x9B 390 | { 1619, 7, 17, 9, 1, -12 }, // 0x9C 391 | { 1634, 7, 17, 9, 1, -12 }, // 0x9D 392 | { 1649, 7, 17, 9, 1, -12 }, // 0x9E 393 | { 1664, 7, 17, 9, 1, -12 }, // 0x9F 394 | { 1679, 0, 0, 3, 0, 1 }, // 0xA0 395 | { 1679, 3, 12, 5, 1, -8 }, // 0xA1 396 | { 1684, 7, 13, 9, 1, -10 }, // 0xA2 397 | { 1696, 9, 13, 11, 1, -12 }, // 0xA3 398 | { 1711, 10, 10, 12, 1, -10 }, // 0xA4 399 | { 1724, 11, 13, 13, 1, -12 }, // 0xA5 400 | { 1742, 2, 16, 6, 2, -12 }, // 0xA6 401 | { 1746, 7, 14, 10, 1, -12 }, // 0xA7 402 | { 1759, 7, 3, 9, 1, -12 }, // 0xA8 403 | { 1762, 13, 13, 15, 1, -12 }, // 0xA9 404 | { 1784, 5, 6, 7, 1, -12 }, // 0xAA 405 | { 1788, 9, 7, 10, 0, -7 }, // 0xAB 406 | { 1796, 9, 5, 12, 1, -6 }, // 0xAC 407 | { 1802, 5, 2, 8, 1, -5 }, // 0xAD 408 | { 1804, 9, 8, 11, 1, -12 }, // 0xAE 409 | { 1813, 6, 2, 8, 1, -11 }, // 0xAF 410 | { 1815, 6, 6, 8, 1, -12 }, // 0xB0 411 | { 1820, 9, 10, 11, 1, -10 }, // 0xB1 412 | { 1832, 7, 9, 8, 0, -14 }, // 0xB2 413 | { 1840, 7, 9, 8, 0, -15 }, // 0xB3 414 | { 1848, 3, 4, 5, 1, -13 }, // 0xB4 415 | { 1850, 8, 13, 11, 2, -8 }, // 0xB5 416 | { 1863, 10, 15, 13, 1, -12 }, // 0xB6 417 | { 1882, 3, 3, 5, 1, -5 }, // 0xB7 418 | { 1884, 4, 4, 6, 1, 1 }, // 0xB8 419 | { 1886, 6, 9, 6, 0, -14 }, // 0xB9 420 | { 1893, 6, 6, 8, 1, -12 }, // 0xBA 421 | { 1898, 9, 7, 10, 0, -7 }, // 0xBB 422 | { 1906, 20, 14, 20, 0, -13 }, // 0xBC 423 | { 1941, 19, 14, 20, 0, -13 }, // 0xBD 424 | { 1975, 21, 13, 22, 0, -12 }, // 0xBE 425 | { 2010, 8, 13, 7, 0, -8 }, // 0xBF 426 | { 2023, 12, 18, 12, 0, -17 }, // 0xC0 427 | { 2050, 12, 18, 12, 0, -17 }, // 0xC1 428 | { 2077, 12, 17, 12, 0, -16 }, // 0xC2 429 | { 2103, 12, 17, 12, 0, -16 }, // 0xC3 430 | { 2129, 12, 17, 12, 0, -16 }, // 0xC4 431 | { 2155, 12, 18, 12, 0, -17 }, // 0xC5 432 | { 2182, 17, 13, 18, 0, -12 }, // 0xC6 433 | { 2210, 10, 17, 11, 1, -12 }, // 0xC7 434 | { 2232, 9, 18, 11, 1, -17 }, // 0xC8 435 | { 2253, 9, 18, 11, 1, -17 }, // 0xC9 436 | { 2274, 9, 17, 11, 1, -16 }, // 0xCA 437 | { 2294, 9, 17, 11, 1, -16 }, // 0xCB 438 | { 2314, 4, 18, 5, 0, -17 }, // 0xCC 439 | { 2323, 5, 18, 5, 1, -17 }, // 0xCD 440 | { 2335, 6, 17, 5, 0, -16 }, // 0xCE 441 | { 2348, 7, 17, 5, -1, -16 }, // 0xCF 442 | { 2363, 12, 13, 13, 0, -12 }, // 0xD0 443 | { 2383, 11, 17, 14, 1, -16 }, // 0xD1 444 | { 2407, 12, 17, 14, 1, -16 }, // 0xD2 445 | { 2433, 12, 17, 14, 1, -16 }, // 0xD3 446 | { 2459, 12, 17, 14, 1, -16 }, // 0xD4 447 | { 2485, 12, 17, 14, 1, -16 }, // 0xD5 448 | { 2511, 12, 17, 14, 1, -16 }, // 0xD6 449 | { 2537, 8, 9, 10, 1, -9 }, // 0xD7 450 | { 2546, 12, 14, 14, 1, -12 }, // 0xD8 451 | { 2567, 10, 18, 13, 1, -17 }, // 0xD9 452 | { 2590, 10, 18, 13, 1, -17 }, // 0xDA 453 | { 2613, 10, 17, 13, 1, -16 }, // 0xDB 454 | { 2635, 10, 17, 13, 1, -16 }, // 0xDC 455 | { 2657, 11, 18, 11, 0, -17 }, // 0xDD 456 | { 2682, 9, 13, 11, 1, -12 }, // 0xDE 457 | { 2697, 10, 13, 11, 1, -12 }, // 0xDF 458 | { 2714, 7, 14, 9, 1, -13 }, // 0xE0 459 | { 2727, 7, 14, 9, 1, -13 }, // 0xE1 460 | { 2740, 7, 13, 9, 1, -12 }, // 0xE2 461 | { 2752, 7, 13, 9, 1, -12 }, // 0xE3 462 | { 2764, 7, 13, 9, 1, -12 }, // 0xE4 463 | { 2776, 7, 14, 9, 1, -13 }, // 0xE5 464 | { 2789, 13, 9, 14, 1, -8 }, // 0xE6 465 | { 2804, 7, 13, 8, 1, -8 }, // 0xE7 466 | { 2816, 8, 14, 9, 1, -13 }, // 0xE8 467 | { 2830, 8, 14, 9, 1, -13 }, // 0xE9 468 | { 2844, 8, 13, 9, 1, -12 }, // 0xEA 469 | { 2857, 8, 13, 9, 1, -12 }, // 0xEB 470 | { 2870, 4, 14, 5, 0, -13 }, // 0xEC 471 | { 2877, 4, 14, 5, 1, -13 }, // 0xED 472 | { 2884, 6, 13, 5, -1, -12 }, // 0xEE 473 | { 2894, 7, 13, 5, -1, -12 }, // 0xEF 474 | { 2906, 8, 13, 10, 1, -12 }, // 0xF0 475 | { 2919, 8, 13, 10, 1, -12 }, // 0xF1 476 | { 2932, 8, 14, 10, 1, -13 }, // 0xF2 477 | { 2946, 8, 14, 10, 1, -13 }, // 0xF3 478 | { 2960, 8, 13, 10, 1, -12 }, // 0xF4 479 | { 2973, 8, 13, 10, 1, -12 }, // 0xF5 480 | { 2986, 8, 13, 10, 1, -12 }, // 0xF6 481 | { 2999, 9, 10, 11, 1, -10 }, // 0xF7 482 | { 3011, 8, 11, 10, 1, -9 }, // 0xF8 483 | { 3022, 8, 14, 10, 1, -13 }, // 0xF9 484 | { 3036, 8, 14, 10, 1, -13 }, // 0xFA 485 | { 3050, 8, 13, 10, 1, -12 }, // 0xFB 486 | { 3063, 8, 13, 10, 1, -12 }, // 0xFC 487 | { 3076, 9, 18, 9, 0, -13 }, // 0xFD 488 | { 3097, 8, 17, 10, 1, -12 }, // 0xFE 489 | { 3114, 9, 17, 9, 0, -12 } }; // 0xFF 490 | 491 | const GFXfont Cantarell_Bold_euro9pt8b PROGMEM = { 492 | (uint8_t *)Cantarell_Bold_euro9pt8bBitmaps, 493 | (GFXglyph *)Cantarell_Bold_euro9pt8bGlyphs, 494 | 0x20, 0xFF, 21 }; 495 | 496 | // Approx. 4709 bytes 497 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | --------------------------------------------------------------------------------