diff --git a/examples/InkplatePLUS2/Advanced/Sensors/InkplatePLUS2_BME688_Read/InkplatePLUS2_BME688_Read.ino b/examples/InkplatePLUS2/Advanced/Sensors/InkplatePLUS2_BME688_Read/InkplatePLUS2_BME688_Read.ino new file mode 100644 index 00000000..18cc442f --- /dev/null +++ b/examples/InkplatePLUS2/Advanced/Sensors/InkplatePLUS2_BME688_Read/InkplatePLUS2_BME688_Read.ino @@ -0,0 +1,107 @@ +/* + InkplatePLUS2_BME688_Read example for Soldered Inkplate PLUS2 + For this example you will need only a USB-C cable and Inkplate PLUS2. + Select "Soldered Inkplate PLUS2" from Tools -> Board menu. + Don't have "Soldered Inkplate PLUS2" option? Follow our tutorial and add it: + https://soldered.com/learn/add-inkplate-6-board-definition-to-arduino-ide/ + + This example will show you how to read temperature, pressure and humidity data + from the built-in BME688 sensor and show the data on the display as well. + + Want to learn more about Inkplate? Visit www.inkplate.io + Looking to get support? Write on our forums: https://forum.soldered.com/ + 9 Aurugst 2023 by Soldered +*/ + +// Next 3 lines are a precaution, you can ignore those, and the example would also work without them +#ifndef ARDUINO_INKPLATEPLUS2 +#error "Wrong board selection for this example, please select Inkplate PLUS2 in the boards menu." +#endif + +#include "Inkplate.h" // Include Inkplate library to the sketch +#include "icons.h" // Include header file with icons + +// The sensor needs to be calibrated only with a single temperature offset in degrees Celsius +const float offset = -4; + +// Variable that keeps count on how many times the screen has been partially updated +int n = 0; + +Inkplate display(INKPLATE_1BIT); // Create an object on Inkplate library and also set library into 1 Bit mode (BW) + +void setup() +{ + display.begin(); // Init Inkplate library (you should call this function ONLY ONCE) + display.clearDisplay(); // Clear frame buffer of display + display.display(); // Put clear image on display + display.setTextSize(3); // Set text to be 3 times bigger than classic 5x7 px text + + display.bme688.begin(); // Init the sensor +} + +void loop() +{ + // Read all the values from the sensor + float temperature = display.bme688.readTemperature() + offset; + float humidity = display.bme688.readHumidity(); + float pressure = display.bme688.readPressure(); + float gasResistance = display.bme688.readGasResistance(); + float altitude = display.bme688.readAltitude(); + + // Print the values to the display + display.clearDisplay(); // Clear what was previously written; + + // Print temperature + display.drawImage(temperature_icon, 93, 100, temperature_icon_w, temperature_icon_h, BLACK); // Draw the icon + display.setCursor(68, 69); // Set position of text + display.print("Temperature: "); + display.setCursor(100, 241); // Set position of text + display.print(temperature, 2); // Print float with two decimal places + display.print("C"); + + // Print humidity + display.drawImage(humidity_icon, 378, 100, humidity_icon_w, humidity_icon_h, BLACK); // Draw the icon + display.setCursor(378, 69); // Set position of text + display.print("Humidity: "); + display.setCursor(386, 241); // Set position of text + display.print(humidity, 2); // Print float with two decimal places + display.print("%"); + + // Print pressure + display.drawImage(pressure_icon, 93, 368, pressure_icon_w, pressure_icon_h, BLACK); // Draw the icon + display.setCursor(89, 337); // Set position of text + display.print("Pressure: "); + display.setCursor(85, 509); // Set position of text + display.print(pressure, 2); // Print float with two decimal places + display.print(" hPa"); + + // Also print gas resistance... + display.setCursor(312, 342); // Set position of text + display.print("Gas resistance:"); + display.setCursor(312, 393); // Set position of text + display.print(gasResistance, 2); // Print float with two decimal places + display.print(" mOhm"); + + // ...and altitude! + display.setCursor(312, 450); // Set position of text + display.print("Altitude:"); + display.setCursor(312, 501); // Set position of text + display.print(altitude, 2); // Print float with two decimal places + display.print("m"); + + // Update the display + // Check if you need to do full refresh or you can do partial update + if (n > 9) + { + display.display(); // Do a full refresh + n = 0; + } + else + { + display.partialUpdate(false, true); // Do partial update + n++; // Keep track on how many times screen has been partially updated + } + + // Wait a bit + delay(1000); +} diff --git a/examples/InkplatePLUS2/Advanced/Sensors/InkplatePLUS2_BME688_Read/icons.h b/examples/InkplatePLUS2/Advanced/Sensors/InkplatePLUS2_BME688_Read/icons.h new file mode 100644 index 00000000..027a7177 --- /dev/null +++ b/examples/InkplatePLUS2/Advanced/Sensors/InkplatePLUS2_BME688_Read/icons.h @@ -0,0 +1,446 @@ +const uint8_t temperature_icon[] PROGMEM = { +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x1f,0xc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x1,0xf8,0x7,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x1,0xe0,0x1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x3,0xc0,0x0,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x3,0xc0,0x0,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x80,0x0,0x78,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x80,0x0,0x78,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x80,0x0,0x78,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x80,0x0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x80,0x0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x80,0x0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x80,0x0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x80,0x0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x80,0x0,0x38,0x3f,0xff,0xff,0x80,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x80,0xc0,0x38,0x3f,0xff,0xff,0x80,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x81,0xe0,0x38,0x3f,0xff,0xff,0x80,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x81,0xe0,0x38,0x1f,0xff,0xff,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x81,0xe0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x81,0xe0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x81,0xe0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x81,0xe0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x81,0xe0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x81,0xe0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x81,0xe0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x81,0xe0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x81,0xe0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x81,0xe0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x81,0xe0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x81,0xe0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x81,0xe0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x81,0xe0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x81,0xe0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x81,0xe0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x81,0xe0,0x38,0x3f,0xfe,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x81,0xe0,0x38,0x3f,0xfe,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x81,0xe0,0x38,0x3f,0xfe,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x81,0xe0,0x38,0x1f,0xfc,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x81,0xe0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x81,0xe0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x81,0xe0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x81,0xe0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x81,0xe0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x81,0xe0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x81,0xe0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x81,0xe0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x81,0xe0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x81,0xe0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x81,0xe0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x81,0xe0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x81,0xe0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x81,0xe0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x81,0xe0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x81,0xe0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x81,0xe0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x81,0xe0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x81,0xe0,0x38,0x3f,0xff,0xff,0x80,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x81,0xe0,0x38,0x3f,0xff,0xff,0x80,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x81,0xe0,0x38,0x3f,0xff,0xff,0x80,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x81,0xe0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x81,0xe0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x81,0xe0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x81,0xe0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x81,0xe0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x81,0xe0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x81,0xe0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x81,0xe0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x81,0xe0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x81,0xe0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0x81,0xe0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x1f,0x81,0xe0,0x3e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x3f,0x1,0xe0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7e,0x1,0xe0,0x1f,0xc0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x1,0xfc,0x1,0xe0,0x7,0xe0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x3,0xf0,0x1,0xe0,0x3,0xf0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x7,0xe0,0x1,0xe0,0x0,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0xf,0x80,0x1,0xe0,0x0,0x7c,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0xf,0x80,0x1,0xe0,0x0,0x3c,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x1f,0x0,0x1,0xe0,0x0,0x1e,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x3e,0x0,0x1,0xe0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x3c,0x0,0x1,0xe0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x78,0x0,0x1,0xe0,0x0,0x7,0x80,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x78,0x0,0x7,0xf8,0x0,0x7,0x80,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0xf0,0x0,0x1f,0xfe,0x0,0x3,0xc0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0xf0,0x0,0x7f,0xff,0x80,0x3,0xc0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0xf0,0x0,0xff,0x3f,0xc0,0x1,0xe0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x1,0xe0,0x1,0xf8,0x7,0xe0,0x1,0xe0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x1,0xe0,0x1,0xe0,0x1,0xf0,0x1,0xe0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x1,0xe0,0x3,0xc0,0x0,0xf0,0x0,0xe0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x1,0xc0,0x3,0xc0,0x0,0xf8,0x0,0xe0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x1,0xc0,0x7,0x80,0x0,0x78,0x0,0xf0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x1,0xc0,0x7,0x80,0x0,0x78,0x0,0xf0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x3,0xc0,0x7,0x0,0x0,0x38,0x0,0xf0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x3,0xc0,0x7,0x0,0x0,0x3c,0x0,0xf0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x3,0xc0,0x7,0x0,0x0,0x3c,0x0,0xf0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x1,0xc0,0x7,0x0,0x0,0x38,0x0,0xf0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x1,0xc0,0x7,0x80,0x0,0x38,0x0,0xf0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x1,0xe0,0x7,0x80,0x0,0x78,0x0,0xe0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x1,0xe0,0x7,0x80,0x0,0x78,0x1,0xe0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x1,0xe0,0x3,0xc0,0x0,0xf0,0x1,0xe0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x1,0xe0,0x3,0xe0,0x1,0xf0,0x1,0xe0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0xf0,0x1,0xf0,0x3,0xe0,0x3,0xc0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0xf0,0x0,0xfc,0xf,0xe0,0x3,0xc0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0xf8,0x0,0x7f,0xff,0xc0,0x3,0xc0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x78,0x0,0x3f,0xff,0x0,0x7,0x80,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x7c,0x0,0xf,0xfe,0x0,0xf,0x80,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x3c,0x0,0x3,0xf0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x0,0x3e,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0xf,0x80,0x0,0x0,0x0,0x7c,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x7,0xc0,0x0,0x0,0x0,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x3,0xe0,0x0,0x0,0x1,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x1,0xf8,0x0,0x0,0x3,0xf0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0xfc,0x0,0x0,0xf,0xc0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7f,0x0,0x0,0x3f,0x80,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x3f,0xe0,0x1,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +}; +int temperature_icon_w = 128; +int temperature_icon_h = 128; + + +const uint8_t humidity_icon[] PROGMEM = { +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xc0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xe0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xe0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xff,0xff,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xff,0xff,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xff,0xfc,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xfe,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x1,0xff,0xff,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xff,0xff,0xc0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xff,0xff,0xc0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0xff,0xe0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0xff,0xe0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xff,0xf0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x1f,0xff,0xff,0xff,0xff,0xf8,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x1f,0xff,0xff,0xff,0xff,0xf8,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xff,0xff,0xff,0xfc,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0xff,0xfe,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0xff,0xfe,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x1,0xff,0xff,0xff,0xff,0xff,0xff,0x80,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x1,0xff,0xff,0xff,0xff,0xff,0xff,0x80,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xff,0xff,0xff,0xff,0xc0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xff,0xff,0xff,0xff,0xc0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0xff,0xff,0xff,0xe0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0xff,0xff,0xff,0xe0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xff,0xff,0xff,0xf0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x1f,0xff,0xff,0xff,0xff,0xff,0xff,0xf8,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x1f,0xff,0xff,0xff,0xff,0xff,0xff,0xf8,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x3f,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x3f,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x1,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x80,0x0,0x0,0x0, +0x0,0x0,0x0,0x1,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x80,0x0,0x0,0x0, +0x0,0x0,0x0,0x3,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc0,0x0,0x0,0x0, +0x0,0x0,0x0,0x3,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc0,0x0,0x0,0x0, +0x0,0x0,0x0,0x7,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xe0,0x0,0x0,0x0, +0x0,0x0,0x0,0x7,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xe0,0x0,0x0,0x0, +0x0,0x0,0x0,0xf,0xff,0xff,0x7,0xff,0xff,0xfc,0x3f,0xff,0xf0,0x0,0x0,0x0, +0x0,0x0,0x0,0xf,0xff,0xfc,0x1,0xff,0xff,0xf8,0x1f,0xff,0xf0,0x0,0x0,0x0, +0x0,0x0,0x0,0x1f,0xff,0xf8,0x0,0x7f,0xff,0xf0,0xf,0xff,0xf8,0x0,0x0,0x0, +0x0,0x0,0x0,0x1f,0xff,0xf0,0x0,0x3f,0xff,0xe0,0xf,0xff,0xf8,0x0,0x0,0x0, +0x0,0x0,0x0,0x3f,0xff,0xe0,0x0,0x1f,0xff,0xc0,0xf,0xff,0xfc,0x0,0x0,0x0, +0x0,0x0,0x0,0x3f,0xff,0xc0,0x0,0x1f,0xff,0x80,0xf,0xff,0xfc,0x0,0x0,0x0, +0x0,0x0,0x0,0x3f,0xff,0xc0,0x0,0x1f,0xff,0x0,0x1f,0xff,0xfc,0x0,0x0,0x0, +0x0,0x0,0x0,0x7f,0xff,0xc0,0x0,0xf,0xfe,0x0,0x3f,0xff,0xfe,0x0,0x0,0x0, +0x0,0x0,0x0,0x7f,0xff,0x80,0x20,0xf,0xfc,0x0,0x7f,0xff,0xfe,0x0,0x0,0x0, +0x0,0x0,0x0,0x7f,0xff,0x80,0x70,0xf,0xf8,0x0,0xff,0xff,0xfe,0x0,0x0,0x0, +0x0,0x0,0x0,0xff,0xff,0x80,0x20,0xf,0xf0,0x1,0xff,0xff,0xff,0x0,0x0,0x0, +0x0,0x0,0x0,0xff,0xff,0xc0,0x0,0xf,0xe0,0x3,0xff,0xff,0xff,0x0,0x0,0x0, +0x0,0x0,0x0,0xff,0xff,0xc0,0x0,0x1f,0xc0,0x7,0xff,0xff,0xff,0x0,0x0,0x0, +0x0,0x0,0x1,0xff,0xff,0xc0,0x0,0x1f,0x80,0xf,0xff,0xff,0xff,0x0,0x0,0x0, +0x0,0x0,0x1,0xff,0xff,0xe0,0x0,0x3f,0x0,0x1f,0xff,0xff,0xff,0x80,0x0,0x0, +0x0,0x0,0x1,0xff,0xff,0xf0,0x0,0x3e,0x0,0x3f,0xff,0xff,0xff,0x80,0x0,0x0, +0x0,0x0,0x1,0xff,0xff,0xf8,0x0,0x7c,0x0,0x7f,0xff,0xff,0xff,0x80,0x0,0x0, +0x0,0x0,0x1,0xff,0xff,0xfc,0x1,0xf8,0x0,0xff,0xff,0xff,0xff,0x80,0x0,0x0, +0x0,0x0,0x1,0xff,0xff,0xff,0x7,0xf0,0x1,0xff,0xff,0xff,0xff,0x80,0x0,0x0, +0x0,0x0,0x1,0xff,0xff,0xff,0xff,0xe0,0x3,0xff,0xff,0xff,0xff,0x80,0x0,0x0, +0x0,0x0,0x1,0xff,0xff,0xff,0xff,0xc0,0x7,0xff,0xff,0xff,0xff,0x80,0x0,0x0, +0x0,0x0,0x1,0xff,0xff,0xff,0xff,0x80,0xf,0xf3,0xff,0xff,0xff,0x80,0x0,0x0, +0x0,0x0,0x1,0xff,0xff,0xff,0xff,0x0,0x1f,0x80,0x7f,0xff,0xff,0x80,0x0,0x0, +0x0,0x0,0x1,0xff,0xff,0xff,0xfe,0x0,0x3e,0x0,0x1f,0xff,0xff,0x80,0x0,0x0, +0x0,0x0,0x1,0xff,0xff,0xff,0xfc,0x0,0x7c,0x0,0xf,0xff,0xff,0x80,0x0,0x0, +0x0,0x0,0x1,0xff,0xff,0xff,0xf8,0x0,0xf8,0x0,0x7,0xff,0xff,0x80,0x0,0x0, +0x0,0x0,0x1,0xff,0xff,0xff,0xf0,0x1,0xf8,0x0,0x7,0xff,0xff,0x80,0x0,0x0, +0x0,0x0,0x1,0xff,0xff,0xff,0xe0,0x3,0xf0,0x0,0x3,0xff,0xff,0x80,0x0,0x0, +0x0,0x0,0x0,0xff,0xff,0xff,0xc0,0x7,0xf0,0x0,0x3,0xff,0xff,0x0,0x0,0x0, +0x0,0x0,0x0,0xff,0xff,0xff,0x80,0xf,0xf0,0x4,0x3,0xff,0xff,0x0,0x0,0x0, +0x0,0x0,0x0,0xff,0xff,0xff,0x0,0x1f,0xf0,0xc,0x1,0xff,0xff,0x0,0x0,0x0, +0x0,0x0,0x0,0xff,0xff,0xfe,0x0,0x3f,0xf0,0xc,0x3,0xff,0xff,0x0,0x0,0x0, +0x0,0x0,0x0,0x7f,0xff,0xfc,0x0,0x7f,0xf0,0x0,0x3,0xff,0xfe,0x0,0x0,0x0, +0x0,0x0,0x0,0x7f,0xff,0xf8,0x0,0xff,0xf0,0x0,0x3,0xff,0xfe,0x0,0x0,0x0, +0x0,0x0,0x0,0x7f,0xff,0xf0,0x1,0xff,0xf8,0x0,0x3,0xff,0xfe,0x0,0x0,0x0, +0x0,0x0,0x0,0x3f,0xff,0xf0,0x3,0xff,0xf8,0x0,0x7,0xff,0xfc,0x0,0x0,0x0, +0x0,0x0,0x0,0x3f,0xff,0xf0,0x7,0xff,0xfc,0x0,0xf,0xff,0xfc,0x0,0x0,0x0, +0x0,0x0,0x0,0x1f,0xff,0xf0,0xf,0xff,0xfe,0x0,0x1f,0xff,0xf8,0x0,0x0,0x0, +0x0,0x0,0x0,0x1f,0xff,0xf8,0x1f,0xff,0xff,0x0,0x3f,0xff,0xf8,0x0,0x0,0x0, +0x0,0x0,0x0,0xf,0xff,0xfc,0x3f,0xff,0xff,0xc0,0xff,0xff,0xf0,0x0,0x0,0x0, +0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf0,0x0,0x0,0x0, +0x0,0x0,0x0,0x7,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xe0,0x0,0x0,0x0, +0x0,0x0,0x0,0x7,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xe0,0x0,0x0,0x0, +0x0,0x0,0x0,0x3,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc0,0x0,0x0,0x0, +0x0,0x0,0x0,0x1,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x80,0x0,0x0,0x0, +0x0,0x0,0x0,0x1,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x3f,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x1f,0xff,0xff,0xff,0xff,0xff,0xff,0xf8,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xff,0xff,0xff,0xf0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0xff,0xff,0xff,0xe0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xff,0xff,0xff,0xff,0xc0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0xff,0xfe,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x1f,0xff,0xff,0xff,0xff,0xf8,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0xff,0xe0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x1,0xff,0xff,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xfe,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +}; +int humidity_icon_w = 128; +int humidity_icon_h = 128; + + +const uint8_t pressure_icon[] PROGMEM = { +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xff,0xfc,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xff,0xff,0xc0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x1f,0xff,0xff,0xff,0xff,0xf8,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x3,0xff,0xff,0x0,0x0,0xff,0xff,0xc0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0xf,0xff,0xe0,0x0,0x0,0x7,0xff,0xf0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x3f,0xfe,0x0,0x0,0x0,0x0,0x7f,0xfc,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0xff,0xf0,0x0,0x0,0x0,0x0,0xf,0xff,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x3,0xff,0x80,0x0,0x0,0x0,0x0,0x1,0xff,0xc0,0x0,0x0,0x0, +0x0,0x0,0x0,0x7,0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xe0,0x0,0x0,0x0, +0x0,0x0,0x0,0x1f,0xf8,0x0,0x0,0x3,0xc0,0x0,0x0,0x1f,0xf8,0x0,0x0,0x0, +0x0,0x0,0x0,0x3f,0xe0,0x0,0x0,0x3,0xc0,0x0,0x0,0x7,0xfc,0x0,0x0,0x0, +0x0,0x0,0x0,0x7f,0x80,0x0,0x0,0x7,0xe0,0x0,0x0,0x3,0xfe,0x0,0x0,0x0, +0x0,0x0,0x1,0xff,0x0,0x0,0x0,0x7,0xe0,0x0,0x0,0x0,0xff,0x0,0x0,0x0, +0x0,0x0,0x3,0xfc,0x0,0x0,0x0,0x7,0xe0,0x0,0x0,0x0,0x3f,0xc0,0x0,0x0, +0x0,0x0,0x7,0xf8,0x0,0x0,0x0,0x7,0xe0,0x0,0x0,0x0,0x1f,0xe0,0x0,0x0, +0x0,0x0,0xf,0xf0,0x3,0x0,0x0,0x7,0xe0,0x0,0x0,0xc0,0xf,0xf0,0x0,0x0, +0x0,0x0,0x1f,0xe0,0x7,0x80,0x0,0x7,0xe0,0x0,0x1,0xe0,0x7,0xf8,0x0,0x0, +0x0,0x0,0x3f,0x80,0xf,0x80,0x0,0x3,0xc0,0x0,0x1,0xf0,0x3,0xfc,0x0,0x0, +0x0,0x0,0x7f,0x0,0xf,0xc0,0x0,0x1,0x80,0x0,0x3,0xf0,0x0,0xfe,0x0,0x0, +0x0,0x0,0xfe,0x0,0x7,0xe0,0x0,0x0,0x0,0x0,0x7,0xe0,0x0,0x7f,0x0,0x0, +0x0,0x1,0xfc,0x0,0x7,0xe0,0x0,0x0,0x0,0x0,0x7,0xe0,0x0,0x3f,0x80,0x0, +0x0,0x3,0xf8,0x0,0x3,0xf0,0x0,0x0,0x0,0x0,0xf,0xc0,0x0,0x1f,0xc0,0x0, +0x0,0x3,0xf0,0x0,0x3,0xf0,0x0,0x0,0x0,0x0,0xf,0xc0,0x0,0xf,0xc0,0x0, +0x0,0x7,0xe0,0x0,0x1,0xf0,0x0,0x0,0x0,0x0,0xf,0x80,0x0,0x7,0xe0,0x0, +0x0,0xf,0xc0,0x0,0x0,0xe0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x7,0xf0,0x0, +0x0,0x1f,0xc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xf8,0x0, +0x0,0x1f,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xf8,0x0, +0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0x0, +0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0x0, +0x0,0x7e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x0, +0x0,0xfc,0x0,0x0,0x0,0x0,0x0,0x3,0xc0,0x0,0x0,0x0,0x0,0x0,0x3f,0x0, +0x0,0xfc,0x0,0x0,0x0,0x0,0x0,0x3,0xc0,0x0,0x0,0x0,0x0,0x0,0x3f,0x0, +0x1,0xf8,0x0,0x0,0x0,0x0,0x0,0x7,0xe0,0x0,0x0,0x0,0x0,0x0,0x1f,0x80, +0x1,0xf0,0x0,0x0,0x0,0x0,0x0,0x7,0xe0,0x0,0x0,0x0,0x0,0x0,0x1f,0x80, +0x3,0xf0,0x3c,0x0,0x0,0x0,0x0,0x7,0xe0,0x0,0x0,0x0,0x0,0x3c,0xf,0xc0, +0x3,0xe0,0x3f,0x0,0x0,0x0,0x0,0x7,0xe0,0x0,0x0,0x0,0x0,0xfc,0x7,0xc0, +0x7,0xe0,0x3f,0xc0,0x0,0x0,0x0,0x7,0xe0,0x0,0x0,0x0,0x3,0xfc,0x7,0xe0, +0x7,0xc0,0x3f,0xe0,0x0,0x0,0x0,0x7,0xe0,0x0,0x0,0x0,0x7,0xfc,0x7,0xe0, +0xf,0xc0,0x1f,0xe0,0x0,0x0,0x0,0x7,0xe0,0x0,0x0,0x0,0x7,0xf8,0x3,0xe0, +0xf,0x80,0x7,0xe0,0x0,0x0,0x0,0x7,0xe0,0x0,0x0,0x0,0x7,0xf0,0x3,0xf0, +0xf,0x80,0x3,0xe0,0x0,0x0,0x0,0x7,0xe0,0x0,0x0,0x0,0x7,0xc0,0x1,0xf0, +0x1f,0x80,0x0,0x0,0x0,0x0,0x0,0x7,0xe0,0x0,0x0,0x0,0x1,0x0,0x1,0xf0, +0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xe0,0x0,0x0,0x0,0x0,0x0,0x1,0xf8, +0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8, +0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8, +0x3e,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc, +0x3e,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c, +0x3e,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c, +0x7e,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c, +0x7c,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e, +0x7c,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e, +0x7c,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e, +0x7c,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e, +0x7c,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e, +0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e, +0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x3e, +0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x3f, +0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x1f, +0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x1f, +0xf8,0xf,0xf0,0x0,0x0,0x0,0x0,0x1f,0xf8,0x0,0x0,0x0,0x0,0xf,0xf0,0x1f, +0xf8,0x1f,0xf8,0x0,0x0,0x0,0x0,0x1f,0xf8,0x0,0x0,0x0,0x0,0x1f,0xf8,0x1f, +0xf8,0x1f,0xf8,0x0,0x0,0x0,0x0,0x1f,0xf8,0x0,0x0,0x0,0x0,0x1f,0xf8,0x1f, +0xf8,0x1f,0xf8,0x0,0x0,0x0,0x0,0x1f,0xf8,0x0,0x0,0x0,0x0,0x1f,0xf8,0x1f, +0xf8,0xf,0xf0,0x0,0x0,0x0,0x0,0x1f,0xf8,0x0,0x0,0x0,0x0,0xf,0xf0,0x1f, +0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x1f, +0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x1f, +0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x1f, +0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0x7c,0x0,0x0,0x0,0x0,0x0,0x0,0x3f, +0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0x7c,0x0,0x0,0x0,0x0,0x0,0x0,0x3e, +0x7c,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0x7c,0x0,0x0,0x0,0x0,0x0,0x0,0x3e, +0x7c,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0x7c,0x0,0x0,0x0,0x0,0x0,0x0,0x3e, +0x7c,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0x7c,0x0,0x0,0x0,0x0,0x0,0x0,0x3e, +0x7c,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0x7c,0x0,0x0,0x0,0x0,0x0,0x0,0x3e, +0x7c,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0x7c,0x0,0x0,0x0,0x0,0x0,0x0,0x3e, +0x7e,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0x7c,0x0,0x0,0x0,0x0,0x0,0x0,0x7e, +0x3e,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0x7c,0x0,0x0,0x0,0x0,0x0,0x0,0x7c, +0x3e,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0x7c,0x0,0x0,0x0,0x0,0x0,0x0,0x7c, +0x3e,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x7e,0x0,0x0,0x0,0x0,0x0,0x0,0x7c, +0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x7e,0x0,0x0,0x0,0x0,0x0,0x0,0xfc, +0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x3e,0x0,0x0,0x0,0x0,0x0,0x0,0xf8, +0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x3e,0x0,0x0,0x0,0x0,0x0,0x0,0xf8, +0x1f,0x80,0x0,0x0,0x0,0x0,0x0,0x7c,0x3e,0x0,0x0,0x0,0x0,0x0,0x1,0xf8, +0x1f,0x80,0x1,0xc0,0x0,0x0,0x0,0x7c,0x3e,0x0,0x0,0x0,0x3,0x80,0x1,0xf0, +0xf,0x80,0x7,0xe0,0x0,0x0,0x0,0x7c,0x3e,0x0,0x0,0x0,0x7,0xe0,0x1,0xf0, +0xf,0xc0,0x1f,0xe0,0x0,0x0,0x0,0x7c,0x3e,0x0,0x0,0x0,0x7,0xf8,0x3,0xf0, +0x7,0xc0,0x3f,0xe0,0x0,0x0,0x0,0x7c,0x3e,0x0,0x0,0x0,0x7,0xfc,0x3,0xe0, +0x7,0xe0,0x3f,0xc0,0x0,0x0,0x0,0xfc,0x3f,0x0,0x0,0x0,0x3,0xfc,0x7,0xe0, +0x7,0xe0,0x3f,0x0,0x0,0x0,0x1,0xfc,0x3f,0x80,0x0,0x0,0x0,0xfc,0x7,0xc0, +0x3,0xf0,0x3e,0x0,0x0,0x0,0x1,0xf8,0x1f,0x80,0x0,0x0,0x0,0x7c,0xf,0xc0, +0x3,0xf0,0x8,0x0,0x0,0x0,0x3,0xf8,0x1f,0xc0,0x0,0x0,0x0,0x10,0xf,0x80, +0x1,0xf8,0x0,0x0,0x0,0x0,0x3,0xf0,0xf,0xc0,0x0,0x0,0x0,0x0,0x1f,0x80, +0x0,0xf8,0x0,0x0,0x0,0x0,0x3,0xe0,0x7,0xc0,0x0,0x0,0x0,0x0,0x1f,0x0, +0x0,0xf0,0x0,0x0,0x0,0x0,0x3,0xe0,0x7,0xc0,0x0,0x0,0x0,0x0,0xf,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xe0,0x7,0xe0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xe0,0x7,0xc0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xe0,0x7,0xc0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xe0,0x7,0xc0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xf0,0xf,0xc0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xf8,0x1f,0x80,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +}; +int pressure_icon_w = 128; +int pressure_icon_h = 128; + + +const uint8_t logo[] PROGMEM = { +0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0xf,0xc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x1f,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x7f,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x1,0xff,0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x7,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x1f,0xff,0xff,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x3f,0xfc,0xff,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x7f,0xf0,0x7f,0xfc,0x0,0xf,0xe0,0x0,0x7f,0x0,0x3f,0x0,0xf,0xf0,0x0,0x3f,0xff,0x87,0xfc,0x0,0x1f,0xff,0xc7,0xf0,0x0, +0x7f,0xc0,0x1f,0xfc,0x0,0x3f,0xf8,0x1,0xff,0xe0,0x3f,0x0,0xf,0xff,0x80,0x3f,0xff,0x87,0xff,0xe0,0x3f,0xff,0xc7,0xff,0xc0, +0x7f,0x0,0x7,0xfc,0x0,0x7f,0xfe,0x7,0xff,0xf0,0x3f,0x0,0xf,0xff,0xe0,0x3f,0xff,0x87,0xff,0xf8,0x1f,0xff,0xc7,0xff,0xf0, +0x7e,0x3,0x3,0xfc,0x0,0xff,0xfe,0x7,0xff,0xf8,0x3f,0x0,0xf,0xff,0xf8,0x3f,0xff,0x87,0xff,0xfc,0x3f,0xff,0xc7,0xff,0xf8, +0x7e,0x7,0xc1,0xf8,0x0,0xff,0xfc,0xf,0xff,0xfc,0x3f,0x0,0xf,0xff,0xf8,0x3f,0xff,0xc7,0xff,0xfe,0x1f,0xff,0xc7,0xff,0xfc, +0x7e,0xf,0xe0,0xf0,0x1,0xfc,0x38,0x1f,0xe1,0xfe,0x3f,0x0,0xf,0xc3,0xfc,0x3f,0x0,0x7,0xe0,0xfe,0x1f,0x0,0x7,0xe3,0xfe, +0x7e,0xf,0xf8,0x0,0x1,0xf8,0x8,0x1f,0xc0,0xfe,0x3f,0x0,0xf,0xc0,0xfe,0x3f,0x0,0x7,0xe0,0x7e,0x3f,0x0,0x7,0xe0,0xfe, +0x7e,0xf,0xfe,0x0,0x1,0xf8,0x0,0x3f,0x80,0x7e,0x1f,0x0,0xf,0xc0,0xfe,0x3f,0x0,0x7,0xe0,0x7e,0x1f,0x0,0x7,0xe0,0x7e, +0x7e,0x7,0xff,0x0,0x1,0xfc,0x0,0x3f,0x0,0x7e,0x3f,0x0,0xf,0xc0,0x7e,0x3f,0x0,0x7,0xe0,0x3e,0x1f,0x0,0x7,0xe0,0x7f, +0x7f,0x7,0xff,0xc0,0x1,0xff,0x0,0x3f,0x0,0x7f,0x3f,0x0,0xf,0xc0,0x7e,0x3f,0x0,0x7,0xe0,0x7e,0x3f,0x0,0x7,0xe0,0x3f, +0x7f,0x81,0xff,0xf0,0x0,0xff,0xe0,0x3f,0x0,0x3f,0x3f,0x0,0xf,0xc0,0x7e,0x3f,0xff,0x7,0xe0,0xfe,0x1f,0xff,0x7,0xe0,0x3f, +0x7f,0xf0,0x7f,0xf8,0x0,0x7f,0xf8,0x3f,0x0,0x3f,0x3f,0x0,0xf,0xc0,0x7e,0x3f,0xff,0x7,0xfb,0xfc,0x3f,0xff,0x7,0xe0,0x3f, +0x7f,0xf8,0x1f,0xf8,0x0,0x7f,0xfc,0x3f,0x0,0x3f,0x3f,0x0,0xf,0xc0,0x3f,0x3f,0xff,0x7,0xff,0xfc,0x1f,0xff,0x7,0xe0,0x3f, +0x3f,0xfe,0x7,0xf8,0x0,0x1f,0xfe,0x3f,0x0,0x3f,0x3f,0x0,0xf,0xc0,0x7e,0x3f,0xff,0x7,0xff,0xf8,0x3f,0xff,0x7,0xe0,0x3f, +0xf,0xff,0x81,0xf8,0x0,0x7,0xff,0x3f,0x0,0x3f,0x3f,0x0,0xf,0xc0,0x7e,0x3f,0x0,0x7,0xff,0xf0,0x1f,0x0,0x7,0xe0,0x3f, +0x3,0xff,0x81,0xf8,0x0,0x0,0xff,0x3f,0x0,0x7f,0x1f,0x0,0xf,0xc0,0x7e,0x3f,0x0,0x7,0xff,0xe0,0x3f,0x0,0x7,0xe0,0x3f, +0x1,0xff,0xc1,0xf8,0x0,0x0,0x3f,0x1f,0x80,0x7e,0x3f,0x80,0xf,0xc0,0x7e,0x3f,0x0,0x7,0xe3,0xf0,0x1f,0x0,0x7,0xe0,0x7f, +0x0,0x7f,0xc1,0xf8,0x0,0x0,0x3f,0x1f,0x80,0x7e,0x3f,0xc0,0xf,0xc0,0xfe,0x3f,0x0,0x7,0xe3,0xf0,0x3f,0x0,0x7,0xe0,0x7e, +0x3c,0x1f,0xc1,0xf8,0x0,0xe0,0x3f,0x1f,0xc0,0xfe,0x1f,0xe0,0xf,0xc1,0xfc,0x3f,0x0,0x7,0xe1,0xf8,0x1f,0x0,0x7,0xe0,0xfe, +0x7e,0x7,0xc1,0xf8,0x1,0xfe,0xff,0xf,0xff,0xfc,0xf,0xff,0xcf,0xff,0xf8,0x3f,0xff,0xc7,0xe1,0xfc,0x3f,0xff,0xc7,0xff,0xfc, +0xff,0x3,0x81,0xf8,0x1,0xff,0xfe,0xf,0xff,0xf8,0x7,0xff,0xcf,0xff,0xf8,0x3f,0xff,0xc7,0xe0,0xfc,0x1f,0xff,0xc7,0xff,0xf8, +0xff,0x80,0x3,0xf8,0x3,0xff,0xfe,0x7,0xff,0xf8,0x3,0xff,0x8f,0xff,0xf0,0x3f,0xff,0xc7,0xe0,0xfe,0x3f,0xff,0xc7,0xff,0xf8, +0xff,0xe0,0xf,0xf8,0x0,0xff,0xfc,0x3,0xff,0xf0,0x1,0xff,0xcf,0xff,0xe0,0x3f,0xff,0xc7,0xe0,0x7e,0x1f,0xff,0xc7,0xff,0xe0, +0xff,0xf8,0x3f,0xf8,0x0,0x3f,0xf0,0x0,0xff,0xc0,0x0,0xff,0xcf,0xff,0x0,0x3f,0xff,0xc7,0xe0,0x7f,0x3f,0xff,0xc7,0xff,0x80, +0x7f,0xfc,0xff,0xf0,0x0,0x2,0x40,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x3f,0xff,0xff,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x3,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0xff,0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x7f,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x1f,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x7,0xc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +}; +int logo_w = 200; +int logo_h = 40; diff --git a/examples/InkplatePLUS2/Basic/InkplatePLUS2_Partial_Update/InkplatePLUS2_Partial_Update.ino b/examples/InkplatePLUS2/Basic/InkplatePLUS2_Partial_Update/InkplatePLUS2_Partial_Update.ino index 9d0be6fd..35e49115 100644 --- a/examples/InkplatePLUS2/Basic/InkplatePLUS2_Partial_Update/InkplatePLUS2_Partial_Update.ino +++ b/examples/InkplatePLUS2/Basic/InkplatePLUS2_Partial_Update/InkplatePLUS2_Partial_Update.ino @@ -30,8 +30,9 @@ const char text[] = "This is partial update on Inkplate PLUS2 e-paper display! : // creating a scrolling effect as it decreases. int offset = 600; -// Variable that keeps count on how much screen has been partially updated +// Variable that keeps count on how how many times the screen has been partially updated int n = 0; + void setup() { display.begin(); // Init Inkplate library (you should call this function ONLY ONCE) diff --git a/src/Inkplate.h b/src/Inkplate.h index 613cbc39..e1aee4c2 100644 --- a/src/Inkplate.h +++ b/src/Inkplate.h @@ -128,7 +128,7 @@ class Inkplate : public System, public Graphics #ifdef ARDUINO_INKPLATEPLUS2 Buzzer buzzer; APDS_9960 apds9960; - BME680 bme680; + BME680 bme688; Soldered_LSM6DS3 accelerometer; BQ_27441 battery; void wakePeripheral(uint8_t _peripheral); diff --git a/src/boards/InkplatePLUS2.cpp b/src/boards/InkplatePLUS2.cpp index 4c529c03..ccc0b9e1 100644 --- a/src/boards/InkplatePLUS2.cpp +++ b/src/boards/InkplatePLUS2.cpp @@ -206,7 +206,7 @@ bool Inkplate::begin(void) } // Put them back to sleep - sleepPeripheral(INKPLATE_BUZZER | INKPLATE_APDS9960 | INKPLATE_BME680 | INKPLATE_ACCELEROMETER | + sleepPeripheral(INKPLATE_BUZZER | INKPLATE_APDS9960 | INKPLATE_BME688 | INKPLATE_ACCELEROMETER | INKPLATE_FUEL_GAUGE); _beginDone = 1; @@ -562,7 +562,7 @@ uint32_t Inkplate::partialUpdate(bool _forced, bool leaveOn) * * @param uint8_t _peripheral * The flag which peripheral to wake from deep sleep, you may use: - * INKPLATE_ACCELEROMETER, INKPLATE_BME680, INKPLATE_APDS9960 and + * INKPLATE_ACCELEROMETER, INKPLATE_BME688, INKPLATE_APDS9960 and * INKPLATE_FUEL_GAUGE * * @return None @@ -579,12 +579,12 @@ void Inkplate::wakePeripheral(uint8_t _peripheral) accelerometer.beginCore(); } - if (_peripheral & INKPLATE_BME680) + if (_peripheral & INKPLATE_BME688) { // Wake BME - uint8_t bmeControlReg = bme680.readByte(BME_CONTROL_ADDR); - bme680.putData(BME_CONTROL_ADDR, bmeControlReg | 0x01); - bme680.begin(); + uint8_t bmeControlReg = bme688.readByte(BME_CONTROL_ADDR); + bme688.putData(BME_CONTROL_ADDR, bmeControlReg | 0x01); + bme688.begin(); } if (_peripheral & INKPLATE_APDS9960) @@ -609,7 +609,7 @@ void Inkplate::wakePeripheral(uint8_t _peripheral) * * @param uint8_t _peripheral * The flag which peripheral to put to deep sleep, you may use: - * INKPLATE_ACCELEROMETER, INKPLATE_BME680, INKPLATE_APDS9960 and + * INKPLATE_ACCELEROMETER, INKPLATE_BME688, INKPLATE_APDS9960 and * INKPLATE_FUEL_GAUGE * * @return None @@ -624,11 +624,11 @@ void Inkplate::sleepPeripheral(uint8_t _peripheral) accelerometer.writeRegister(0x13, accControlReg | 0x04); } - if (_peripheral & INKPLATE_BME680) + if (_peripheral & INKPLATE_BME688) { // Put BME in sleep mode - uint8_t bmeControlReg = bme680.readByte(BME_CONTROL_ADDR); - bme680.putData(BME_CONTROL_ADDR, bmeControlReg & 0xFC); + uint8_t bmeControlReg = bme688.readByte(BME_CONTROL_ADDR); + bme688.putData(BME_CONTROL_ADDR, bmeControlReg & 0xFC); } if (_peripheral & INKPLATE_APDS9960) diff --git a/src/boards/InkplatePLUS2.h b/src/boards/InkplatePLUS2.h index 6f385547..30bba04c 100644 --- a/src/boards/InkplatePLUS2.h +++ b/src/boards/InkplatePLUS2.h @@ -47,7 +47,7 @@ // Sensor constants #define INKPLATE_BUZZER 0x01 #define INKPLATE_ACCELEROMETER 0x02 -#define INKPLATE_BME680 0x04 +#define INKPLATE_BME688 0x04 #define BME_CONTROL_ADDR 0x74 #define INKPLATE_APDS9960 0x08 #define INKPLATE_FUEL_GAUGE 0x1