/*
#include <avr/io.h>
#include <avr/interrupt.h>
#include <util/delay.h>
#define F_CPU 16000000UL
#define BAUD 9600
#define BAUD_PRESCALER (((F_CPU / (BAUD * 16UL))) - 1)
void UART_init(void) {
// Set baudrate: 9600
UBRR0H = (uint8_t)(BAUD_PRESCALER >> 8);
UBRR0L = (uint8_t)(BAUD_PRESCALER);
// Enable transmitter
UCSR0B = (1 << TXEN0);
// Set frame format: 8 data bits, 1 stop bit, no parity
UCSR0C = (1 << UCSZ01) | (1 << UCSZ00);
}
void UART_transmit_char(unsigned char data) {
while (!(UCSR0A & (1 << UDRE0)));
UDR0 = data;
}
int main(void) {
UART_init();
while (1) {
UART_transmit_char('a');
_delay_ms(500);
}
return 0;
}*//*
#include "U8glib.h"
#include <Arduino.h>
#include <stdbool.h>
U8GLIB_SSD1306_128X64 u8g(U8G_I2C_OPT_DEV_0 | U8G_I2C_OPT_NO_ACK | U8G_I2C_OPT_FAST); // Fast I2C / TWI
bool current_page = 1;
uint16_t current_frame = 0;
uint8_t runtime = 0;
// 'Icon Thermometer', 19x39px
const unsigned char epd_bitmap_temp [] PROGMEM = {
0x80,0x0f,0x00,0xc0,0x1f,0x00,0xe0,0x3f,0x00,0xe0,0x38,0x00,0x60,0xf6,0x00,
0x60,0x34,0x00,0x60,0x34,0x00,0x60,0x30,0x00,0x60,0xf0,0x00,0x60,0x30,0x00,
0x60,0x30,0x00,0x60,0x30,0x00,0x60,0xf0,0x00,0x60,0x30,0x00,0x60,0x30,0x00,
0x60,0x30,0x00,0x60,0xf0,0x00,0x60,0x30,0x00,0x60,0x30,0x00,0x60,0x30,0x00,
0x60,0x30,0x00,0x70,0x70,0x00,0x78,0xf0,0x00,0x3c,0xe0,0x01,0x1c,0xc0,0x01,
0x0e,0x98,0x03,0x0e,0x90,0x03,0x07,0x00,0x07,0x07,0x00,0x07,0x07,0x00,0x07,
0x07,0x00,0x07,0x0f,0x80,0x07,0x0e,0x80,0x03,0x1e,0xc0,0x03,0x3c,0xe0,0x01,
0x7c,0xf0,0x01,0xf8,0xff,0x00,0xe0,0x3f,0x00,0x80,0x0f,0x00
};
#define FRAME_WIDTH (48)
#define FRAME_HEIGHT (48)
#define FRAME_COUNT (sizeof(frames) / sizeof(frames[0]))
// Animation Family
const byte PROGMEM frames[][288] = {
{0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,240,0,0,63,128,3,248,0,0,96,192,7,12,0,0,96,192,6,12,0,0,96,192,6,4,0,0,96,192,6,12,0,0,96,192,6,12,0,0,57,128,3,152,0,0,31,0,1,240,0,0,0,0,0,0,0,0,0,0,0,48,0,3,255,248,15,254,0,7,0,56,28,39,0,12,0,1,0,1,128,12,0,7,192,1,128,12,0,6,96,0,128,12,0,12,48,0,192,12,128,12,48,0,192,12,192,14,96,6,64,12,192,7,224,6,96,12,192,3,192,6,96,12,192,0,0,7,96,12,192,31,248,3,48,12,192,63,252,3,48,12,192,48,12,3,176,12,192,96,6,1,152,12,192,96,6,1,152,12,192,96,6,1,216,13,196,96,6,0,240,15,204,96,6,0,224,3,204,96,6,0,64,0,204,96,6,124,96,0,204,96,7,255,192,0,204,112,14,254,0,0,204,124,62,228,0,0,204,108,62,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,206,108,54,228,0,0,255,239,231,252,0,0,127,199,227,248,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,240,0,0,63,128,3,248,0,0,96,192,7,12,0,0,96,192,6,12,0,0,96,192,6,4,0,0,96,192,6,12,0,0,96,192,6,12,0,0,57,128,3,152,0,0,31,0,1,240,0,0,0,0,0,0,0,0,0,0,0,48,0,3,255,248,15,254,0,7,0,56,28,39,0,12,0,1,0,1,128,12,0,7,192,1,128,12,0,6,96,0,128,12,0,12,48,0,192,12,128,12,48,0,192,12,192,14,96,6,64,12,192,7,224,6,96,12,192,3,192,6,96,12,192,0,0,7,96,12,192,31,248,3,48,12,192,63,252,3,48,12,192,48,12,3,176,12,192,96,6,1,152,12,192,96,6,1,152,12,192,96,6,1,216,13,196,96,6,0,240,15,204,96,6,0,224,3,204,96,6,0,64,0,204,96,6,124,96,0,204,96,7,255,192,0,204,112,14,254,0,0,204,124,62,228,0,0,204,108,62,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,206,108,54,228,0,0,255,239,231,252,0,0,127,199,227,248,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,240,0,0,63,128,3,248,0,0,96,192,7,12,0,0,96,192,6,12,0,0,96,192,6,4,0,0,96,192,6,12,0,0,96,192,6,12,0,0,57,128,3,152,0,0,31,0,1,240,0,0,0,0,0,0,0,0,0,0,0,48,0,3,255,248,15,254,0,7,0,56,28,39,0,12,0,1,0,1,128,12,0,7,192,1,128,12,0,6,96,0,128,12,0,12,48,0,192,12,128,12,48,0,192,12,192,14,96,6,64,12,192,7,224,6,96,12,192,3,192,6,96,12,192,0,0,7,96,12,192,31,248,3,48,12,192,63,252,3,48,12,192,48,12,3,176,12,192,96,6,1,152,12,192,96,6,1,152,12,192,96,6,1,216,13,196,96,6,0,240,15,204,96,6,0,224,3,204,96,6,0,64,0,204,96,6,124,96,0,204,96,7,255,192,0,204,112,14,254,0,0,204,124,62,228,0,0,204,108,62,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,206,108,54,228,0,0,255,239,231,252,0,0,127,199,227,248,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,240,0,0,63,128,3,248,0,0,96,192,7,12,0,0,96,192,6,12,0,0,96,192,6,4,0,0,96,192,6,12,0,0,96,192,6,12,0,0,57,128,3,152,0,0,31,0,1,240,0,0,0,0,0,0,0,0,0,0,0,48,0,3,255,248,15,254,0,7,0,56,28,39,0,12,0,1,0,1,128,12,0,7,192,1,128,12,0,6,96,0,128,12,0,12,48,0,192,12,128,12,48,0,192,12,192,14,96,6,64,12,192,7,224,6,96,12,192,3,192,6,96,12,192,0,0,7,96,12,192,31,248,3,48,12,192,63,252,3,48,12,192,48,12,3,176,12,192,96,6,1,152,12,192,96,6,1,152,12,192,96,6,1,216,13,196,96,6,0,240,15,204,96,6,0,224,3,204,96,6,0,64,0,204,96,6,124,96,0,204,96,7,255,192,0,204,112,14,254,0,0,204,124,62,228,0,0,204,108,62,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,206,108,54,228,0,0,255,239,231,252,0,0,127,199,227,248,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,240,0,0,63,128,3,248,0,0,96,192,7,12,0,0,96,192,6,12,0,0,96,192,6,4,0,0,96,192,6,12,0,0,96,192,6,12,0,0,57,128,3,152,0,0,31,0,1,240,0,0,0,0,0,0,0,0,0,0,0,48,0,3,255,248,15,254,0,7,0,56,28,39,0,12,0,1,0,1,128,12,0,7,192,1,128,12,0,6,96,0,128,12,0,12,48,0,192,12,128,12,48,0,192,12,192,14,96,6,192,12,192,7,224,6,96,12,192,3,192,7,112,12,192,0,0,7,56,12,192,31,248,3,14,12,192,63,252,3,199,12,192,48,12,1,227,12,192,96,6,1,255,12,192,96,6,1,158,12,192,96,6,0,128,13,196,96,6,0,192,15,204,96,6,0,192,3,204,96,6,0,64,0,204,96,6,124,96,0,204,96,7,255,192,0,204,112,14,254,0,0,204,124,62,228,0,0,204,108,62,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,206,108,54,228,0,0,255,239,231,252,0,0,127,199,227,248,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,240,0,0,63,128,3,248,0,0,96,192,7,12,0,0,96,192,6,12,0,0,96,192,6,4,0,0,96,192,6,12,0,0,96,192,6,12,0,0,57,128,3,152,0,0,31,0,1,240,0,0,0,0,0,0,0,0,0,0,0,48,0,3,255,248,15,254,0,7,0,56,28,39,0,12,0,1,0,1,128,12,0,7,192,1,128,12,0,6,96,0,128,12,0,12,48,0,192,12,128,12,48,0,192,12,192,14,96,6,192,12,192,7,224,6,126,12,192,3,192,6,127,12,192,0,0,7,3,12,192,31,248,3,151,12,192,63,252,3,254,12,192,48,12,1,240,12,192,96,6,1,128,12,192,96,6,1,128,12,192,96,6,0,128,13,196,96,6,0,192,15,204,96,6,0,192,3,204,96,6,0,64,0,204,96,6,124,96,0,204,96,7,255,192,0,204,112,14,254,0,0,204,124,62,228,0,0,204,108,62,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,206,108,54,228,0,0,255,239,231,252,0,0,127,199,227,248,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,240,0,0,63,128,3,248,0,0,96,192,7,12,0,0,96,192,6,12,0,0,96,192,6,4,0,0,96,192,6,12,0,0,96,192,6,12,0,0,57,128,3,152,0,0,31,0,1,240,0,0,0,0,0,0,0,0,0,0,0,48,0,3,255,248,15,254,0,7,0,56,28,39,0,12,0,1,0,1,128,12,0,7,192,1,128,12,0,6,96,0,128,12,0,12,48,0,204,12,128,12,48,0,254,12,192,14,96,6,246,12,192,7,224,6,102,12,192,3,192,6,70,12,192,0,0,7,12,12,192,31,248,3,188,12,192,63,252,3,240,12,192,48,12,1,128,12,192,96,6,1,128,12,192,96,6,1,128,12,192,96,6,0,128,13,196,96,6,0,192,15,204,96,6,0,192,3,204,96,6,0,64,0,204,96,6,124,96,0,204,96,7,255,192,0,204,112,14,254,0,0,204,124,62,228,0,0,204,108,62,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,206,108,54,228,0,0,255,239,231,252,0,0,127,199,227,248,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,240,0,0,63,128,3,248,0,0,96,192,7,12,0,0,96,192,6,12,0,0,96,192,6,4,0,0,96,192,6,12,0,0,96,192,6,12,0,0,57,128,3,152,0,0,31,0,1,240,0,0,0,0,0,0,0,0,0,0,0,48,0,3,255,248,15,254,0,7,0,56,28,39,0,12,0,1,0,1,128,12,0,7,192,1,152,12,0,6,96,0,252,12,0,12,48,0,230,12,128,12,48,0,230,12,192,14,96,6,228,12,192,7,224,6,76,12,192,3,192,6,12,12,192,0,0,7,28,12,192,31,248,3,248,12,192,63,252,3,224,12,192,48,12,1,0,12,192,96,6,1,128,12,192,96,6,1,128,12,192,96,6,0,128,13,196,96,6,0,192,15,204,96,6,0,192,3,204,96,6,0,64,0,204,96,6,124,96,0,204,96,7,255,192,0,204,112,14,254,0,0,204,124,62,228,0,0,204,108,62,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,206,108,54,228,0,0,255,239,231,252,0,0,127,199,227,248,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,240,0,0,63,128,3,248,0,0,96,192,7,12,0,0,96,192,6,12,0,0,96,192,6,4,0,0,96,192,6,12,0,0,96,192,6,12,0,0,57,128,3,152,0,0,31,0,1,240,0,0,0,0,0,0,0,0,0,0,0,48,0,3,255,248,15,254,0,7,0,56,28,39,0,12,0,1,0,1,184,12,0,7,192,1,252,12,0,6,96,0,236,12,0,12,48,0,204,12,128,12,48,0,236,12,192,14,96,6,236,12,192,7,224,6,12,12,192,3,192,7,12,12,192,0,0,7,248,12,192,31,248,3,240,12,192,63,252,3,0,12,192,48,12,1,0,12,192,96,6,1,128,12,192,96,6,1,128,12,192,96,6,0,128,13,196,96,6,0,192,15,204,96,6,0,192,3,204,96,6,0,64,0,204,96,6,124,96,0,204,96,7,255,192,0,204,112,14,254,0,0,204,124,62,228,0,0,204,108,62,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,206,108,54,228,0,0,255,239,231,252,0,0,127,199,227,248,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,240,0,0,63,128,3,248,0,0,96,192,7,12,0,0,96,192,6,12,0,0,96,192,6,4,0,0,96,192,6,12,0,0,96,192,6,12,0,0,57,128,3,152,0,0,31,0,1,240,0,0,0,0,0,0,0,0,0,0,0,48,0,3,255,248,15,254,0,7,0,56,28,39,0,12,0,1,0,1,184,12,0,7,192,1,252,12,0,6,96,0,236,12,0,12,48,0,236,12,128,12,48,0,236,12,192,14,96,6,236,12,192,7,224,6,12,12,192,3,192,7,12,12,192,0,0,7,248,12,192,31,248,3,240,12,192,63,252,3,0,12,192,48,12,1,0,12,192,96,6,1,128,12,192,96,6,1,128,12,192,96,6,0,128,13,196,96,6,0,192,15,204,96,6,0,192,3,204,96,6,0,64,0,204,96,6,124,96,0,204,96,7,255,192,0,204,112,14,254,0,0,204,124,62,228,0,0,204,108,62,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,206,108,54,228,0,0,255,239,231,252,0,0,127,199,227,248,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,240,0,0,63,128,3,248,0,0,96,192,7,12,0,0,96,192,6,12,0,0,96,192,6,4,0,0,96,192,6,12,0,0,96,192,6,12,0,0,57,128,3,152,0,0,31,0,1,240,0,0,0,0,0,0,0,0,0,0,0,48,0,3,255,248,15,254,0,7,0,56,28,39,0,12,0,1,0,1,136,12,0,7,192,1,188,12,0,6,96,0,246,12,0,12,48,0,230,12,128,12,48,0,230,12,192,14,96,6,108,12,192,7,224,6,12,12,192,3,192,7,12,12,192,0,0,7,248,12,192,31,248,3,224,12,192,63,252,3,0,12,192,48,12,1,0,12,192,96,6,1,128,12,192,96,6,1,128,12,192,96,6,0,128,13,196,96,6,0,192,15,204,96,6,0,192,3,204,96,6,0,64,0,204,96,6,124,96,0,204,96,7,255,192,0,204,112,14,254,0,0,204,124,62,228,0,0,204,108,62,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,206,108,54,228,0,0,255,239,231,252,0,0,127,199,227,248,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,240,0,0,63,128,3,248,0,0,96,192,7,12,0,0,96,192,6,12,0,0,96,192,6,4,0,0,96,192,6,12,0,0,96,192,6,12,0,0,57,128,3,152,0,0,31,0,1,240,0,0,0,0,0,0,0,0,0,0,0,48,0,3,255,248,15,254,0,7,0,56,28,39,0,12,0,1,0,1,128,12,0,7,192,1,156,12,0,6,96,0,254,12,0,12,48,0,246,12,128,12,48,0,230,12,192,14,96,6,102,12,192,7,224,6,12,12,192,3,192,7,12,12,192,0,0,7,248,12,192,31,248,3,240,12,192,63,252,3,0,12,192,48,12,1,0,12,192,96,6,1,128,12,192,96,6,1,128,12,192,96,6,0,128,13,196,96,6,0,192,15,204,96,6,0,192,3,204,96,6,0,64,0,204,96,6,124,96,0,204,96,7,255,192,0,204,112,14,254,0,0,204,124,62,228,0,0,204,108,62,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,206,108,54,228,0,0,255,239,231,252,0,0,127,199,227,248,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,240,0,0,63,128,3,248,0,0,96,192,7,12,0,0,96,192,6,12,0,0,96,192,6,4,0,0,96,192,6,12,0,0,96,192,6,12,0,0,57,128,3,152,0,0,31,0,1,240,0,0,0,0,0,0,0,0,0,0,0,48,0,3,255,248,15,254,0,7,0,56,28,39,0,12,0,1,0,1,136,12,0,7,192,1,188,12,0,6,96,0,246,12,0,12,48,0,230,12,128,12,48,0,230,12,192,14,96,6,108,12,192,7,224,6,12,12,192,3,192,7,12,12,192,0,0,7,248,12,192,31,248,3,224,12,192,63,252,3,0,12,192,48,12,1,0,12,192,96,6,1,128,12,192,96,6,1,128,12,192,96,6,0,128,13,196,96,6,0,192,15,204,96,6,0,192,3,204,96,6,0,64,0,204,96,6,124,96,0,204,96,7,255,192,0,204,112,14,254,0,0,204,124,62,228,0,0,204,108,62,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,206,108,54,228,0,0,255,239,231,252,0,0,127,199,227,248,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,240,0,0,63,128,3,248,0,0,96,192,7,12,0,0,96,192,6,12,0,0,96,192,6,4,0,0,96,192,6,12,0,0,96,192,6,12,0,0,57,128,3,152,0,0,31,0,1,240,0,0,0,0,0,0,0,0,0,0,0,48,0,3,255,248,15,254,0,7,0,56,28,39,0,12,0,1,0,1,184,12,0,7,192,1,252,12,0,6,96,0,236,12,0,12,48,0,236,12,128,12,48,0,236,12,192,14,96,6,236,12,192,7,224,6,12,12,192,3,192,7,12,12,192,0,0,7,248,12,192,31,248,3,240,12,192,63,252,3,0,12,192,48,12,1,0,12,192,96,6,1,128,12,192,96,6,1,128,12,192,96,6,0,128,13,196,96,6,0,192,15,204,96,6,0,192,3,204,96,6,0,64,0,204,96,6,124,96,0,204,96,7,255,192,0,204,112,14,254,0,0,204,124,62,228,0,0,204,108,62,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,206,108,54,228,0,0,255,239,231,252,0,0,127,199,227,248,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,240,0,0,63,128,3,248,0,0,96,192,7,12,0,0,96,192,6,12,0,0,96,192,6,4,0,0,96,192,6,12,0,0,96,192,6,12,0,0,57,128,3,152,0,0,31,0,1,240,0,0,0,0,0,0,0,0,0,0,0,48,0,3,255,248,15,254,0,7,0,56,28,39,0,12,0,1,0,1,184,12,0,7,192,1,252,12,0,6,96,0,236,12,0,12,48,0,204,12,128,12,48,0,236,12,192,14,96,6,236,12,192,7,224,6,12,12,192,3,192,7,12,12,192,0,0,7,248,12,192,31,248,3,240,12,192,63,252,3,0,12,192,48,12,1,0,12,192,96,6,1,128,12,192,96,6,1,128,12,192,96,6,0,128,13,196,96,6,0,192,15,204,96,6,0,192,3,204,96,6,0,64,0,204,96,6,124,96,0,204,96,7,255,192,0,204,112,14,254,0,0,204,124,62,228,0,0,204,108,62,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,206,108,54,228,0,0,255,239,231,252,0,0,127,199,227,248,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,240,0,0,63,128,3,248,0,0,96,192,7,12,0,0,96,192,6,12,0,0,96,192,6,4,0,0,96,192,6,12,0,0,96,192,6,12,0,0,57,128,3,152,0,0,31,0,1,240,0,0,0,0,0,0,0,0,0,0,0,48,0,3,255,248,15,254,0,7,0,56,28,39,0,12,0,1,0,1,184,12,0,7,192,1,252,12,0,6,96,0,236,12,0,12,48,0,236,12,128,12,48,0,236,12,192,14,96,6,236,12,192,7,224,6,12,12,192,3,192,7,12,12,192,0,0,7,248,12,192,31,248,3,240,12,192,63,252,3,0,12,192,48,12,1,0,12,192,96,6,1,128,12,192,96,6,1,128,12,192,96,6,0,128,13,196,96,6,0,192,15,204,96,6,0,192,3,204,96,6,0,64,0,204,96,6,124,96,0,204,96,7,255,192,0,204,112,14,254,0,0,204,124,62,228,0,0,204,108,62,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,206,108,54,228,0,0,255,239,231,252,0,0,127,199,227,248,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,240,0,0,63,128,3,248,0,0,96,192,7,12,0,0,96,192,6,12,0,0,96,192,6,4,0,0,96,192,6,12,0,0,96,192,6,12,0,0,57,128,3,152,0,0,31,0,1,240,0,0,0,0,0,0,0,0,0,0,0,48,0,3,255,248,15,254,0,7,0,56,28,39,0,12,0,1,0,1,136,12,0,7,192,1,188,12,0,6,96,0,246,12,0,12,48,0,230,12,128,12,48,0,230,12,192,14,96,6,108,12,192,7,224,6,12,12,192,3,192,7,12,12,192,0,0,7,248,12,192,31,248,3,224,12,192,63,252,3,0,12,192,48,12,1,0,12,192,96,6,1,128,12,192,96,6,1,128,12,192,96,6,0,128,13,196,96,6,0,192,15,204,96,6,0,192,3,204,96,6,0,64,0,204,96,6,124,96,0,204,96,7,255,192,0,204,112,14,254,0,0,204,124,62,228,0,0,204,108,62,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,206,108,54,228,0,0,255,239,231,252,0,0,127,199,227,248,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,240,0,0,63,128,3,248,0,0,96,192,7,12,0,0,96,192,6,12,0,0,96,192,6,4,0,0,96,192,6,12,0,0,96,192,6,12,0,0,57,128,3,152,0,0,31,0,1,240,0,0,0,0,0,0,0,0,0,0,0,48,0,3,255,248,15,254,0,7,0,56,28,39,0,12,0,1,0,1,128,12,0,7,192,1,156,12,0,6,96,0,254,12,0,12,48,0,246,12,128,12,48,0,230,12,192,14,96,6,102,12,192,7,224,6,12,12,192,3,192,7,12,12,192,0,0,7,248,12,192,31,248,3,240,12,192,63,252,3,0,12,192,48,12,1,0,12,192,96,6,1,128,12,192,96,6,1,128,12,192,96,6,0,128,13,196,96,6,0,192,15,204,96,6,0,192,3,204,96,6,0,64,0,204,96,6,124,96,0,204,96,7,255,192,0,204,112,14,254,0,0,204,124,62,228,0,0,204,108,62,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,206,108,54,228,0,0,255,239,231,252,0,0,127,199,227,248,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,240,0,0,63,128,3,248,0,0,96,192,7,12,0,0,96,192,6,12,0,0,96,192,6,4,0,0,96,192,6,12,0,0,96,192,6,12,0,0,57,128,3,152,0,0,31,0,1,240,0,0,0,0,0,0,0,0,0,0,0,48,0,3,255,248,15,254,0,7,0,56,28,39,0,12,0,1,0,1,136,12,0,7,192,1,188,12,0,6,96,0,246,12,0,12,48,0,230,12,128,12,48,0,230,12,192,14,96,6,108,12,192,7,224,6,12,12,192,3,192,7,12,12,192,0,0,7,248,12,192,31,248,3,224,12,192,63,252,3,0,12,192,48,12,1,0,12,192,96,6,1,128,12,192,96,6,1,128,12,192,96,6,0,128,13,196,96,6,0,192,15,204,96,6,0,192,3,204,96,6,0,64,0,204,96,6,124,96,0,204,96,7,255,192,0,204,112,14,254,0,0,204,124,62,228,0,0,204,108,62,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,206,108,54,228,0,0,255,239,231,252,0,0,127,199,227,248,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,240,0,0,63,128,3,248,0,0,96,192,7,12,0,0,96,192,6,12,0,0,96,192,6,4,0,0,96,192,6,12,0,0,96,192,6,12,0,0,57,128,3,152,0,0,31,0,1,240,0,0,0,0,0,0,0,0,0,0,0,48,0,3,255,248,15,254,0,7,0,56,28,39,0,12,0,1,0,1,184,12,0,7,192,1,252,12,0,6,96,0,236,12,0,12,48,0,236,12,128,12,48,0,236,12,192,14,96,6,236,12,192,7,224,6,12,12,192,3,192,7,12,12,192,0,0,7,248,12,192,31,248,3,240,12,192,63,252,3,0,12,192,48,12,1,0,12,192,96,6,1,128,12,192,96,6,1,128,12,192,96,6,0,128,13,196,96,6,0,192,15,204,96,6,0,192,3,204,96,6,0,64,0,204,96,6,124,96,0,204,96,7,255,192,0,204,112,14,254,0,0,204,124,62,228,0,0,204,108,62,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,206,108,54,228,0,0,255,239,231,252,0,0,127,199,227,248,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,240,0,0,63,128,3,248,0,0,96,192,7,12,0,0,96,192,6,12,0,0,96,192,6,4,0,0,96,192,6,12,0,0,96,192,6,12,0,0,57,128,3,152,0,0,31,0,1,240,0,0,0,0,0,0,0,0,0,0,0,48,0,3,255,248,15,254,0,7,0,56,28,39,0,12,0,1,0,1,184,12,0,7,192,1,252,12,0,6,96,0,236,12,0,12,48,0,204,12,128,12,48,0,236,12,192,14,96,6,236,12,192,7,224,6,12,12,192,3,192,7,12,12,192,0,0,7,248,12,192,31,248,3,240,12,192,63,252,3,0,12,192,48,12,1,0,12,192,96,6,1,128,12,192,96,6,1,128,12,192,96,6,0,128,13,196,96,6,0,192,15,204,96,6,0,192,3,204,96,6,0,64,0,204,96,6,124,96,0,204,96,7,255,192,0,204,112,14,254,0,0,204,124,62,228,0,0,204,108,62,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,206,108,54,228,0,0,255,239,231,252,0,0,127,199,227,248,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,240,0,0,63,128,3,248,0,0,96,192,7,12,0,0,96,192,6,12,0,0,96,192,6,4,0,0,96,192,6,12,0,0,96,192,6,12,0,0,57,128,3,152,0,0,31,0,1,240,0,0,0,0,0,0,0,0,0,0,0,48,0,3,255,248,15,254,0,7,0,56,28,39,0,12,0,1,0,1,128,12,0,7,192,1,152,12,0,6,96,0,252,12,0,12,48,0,230,12,128,12,48,0,230,12,192,14,96,6,228,12,192,7,224,6,76,12,192,3,192,6,12,12,192,0,0,7,28,12,192,31,248,3,248,12,192,63,252,3,224,12,192,48,12,1,0,12,192,96,6,1,128,12,192,96,6,1,128,12,192,96,6,0,128,13,196,96,6,0,192,15,204,96,6,0,192,3,204,96,6,0,64,0,204,96,6,124,96,0,204,96,7,255,192,0,204,112,14,254,0,0,204,124,62,228,0,0,204,108,62,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,206,108,54,228,0,0,255,239,231,252,0,0,127,199,227,248,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,240,0,0,63,128,3,248,0,0,96,192,7,12,0,0,96,192,6,12,0,0,96,192,6,4,0,0,96,192,6,12,0,0,96,192,6,12,0,0,57,128,3,152,0,0,31,0,1,240,0,0,0,0,0,0,0,0,0,0,0,48,0,3,255,248,15,254,0,7,0,56,28,39,0,12,0,1,0,1,128,12,0,7,192,1,128,12,0,6,96,0,128,12,0,12,48,0,204,12,128,12,48,0,254,12,192,14,96,6,246,12,192,7,224,6,102,12,192,3,192,6,70,12,192,0,0,7,12,12,192,31,248,3,188,12,192,63,252,3,240,12,192,48,12,1,128,12,192,96,6,1,128,12,192,96,6,1,128,12,192,96,6,0,128,13,196,96,6,0,192,15,204,96,6,0,192,3,204,96,6,0,64,0,204,96,6,124,96,0,204,96,7,255,192,0,204,112,14,254,0,0,204,124,62,228,0,0,204,108,62,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,206,108,54,228,0,0,255,239,231,252,0,0,127,199,227,248,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,240,0,0,63,128,3,248,0,0,96,192,7,12,0,0,96,192,6,12,0,0,96,192,6,4,0,0,96,192,6,12,0,0,96,192,6,12,0,0,57,128,3,152,0,0,31,0,1,240,0,0,0,0,0,0,0,0,0,0,0,48,0,3,255,248,15,254,0,7,0,56,28,39,0,12,0,1,0,1,128,12,0,7,192,1,128,12,0,6,96,0,128,12,0,12,48,0,192,12,128,12,48,0,192,12,192,14,96,6,192,12,192,7,224,6,126,12,192,3,192,6,127,12,192,0,0,7,3,12,192,31,248,3,151,12,192,63,252,3,254,12,192,48,12,1,240,12,192,96,6,1,128,12,192,96,6,1,128,12,192,96,6,0,128,13,196,96,6,0,192,15,204,96,6,0,192,3,204,96,6,0,64,0,204,96,6,124,96,0,204,96,7,255,192,0,204,112,14,254,0,0,204,124,62,228,0,0,204,108,62,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,206,108,54,228,0,0,255,239,231,252,0,0,127,199,227,248,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,240,0,0,63,128,3,248,0,0,96,192,7,12,0,0,96,192,6,12,0,0,96,192,6,4,0,0,96,192,6,12,0,0,96,192,6,12,0,0,57,128,3,152,0,0,31,0,1,240,0,0,0,0,0,0,0,0,0,0,0,48,0,3,255,248,15,254,0,7,0,56,28,39,0,12,0,1,0,1,128,12,0,7,192,1,128,12,0,6,96,0,128,12,0,12,48,0,192,12,128,12,48,0,192,12,192,14,96,6,192,12,192,7,224,6,96,12,192,3,192,7,112,12,192,0,0,7,56,12,192,31,248,3,14,12,192,63,252,3,199,12,192,48,12,1,227,12,192,96,6,1,255,12,192,96,6,1,158,12,192,96,6,0,128,13,196,96,6,0,192,15,204,96,6,0,192,3,204,96,6,0,64,0,204,96,6,124,96,0,204,96,7,255,192,0,204,112,14,254,0,0,204,124,62,228,0,0,204,108,62,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,206,108,54,228,0,0,255,239,231,252,0,0,127,199,227,248,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,240,0,0,63,128,3,248,0,0,96,192,7,12,0,0,96,192,6,12,0,0,96,192,6,4,0,0,96,192,6,12,0,0,96,192,6,12,0,0,57,128,3,152,0,0,31,0,1,240,0,0,0,0,0,0,0,0,0,0,0,48,0,3,255,248,15,254,0,7,0,56,28,39,0,12,0,1,0,1,128,12,0,7,192,1,128,12,0,6,96,0,128,12,0,12,48,0,192,12,128,12,48,0,192,12,192,14,96,6,64,12,192,7,224,6,96,12,192,3,192,6,96,12,192,0,0,7,96,12,192,31,248,3,48,12,192,63,252,3,48,12,192,48,12,3,176,12,192,96,6,1,152,12,192,96,6,1,152,12,192,96,6,1,216,13,196,96,6,0,240,15,204,96,6,0,224,3,204,96,6,0,64,0,204,96,6,124,96,0,204,96,7,255,192,0,204,112,14,254,0,0,204,124,62,228,0,0,204,108,62,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,206,108,54,228,0,0,255,239,231,252,0,0,127,199,227,248,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,240,0,0,63,128,3,248,0,0,96,192,7,12,0,0,96,192,6,12,0,0,96,192,6,4,0,0,96,192,6,12,0,0,96,192,6,12,0,0,57,128,3,152,0,0,31,0,1,240,0,0,0,0,0,0,0,0,0,0,0,48,0,3,255,248,15,254,0,7,0,56,28,39,0,12,0,1,0,1,128,12,0,7,192,1,128,12,0,6,96,0,128,12,0,12,48,0,192,12,128,12,48,0,192,12,192,14,96,6,64,12,192,7,224,6,96,12,192,3,192,6,96,12,192,0,0,7,96,12,192,31,248,3,48,12,192,63,252,3,48,12,192,48,12,3,176,12,192,96,6,1,152,12,192,96,6,1,152,12,192,96,6,1,216,13,196,96,6,0,240,15,204,96,6,0,224,3,204,96,6,0,64,0,204,96,6,124,96,0,204,96,7,255,192,0,204,112,14,254,0,0,204,124,62,228,0,0,204,108,62,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,206,108,54,228,0,0,255,239,231,252,0,0,127,199,227,248,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,240,0,0,63,128,3,248,0,0,96,192,7,12,0,0,96,192,6,12,0,0,96,192,6,4,0,0,96,192,6,12,0,0,96,192,6,12,0,0,57,128,3,152,0,0,31,0,1,240,0,0,0,0,0,0,0,0,0,0,0,48,0,3,255,248,15,254,0,7,0,56,28,39,0,12,0,1,0,1,128,12,0,7,192,1,128,12,0,6,96,0,128,12,0,12,48,0,192,12,128,12,48,0,192,12,192,14,96,6,64,12,192,7,224,6,96,12,192,3,192,6,96,12,192,0,0,7,96,12,192,31,248,3,48,12,192,63,252,3,48,12,192,48,12,3,176,12,192,96,6,1,152,12,192,96,6,1,152,12,192,96,6,1,216,13,196,96,6,0,240,15,204,96,6,0,224,3,204,96,6,0,64,0,204,96,6,124,96,0,204,96,7,255,192,0,204,112,14,254,0,0,204,124,62,228,0,0,204,108,62,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,206,108,54,228,0,0,255,239,231,252,0,0,127,199,227,248,0,0,0,0,0,0,0,0,0,0,0,0,0}
};
void draw_temp_page(){
u8g.setFont(u8g_font_helvB08);
u8g.drawStr(94, 11, "Inside");
u8g.drawStr(86, 43, "Outside");
u8g.setFont(u8g_font_helvB14);
u8g.drawStr(100, 28, "C");
u8g.drawStr(100, 59, "C");
u8g.drawStr(63, 28, "21.3");
u8g.drawStr(63, 59, "11.6");
uint8_t mid = 55;
uint8_t y_lvl = 32;
uint8_t length = 3;
uint8_t spacing = 8;
uint8_t num_of_lines = 14;
// Dashed line
for(int i = 0; i<num_of_lines; i++){
u8g.drawLine(mid, y_lvl, mid+length, y_lvl);
mid += spacing;
// Prevent line from being drawn outside of screen
if(mid+length > u8g.getWidth()){break;}
}
// Icon
u8g.drawXBMP(18,15,19,39,epd_bitmap_temp);
// Corners
u8g.drawTriangle(0,0,0,5,5,0); //Top Left
u8g.drawTriangle(0,63,0,57,6,63); //Bottom Left
u8g.drawTriangle(127,0,122,0,127,5); //Top Right
u8g.drawTriangle(127,127,58,127,127,58); //Bottom Right
// Lines
u8g.drawLine(5,3, 23,3);
u8g.drawLine(40,3, 83,3);
u8g.drawLine(2,6, 2,27);
u8g.drawLine(5,20, 5,38);
u8g.drawLine(2,35, 2,56);
u8g.drawLine(7,61, 56,61);
u8g.drawLine(46,6, 80,6);
}
void draw_credits_page(){
u8g.setFont(u8g_font_helvB08);
u8g.drawStr(80, 17, "Erik");
u8g.drawStr(70, 33, "Johanna");
u8g.drawStr(75, 50, "Patrik");
// Animate family
u8g.drawBitmapP(8, 8, FRAME_WIDTH/8, FRAME_HEIGHT, frames[current_frame]);
}
void setup() {
u8g.setColorIndex(1);
}
void loop() {
u8g.firstPage();
if(current_page){
do {
draw_temp_page();
} while ( u8g.nextPage() );
}else{
do {
draw_credits_page();
} while ( u8g.nextPage() );
}
// Only animate the family, when the correct page is showing
if((current_frame < FRAME_COUNT - 1) && !current_page){
current_frame++;
}else{
current_frame = 0;
}
// Change page after duration
if(runtime > 60){
current_page = !current_page;
runtime = 0;
}
runtime++;
}
*/
#include "U8glib.h"
#include <Arduino.h>
#include <stdbool.h>
U8GLIB_SSD1306_128X64 u8g(U8G_I2C_OPT_DEV_0 | U8G_I2C_OPT_NO_ACK | U8G_I2C_OPT_FAST); // Fast I2C / TWI
// 'Icon Thermometer', 19x39px
const unsigned char epd_bitmap_temp [] PROGMEM = {
0x80,0x0f,0x00,0xc0,0x1f,0x00,0xe0,0x3f,0x00,0xe0,0x38,0x00,0x60,0xf6,0x00,
0x60,0x34,0x00,0x60,0x34,0x00,0x60,0x30,0x00,0x60,0xf0,0x00,0x60,0x30,0x00,
0x60,0x30,0x00,0x60,0x30,0x00,0x60,0xf0,0x00,0x60,0x30,0x00,0x60,0x30,0x00,
0x60,0x30,0x00,0x60,0xf0,0x00,0x60,0x30,0x00,0x60,0x30,0x00,0x60,0x30,0x00,
0x60,0x30,0x00,0x70,0x70,0x00,0x78,0xf0,0x00,0x3c,0xe0,0x01,0x1c,0xc0,0x01,
0x0e,0x98,0x03,0x0e,0x90,0x03,0x07,0x00,0x07,0x07,0x00,0x07,0x07,0x00,0x07,
0x07,0x00,0x07,0x0f,0x80,0x07,0x0e,0x80,0x03,0x1e,0xc0,0x03,0x3c,0xe0,0x01,
0x7c,0xf0,0x01,0xf8,0xff,0x00,0xe0,0x3f,0x00,0x80,0x0f,0x00
};
// 'Animation, Family'
const byte PROGMEM frames[][288] = {
{0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,240,0,0,63,128,3,248,0,0,96,192,7,12,0,0,96,192,6,12,0,0,96,192,6,4,0,0,96,192,6,12,0,0,96,192,6,12,0,0,57,128,3,152,0,0,31,0,1,240,0,0,0,0,0,0,0,0,0,0,0,48,0,3,255,248,15,254,0,7,0,56,28,39,0,12,0,1,0,1,128,12,0,7,192,1,128,12,0,6,96,0,128,12,0,12,48,0,192,12,128,12,48,0,192,12,192,14,96,6,64,12,192,7,224,6,96,12,192,3,192,6,96,12,192,0,0,7,96,12,192,31,248,3,48,12,192,63,252,3,48,12,192,48,12,3,176,12,192,96,6,1,152,12,192,96,6,1,152,12,192,96,6,1,216,13,196,96,6,0,240,15,204,96,6,0,224,3,204,96,6,0,64,0,204,96,6,124,96,0,204,96,7,255,192,0,204,112,14,254,0,0,204,124,62,228,0,0,204,108,62,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,206,108,54,228,0,0,255,239,231,252,0,0,127,199,227,248,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,240,0,0,63,128,3,248,0,0,96,192,7,12,0,0,96,192,6,12,0,0,96,192,6,4,0,0,96,192,6,12,0,0,96,192,6,12,0,0,57,128,3,152,0,0,31,0,1,240,0,0,0,0,0,0,0,0,0,0,0,48,0,3,255,248,15,254,0,7,0,56,28,39,0,12,0,1,0,1,128,12,0,7,192,1,128,12,0,6,96,0,128,12,0,12,48,0,192,12,128,12,48,0,192,12,192,14,96,6,64,12,192,7,224,6,96,12,192,3,192,6,96,12,192,0,0,7,96,12,192,31,248,3,48,12,192,63,252,3,48,12,192,48,12,3,176,12,192,96,6,1,152,12,192,96,6,1,152,12,192,96,6,1,216,13,196,96,6,0,240,15,204,96,6,0,224,3,204,96,6,0,64,0,204,96,6,124,96,0,204,96,7,255,192,0,204,112,14,254,0,0,204,124,62,228,0,0,204,108,62,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,206,108,54,228,0,0,255,239,231,252,0,0,127,199,227,248,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,240,0,0,63,128,3,248,0,0,96,192,7,12,0,0,96,192,6,12,0,0,96,192,6,4,0,0,96,192,6,12,0,0,96,192,6,12,0,0,57,128,3,152,0,0,31,0,1,240,0,0,0,0,0,0,0,0,0,0,0,48,0,3,255,248,15,254,0,7,0,56,28,39,0,12,0,1,0,1,128,12,0,7,192,1,128,12,0,6,96,0,128,12,0,12,48,0,192,12,128,12,48,0,192,12,192,14,96,6,64,12,192,7,224,6,96,12,192,3,192,6,96,12,192,0,0,7,96,12,192,31,248,3,48,12,192,63,252,3,48,12,192,48,12,3,176,12,192,96,6,1,152,12,192,96,6,1,152,12,192,96,6,1,216,13,196,96,6,0,240,15,204,96,6,0,224,3,204,96,6,0,64,0,204,96,6,124,96,0,204,96,7,255,192,0,204,112,14,254,0,0,204,124,62,228,0,0,204,108,62,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,206,108,54,228,0,0,255,239,231,252,0,0,127,199,227,248,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,240,0,0,63,128,3,248,0,0,96,192,7,12,0,0,96,192,6,12,0,0,96,192,6,4,0,0,96,192,6,12,0,0,96,192,6,12,0,0,57,128,3,152,0,0,31,0,1,240,0,0,0,0,0,0,0,0,0,0,0,48,0,3,255,248,15,254,0,7,0,56,28,39,0,12,0,1,0,1,128,12,0,7,192,1,128,12,0,6,96,0,128,12,0,12,48,0,192,12,128,12,48,0,192,12,192,14,96,6,64,12,192,7,224,6,96,12,192,3,192,6,96,12,192,0,0,7,96,12,192,31,248,3,48,12,192,63,252,3,48,12,192,48,12,3,176,12,192,96,6,1,152,12,192,96,6,1,152,12,192,96,6,1,216,13,196,96,6,0,240,15,204,96,6,0,224,3,204,96,6,0,64,0,204,96,6,124,96,0,204,96,7,255,192,0,204,112,14,254,0,0,204,124,62,228,0,0,204,108,62,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,206,108,54,228,0,0,255,239,231,252,0,0,127,199,227,248,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,240,0,0,63,128,3,248,0,0,96,192,7,12,0,0,96,192,6,12,0,0,96,192,6,4,0,0,96,192,6,12,0,0,96,192,6,12,0,0,57,128,3,152,0,0,31,0,1,240,0,0,0,0,0,0,0,0,0,0,0,48,0,3,255,248,15,254,0,7,0,56,28,39,0,12,0,1,0,1,128,12,0,7,192,1,128,12,0,6,96,0,128,12,0,12,48,0,192,12,128,12,48,0,192,12,192,14,96,6,192,12,192,7,224,6,96,12,192,3,192,7,112,12,192,0,0,7,56,12,192,31,248,3,14,12,192,63,252,3,199,12,192,48,12,1,227,12,192,96,6,1,255,12,192,96,6,1,158,12,192,96,6,0,128,13,196,96,6,0,192,15,204,96,6,0,192,3,204,96,6,0,64,0,204,96,6,124,96,0,204,96,7,255,192,0,204,112,14,254,0,0,204,124,62,228,0,0,204,108,62,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,206,108,54,228,0,0,255,239,231,252,0,0,127,199,227,248,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,240,0,0,63,128,3,248,0,0,96,192,7,12,0,0,96,192,6,12,0,0,96,192,6,4,0,0,96,192,6,12,0,0,96,192,6,12,0,0,57,128,3,152,0,0,31,0,1,240,0,0,0,0,0,0,0,0,0,0,0,48,0,3,255,248,15,254,0,7,0,56,28,39,0,12,0,1,0,1,128,12,0,7,192,1,128,12,0,6,96,0,128,12,0,12,48,0,192,12,128,12,48,0,192,12,192,14,96,6,192,12,192,7,224,6,126,12,192,3,192,6,127,12,192,0,0,7,3,12,192,31,248,3,151,12,192,63,252,3,254,12,192,48,12,1,240,12,192,96,6,1,128,12,192,96,6,1,128,12,192,96,6,0,128,13,196,96,6,0,192,15,204,96,6,0,192,3,204,96,6,0,64,0,204,96,6,124,96,0,204,96,7,255,192,0,204,112,14,254,0,0,204,124,62,228,0,0,204,108,62,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,206,108,54,228,0,0,255,239,231,252,0,0,127,199,227,248,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,240,0,0,63,128,3,248,0,0,96,192,7,12,0,0,96,192,6,12,0,0,96,192,6,4,0,0,96,192,6,12,0,0,96,192,6,12,0,0,57,128,3,152,0,0,31,0,1,240,0,0,0,0,0,0,0,0,0,0,0,48,0,3,255,248,15,254,0,7,0,56,28,39,0,12,0,1,0,1,128,12,0,7,192,1,128,12,0,6,96,0,128,12,0,12,48,0,204,12,128,12,48,0,254,12,192,14,96,6,246,12,192,7,224,6,102,12,192,3,192,6,70,12,192,0,0,7,12,12,192,31,248,3,188,12,192,63,252,3,240,12,192,48,12,1,128,12,192,96,6,1,128,12,192,96,6,1,128,12,192,96,6,0,128,13,196,96,6,0,192,15,204,96,6,0,192,3,204,96,6,0,64,0,204,96,6,124,96,0,204,96,7,255,192,0,204,112,14,254,0,0,204,124,62,228,0,0,204,108,62,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,206,108,54,228,0,0,255,239,231,252,0,0,127,199,227,248,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,240,0,0,63,128,3,248,0,0,96,192,7,12,0,0,96,192,6,12,0,0,96,192,6,4,0,0,96,192,6,12,0,0,96,192,6,12,0,0,57,128,3,152,0,0,31,0,1,240,0,0,0,0,0,0,0,0,0,0,0,48,0,3,255,248,15,254,0,7,0,56,28,39,0,12,0,1,0,1,128,12,0,7,192,1,152,12,0,6,96,0,252,12,0,12,48,0,230,12,128,12,48,0,230,12,192,14,96,6,228,12,192,7,224,6,76,12,192,3,192,6,12,12,192,0,0,7,28,12,192,31,248,3,248,12,192,63,252,3,224,12,192,48,12,1,0,12,192,96,6,1,128,12,192,96,6,1,128,12,192,96,6,0,128,13,196,96,6,0,192,15,204,96,6,0,192,3,204,96,6,0,64,0,204,96,6,124,96,0,204,96,7,255,192,0,204,112,14,254,0,0,204,124,62,228,0,0,204,108,62,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,206,108,54,228,0,0,255,239,231,252,0,0,127,199,227,248,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,240,0,0,63,128,3,248,0,0,96,192,7,12,0,0,96,192,6,12,0,0,96,192,6,4,0,0,96,192,6,12,0,0,96,192,6,12,0,0,57,128,3,152,0,0,31,0,1,240,0,0,0,0,0,0,0,0,0,0,0,48,0,3,255,248,15,254,0,7,0,56,28,39,0,12,0,1,0,1,184,12,0,7,192,1,252,12,0,6,96,0,236,12,0,12,48,0,204,12,128,12,48,0,236,12,192,14,96,6,236,12,192,7,224,6,12,12,192,3,192,7,12,12,192,0,0,7,248,12,192,31,248,3,240,12,192,63,252,3,0,12,192,48,12,1,0,12,192,96,6,1,128,12,192,96,6,1,128,12,192,96,6,0,128,13,196,96,6,0,192,15,204,96,6,0,192,3,204,96,6,0,64,0,204,96,6,124,96,0,204,96,7,255,192,0,204,112,14,254,0,0,204,124,62,228,0,0,204,108,62,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,206,108,54,228,0,0,255,239,231,252,0,0,127,199,227,248,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,240,0,0,63,128,3,248,0,0,96,192,7,12,0,0,96,192,6,12,0,0,96,192,6,4,0,0,96,192,6,12,0,0,96,192,6,12,0,0,57,128,3,152,0,0,31,0,1,240,0,0,0,0,0,0,0,0,0,0,0,48,0,3,255,248,15,254,0,7,0,56,28,39,0,12,0,1,0,1,184,12,0,7,192,1,252,12,0,6,96,0,236,12,0,12,48,0,236,12,128,12,48,0,236,12,192,14,96,6,236,12,192,7,224,6,12,12,192,3,192,7,12,12,192,0,0,7,248,12,192,31,248,3,240,12,192,63,252,3,0,12,192,48,12,1,0,12,192,96,6,1,128,12,192,96,6,1,128,12,192,96,6,0,128,13,196,96,6,0,192,15,204,96,6,0,192,3,204,96,6,0,64,0,204,96,6,124,96,0,204,96,7,255,192,0,204,112,14,254,0,0,204,124,62,228,0,0,204,108,62,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,206,108,54,228,0,0,255,239,231,252,0,0,127,199,227,248,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,240,0,0,63,128,3,248,0,0,96,192,7,12,0,0,96,192,6,12,0,0,96,192,6,4,0,0,96,192,6,12,0,0,96,192,6,12,0,0,57,128,3,152,0,0,31,0,1,240,0,0,0,0,0,0,0,0,0,0,0,48,0,3,255,248,15,254,0,7,0,56,28,39,0,12,0,1,0,1,136,12,0,7,192,1,188,12,0,6,96,0,246,12,0,12,48,0,230,12,128,12,48,0,230,12,192,14,96,6,108,12,192,7,224,6,12,12,192,3,192,7,12,12,192,0,0,7,248,12,192,31,248,3,224,12,192,63,252,3,0,12,192,48,12,1,0,12,192,96,6,1,128,12,192,96,6,1,128,12,192,96,6,0,128,13,196,96,6,0,192,15,204,96,6,0,192,3,204,96,6,0,64,0,204,96,6,124,96,0,204,96,7,255,192,0,204,112,14,254,0,0,204,124,62,228,0,0,204,108,62,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,206,108,54,228,0,0,255,239,231,252,0,0,127,199,227,248,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,240,0,0,63,128,3,248,0,0,96,192,7,12,0,0,96,192,6,12,0,0,96,192,6,4,0,0,96,192,6,12,0,0,96,192,6,12,0,0,57,128,3,152,0,0,31,0,1,240,0,0,0,0,0,0,0,0,0,0,0,48,0,3,255,248,15,254,0,7,0,56,28,39,0,12,0,1,0,1,128,12,0,7,192,1,156,12,0,6,96,0,254,12,0,12,48,0,246,12,128,12,48,0,230,12,192,14,96,6,102,12,192,7,224,6,12,12,192,3,192,7,12,12,192,0,0,7,248,12,192,31,248,3,240,12,192,63,252,3,0,12,192,48,12,1,0,12,192,96,6,1,128,12,192,96,6,1,128,12,192,96,6,0,128,13,196,96,6,0,192,15,204,96,6,0,192,3,204,96,6,0,64,0,204,96,6,124,96,0,204,96,7,255,192,0,204,112,14,254,0,0,204,124,62,228,0,0,204,108,62,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,206,108,54,228,0,0,255,239,231,252,0,0,127,199,227,248,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,240,0,0,63,128,3,248,0,0,96,192,7,12,0,0,96,192,6,12,0,0,96,192,6,4,0,0,96,192,6,12,0,0,96,192,6,12,0,0,57,128,3,152,0,0,31,0,1,240,0,0,0,0,0,0,0,0,0,0,0,48,0,3,255,248,15,254,0,7,0,56,28,39,0,12,0,1,0,1,136,12,0,7,192,1,188,12,0,6,96,0,246,12,0,12,48,0,230,12,128,12,48,0,230,12,192,14,96,6,108,12,192,7,224,6,12,12,192,3,192,7,12,12,192,0,0,7,248,12,192,31,248,3,224,12,192,63,252,3,0,12,192,48,12,1,0,12,192,96,6,1,128,12,192,96,6,1,128,12,192,96,6,0,128,13,196,96,6,0,192,15,204,96,6,0,192,3,204,96,6,0,64,0,204,96,6,124,96,0,204,96,7,255,192,0,204,112,14,254,0,0,204,124,62,228,0,0,204,108,62,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,206,108,54,228,0,0,255,239,231,252,0,0,127,199,227,248,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,240,0,0,63,128,3,248,0,0,96,192,7,12,0,0,96,192,6,12,0,0,96,192,6,4,0,0,96,192,6,12,0,0,96,192,6,12,0,0,57,128,3,152,0,0,31,0,1,240,0,0,0,0,0,0,0,0,0,0,0,48,0,3,255,248,15,254,0,7,0,56,28,39,0,12,0,1,0,1,184,12,0,7,192,1,252,12,0,6,96,0,236,12,0,12,48,0,236,12,128,12,48,0,236,12,192,14,96,6,236,12,192,7,224,6,12,12,192,3,192,7,12,12,192,0,0,7,248,12,192,31,248,3,240,12,192,63,252,3,0,12,192,48,12,1,0,12,192,96,6,1,128,12,192,96,6,1,128,12,192,96,6,0,128,13,196,96,6,0,192,15,204,96,6,0,192,3,204,96,6,0,64,0,204,96,6,124,96,0,204,96,7,255,192,0,204,112,14,254,0,0,204,124,62,228,0,0,204,108,62,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,206,108,54,228,0,0,255,239,231,252,0,0,127,199,227,248,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,240,0,0,63,128,3,248,0,0,96,192,7,12,0,0,96,192,6,12,0,0,96,192,6,4,0,0,96,192,6,12,0,0,96,192,6,12,0,0,57,128,3,152,0,0,31,0,1,240,0,0,0,0,0,0,0,0,0,0,0,48,0,3,255,248,15,254,0,7,0,56,28,39,0,12,0,1,0,1,184,12,0,7,192,1,252,12,0,6,96,0,236,12,0,12,48,0,204,12,128,12,48,0,236,12,192,14,96,6,236,12,192,7,224,6,12,12,192,3,192,7,12,12,192,0,0,7,248,12,192,31,248,3,240,12,192,63,252,3,0,12,192,48,12,1,0,12,192,96,6,1,128,12,192,96,6,1,128,12,192,96,6,0,128,13,196,96,6,0,192,15,204,96,6,0,192,3,204,96,6,0,64,0,204,96,6,124,96,0,204,96,7,255,192,0,204,112,14,254,0,0,204,124,62,228,0,0,204,108,62,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,206,108,54,228,0,0,255,239,231,252,0,0,127,199,227,248,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,240,0,0,63,128,3,248,0,0,96,192,7,12,0,0,96,192,6,12,0,0,96,192,6,4,0,0,96,192,6,12,0,0,96,192,6,12,0,0,57,128,3,152,0,0,31,0,1,240,0,0,0,0,0,0,0,0,0,0,0,48,0,3,255,248,15,254,0,7,0,56,28,39,0,12,0,1,0,1,184,12,0,7,192,1,252,12,0,6,96,0,236,12,0,12,48,0,236,12,128,12,48,0,236,12,192,14,96,6,236,12,192,7,224,6,12,12,192,3,192,7,12,12,192,0,0,7,248,12,192,31,248,3,240,12,192,63,252,3,0,12,192,48,12,1,0,12,192,96,6,1,128,12,192,96,6,1,128,12,192,96,6,0,128,13,196,96,6,0,192,15,204,96,6,0,192,3,204,96,6,0,64,0,204,96,6,124,96,0,204,96,7,255,192,0,204,112,14,254,0,0,204,124,62,228,0,0,204,108,62,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,206,108,54,228,0,0,255,239,231,252,0,0,127,199,227,248,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,240,0,0,63,128,3,248,0,0,96,192,7,12,0,0,96,192,6,12,0,0,96,192,6,4,0,0,96,192,6,12,0,0,96,192,6,12,0,0,57,128,3,152,0,0,31,0,1,240,0,0,0,0,0,0,0,0,0,0,0,48,0,3,255,248,15,254,0,7,0,56,28,39,0,12,0,1,0,1,136,12,0,7,192,1,188,12,0,6,96,0,246,12,0,12,48,0,230,12,128,12,48,0,230,12,192,14,96,6,108,12,192,7,224,6,12,12,192,3,192,7,12,12,192,0,0,7,248,12,192,31,248,3,224,12,192,63,252,3,0,12,192,48,12,1,0,12,192,96,6,1,128,12,192,96,6,1,128,12,192,96,6,0,128,13,196,96,6,0,192,15,204,96,6,0,192,3,204,96,6,0,64,0,204,96,6,124,96,0,204,96,7,255,192,0,204,112,14,254,0,0,204,124,62,228,0,0,204,108,62,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,206,108,54,228,0,0,255,239,231,252,0,0,127,199,227,248,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,240,0,0,63,128,3,248,0,0,96,192,7,12,0,0,96,192,6,12,0,0,96,192,6,4,0,0,96,192,6,12,0,0,96,192,6,12,0,0,57,128,3,152,0,0,31,0,1,240,0,0,0,0,0,0,0,0,0,0,0,48,0,3,255,248,15,254,0,7,0,56,28,39,0,12,0,1,0,1,128,12,0,7,192,1,156,12,0,6,96,0,254,12,0,12,48,0,246,12,128,12,48,0,230,12,192,14,96,6,102,12,192,7,224,6,12,12,192,3,192,7,12,12,192,0,0,7,248,12,192,31,248,3,240,12,192,63,252,3,0,12,192,48,12,1,0,12,192,96,6,1,128,12,192,96,6,1,128,12,192,96,6,0,128,13,196,96,6,0,192,15,204,96,6,0,192,3,204,96,6,0,64,0,204,96,6,124,96,0,204,96,7,255,192,0,204,112,14,254,0,0,204,124,62,228,0,0,204,108,62,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,206,108,54,228,0,0,255,239,231,252,0,0,127,199,227,248,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,240,0,0,63,128,3,248,0,0,96,192,7,12,0,0,96,192,6,12,0,0,96,192,6,4,0,0,96,192,6,12,0,0,96,192,6,12,0,0,57,128,3,152,0,0,31,0,1,240,0,0,0,0,0,0,0,0,0,0,0,48,0,3,255,248,15,254,0,7,0,56,28,39,0,12,0,1,0,1,136,12,0,7,192,1,188,12,0,6,96,0,246,12,0,12,48,0,230,12,128,12,48,0,230,12,192,14,96,6,108,12,192,7,224,6,12,12,192,3,192,7,12,12,192,0,0,7,248,12,192,31,248,3,224,12,192,63,252,3,0,12,192,48,12,1,0,12,192,96,6,1,128,12,192,96,6,1,128,12,192,96,6,0,128,13,196,96,6,0,192,15,204,96,6,0,192,3,204,96,6,0,64,0,204,96,6,124,96,0,204,96,7,255,192,0,204,112,14,254,0,0,204,124,62,228,0,0,204,108,62,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,206,108,54,228,0,0,255,239,231,252,0,0,127,199,227,248,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,240,0,0,63,128,3,248,0,0,96,192,7,12,0,0,96,192,6,12,0,0,96,192,6,4,0,0,96,192,6,12,0,0,96,192,6,12,0,0,57,128,3,152,0,0,31,0,1,240,0,0,0,0,0,0,0,0,0,0,0,48,0,3,255,248,15,254,0,7,0,56,28,39,0,12,0,1,0,1,184,12,0,7,192,1,252,12,0,6,96,0,236,12,0,12,48,0,236,12,128,12,48,0,236,12,192,14,96,6,236,12,192,7,224,6,12,12,192,3,192,7,12,12,192,0,0,7,248,12,192,31,248,3,240,12,192,63,252,3,0,12,192,48,12,1,0,12,192,96,6,1,128,12,192,96,6,1,128,12,192,96,6,0,128,13,196,96,6,0,192,15,204,96,6,0,192,3,204,96,6,0,64,0,204,96,6,124,96,0,204,96,7,255,192,0,204,112,14,254,0,0,204,124,62,228,0,0,204,108,62,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,206,108,54,228,0,0,255,239,231,252,0,0,127,199,227,248,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,240,0,0,63,128,3,248,0,0,96,192,7,12,0,0,96,192,6,12,0,0,96,192,6,4,0,0,96,192,6,12,0,0,96,192,6,12,0,0,57,128,3,152,0,0,31,0,1,240,0,0,0,0,0,0,0,0,0,0,0,48,0,3,255,248,15,254,0,7,0,56,28,39,0,12,0,1,0,1,184,12,0,7,192,1,252,12,0,6,96,0,236,12,0,12,48,0,204,12,128,12,48,0,236,12,192,14,96,6,236,12,192,7,224,6,12,12,192,3,192,7,12,12,192,0,0,7,248,12,192,31,248,3,240,12,192,63,252,3,0,12,192,48,12,1,0,12,192,96,6,1,128,12,192,96,6,1,128,12,192,96,6,0,128,13,196,96,6,0,192,15,204,96,6,0,192,3,204,96,6,0,64,0,204,96,6,124,96,0,204,96,7,255,192,0,204,112,14,254,0,0,204,124,62,228,0,0,204,108,62,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,206,108,54,228,0,0,255,239,231,252,0,0,127,199,227,248,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,240,0,0,63,128,3,248,0,0,96,192,7,12,0,0,96,192,6,12,0,0,96,192,6,4,0,0,96,192,6,12,0,0,96,192,6,12,0,0,57,128,3,152,0,0,31,0,1,240,0,0,0,0,0,0,0,0,0,0,0,48,0,3,255,248,15,254,0,7,0,56,28,39,0,12,0,1,0,1,128,12,0,7,192,1,152,12,0,6,96,0,252,12,0,12,48,0,230,12,128,12,48,0,230,12,192,14,96,6,228,12,192,7,224,6,76,12,192,3,192,6,12,12,192,0,0,7,28,12,192,31,248,3,248,12,192,63,252,3,224,12,192,48,12,1,0,12,192,96,6,1,128,12,192,96,6,1,128,12,192,96,6,0,128,13,196,96,6,0,192,15,204,96,6,0,192,3,204,96,6,0,64,0,204,96,6,124,96,0,204,96,7,255,192,0,204,112,14,254,0,0,204,124,62,228,0,0,204,108,62,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,206,108,54,228,0,0,255,239,231,252,0,0,127,199,227,248,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,240,0,0,63,128,3,248,0,0,96,192,7,12,0,0,96,192,6,12,0,0,96,192,6,4,0,0,96,192,6,12,0,0,96,192,6,12,0,0,57,128,3,152,0,0,31,0,1,240,0,0,0,0,0,0,0,0,0,0,0,48,0,3,255,248,15,254,0,7,0,56,28,39,0,12,0,1,0,1,128,12,0,7,192,1,128,12,0,6,96,0,128,12,0,12,48,0,204,12,128,12,48,0,254,12,192,14,96,6,246,12,192,7,224,6,102,12,192,3,192,6,70,12,192,0,0,7,12,12,192,31,248,3,188,12,192,63,252,3,240,12,192,48,12,1,128,12,192,96,6,1,128,12,192,96,6,1,128,12,192,96,6,0,128,13,196,96,6,0,192,15,204,96,6,0,192,3,204,96,6,0,64,0,204,96,6,124,96,0,204,96,7,255,192,0,204,112,14,254,0,0,204,124,62,228,0,0,204,108,62,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,206,108,54,228,0,0,255,239,231,252,0,0,127,199,227,248,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,240,0,0,63,128,3,248,0,0,96,192,7,12,0,0,96,192,6,12,0,0,96,192,6,4,0,0,96,192,6,12,0,0,96,192,6,12,0,0,57,128,3,152,0,0,31,0,1,240,0,0,0,0,0,0,0,0,0,0,0,48,0,3,255,248,15,254,0,7,0,56,28,39,0,12,0,1,0,1,128,12,0,7,192,1,128,12,0,6,96,0,128,12,0,12,48,0,192,12,128,12,48,0,192,12,192,14,96,6,192,12,192,7,224,6,126,12,192,3,192,6,127,12,192,0,0,7,3,12,192,31,248,3,151,12,192,63,252,3,254,12,192,48,12,1,240,12,192,96,6,1,128,12,192,96,6,1,128,12,192,96,6,0,128,13,196,96,6,0,192,15,204,96,6,0,192,3,204,96,6,0,64,0,204,96,6,124,96,0,204,96,7,255,192,0,204,112,14,254,0,0,204,124,62,228,0,0,204,108,62,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,206,108,54,228,0,0,255,239,231,252,0,0,127,199,227,248,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,240,0,0,63,128,3,248,0,0,96,192,7,12,0,0,96,192,6,12,0,0,96,192,6,4,0,0,96,192,6,12,0,0,96,192,6,12,0,0,57,128,3,152,0,0,31,0,1,240,0,0,0,0,0,0,0,0,0,0,0,48,0,3,255,248,15,254,0,7,0,56,28,39,0,12,0,1,0,1,128,12,0,7,192,1,128,12,0,6,96,0,128,12,0,12,48,0,192,12,128,12,48,0,192,12,192,14,96,6,192,12,192,7,224,6,96,12,192,3,192,7,112,12,192,0,0,7,56,12,192,31,248,3,14,12,192,63,252,3,199,12,192,48,12,1,227,12,192,96,6,1,255,12,192,96,6,1,158,12,192,96,6,0,128,13,196,96,6,0,192,15,204,96,6,0,192,3,204,96,6,0,64,0,204,96,6,124,96,0,204,96,7,255,192,0,204,112,14,254,0,0,204,124,62,228,0,0,204,108,62,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,206,108,54,228,0,0,255,239,231,252,0,0,127,199,227,248,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,240,0,0,63,128,3,248,0,0,96,192,7,12,0,0,96,192,6,12,0,0,96,192,6,4,0,0,96,192,6,12,0,0,96,192,6,12,0,0,57,128,3,152,0,0,31,0,1,240,0,0,0,0,0,0,0,0,0,0,0,48,0,3,255,248,15,254,0,7,0,56,28,39,0,12,0,1,0,1,128,12,0,7,192,1,128,12,0,6,96,0,128,12,0,12,48,0,192,12,128,12,48,0,192,12,192,14,96,6,64,12,192,7,224,6,96,12,192,3,192,6,96,12,192,0,0,7,96,12,192,31,248,3,48,12,192,63,252,3,48,12,192,48,12,3,176,12,192,96,6,1,152,12,192,96,6,1,152,12,192,96,6,1,216,13,196,96,6,0,240,15,204,96,6,0,224,3,204,96,6,0,64,0,204,96,6,124,96,0,204,96,7,255,192,0,204,112,14,254,0,0,204,124,62,228,0,0,204,108,62,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,206,108,54,228,0,0,255,239,231,252,0,0,127,199,227,248,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,240,0,0,63,128,3,248,0,0,96,192,7,12,0,0,96,192,6,12,0,0,96,192,6,4,0,0,96,192,6,12,0,0,96,192,6,12,0,0,57,128,3,152,0,0,31,0,1,240,0,0,0,0,0,0,0,0,0,0,0,48,0,3,255,248,15,254,0,7,0,56,28,39,0,12,0,1,0,1,128,12,0,7,192,1,128,12,0,6,96,0,128,12,0,12,48,0,192,12,128,12,48,0,192,12,192,14,96,6,64,12,192,7,224,6,96,12,192,3,192,6,96,12,192,0,0,7,96,12,192,31,248,3,48,12,192,63,252,3,48,12,192,48,12,3,176,12,192,96,6,1,152,12,192,96,6,1,152,12,192,96,6,1,216,13,196,96,6,0,240,15,204,96,6,0,224,3,204,96,6,0,64,0,204,96,6,124,96,0,204,96,7,255,192,0,204,112,14,254,0,0,204,124,62,228,0,0,204,108,62,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,206,108,54,228,0,0,255,239,231,252,0,0,127,199,227,248,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,240,0,0,63,128,3,248,0,0,96,192,7,12,0,0,96,192,6,12,0,0,96,192,6,4,0,0,96,192,6,12,0,0,96,192,6,12,0,0,57,128,3,152,0,0,31,0,1,240,0,0,0,0,0,0,0,0,0,0,0,48,0,3,255,248,15,254,0,7,0,56,28,39,0,12,0,1,0,1,128,12,0,7,192,1,128,12,0,6,96,0,128,12,0,12,48,0,192,12,128,12,48,0,192,12,192,14,96,6,64,12,192,7,224,6,96,12,192,3,192,6,96,12,192,0,0,7,96,12,192,31,248,3,48,12,192,63,252,3,48,12,192,48,12,3,176,12,192,96,6,1,152,12,192,96,6,1,152,12,192,96,6,1,216,13,196,96,6,0,240,15,204,96,6,0,224,3,204,96,6,0,64,0,204,96,6,124,96,0,204,96,7,255,192,0,204,112,14,254,0,0,204,124,62,228,0,0,204,108,62,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,204,108,54,228,0,0,206,108,54,228,0,0,255,239,231,252,0,0,127,199,227,248,0,0,0,0,0,0,0,0,0,0,0,0,0}
};
#define FRAME_WIDTH (48)
#define FRAME_HEIGHT (48)
#define FRAME_COUNT (sizeof(frames) / sizeof(frames[0]))
bool current_page = 1;
uint16_t current_frame = 0;
uint8_t runtime = 0;
void draw_temp_page(){
u8g.setFont(u8g_font_helvB08);
u8g.drawStr(94, 11, "Inside");
u8g.drawStr(86, 43, "Outside");
u8g.setFont(u8g_font_helvB14);
u8g.drawStr(100, 28, "C");
u8g.drawStr(100, 59, "C");
u8g.drawStr(63, 28, "21.3");
u8g.drawStr(63, 59, "11.6");
uint8_t mid = 55;
uint8_t y_lvl = 32;
uint8_t length = 3;
uint8_t spacing = 8;
uint8_t num_of_lines = 14;
// Dashed line
for(int i = 0; i<num_of_lines; i++){
u8g.drawLine(mid, y_lvl, mid+length, y_lvl);
mid += spacing;
// Prevent line from being drawn outside of screen
if(mid+length > u8g.getWidth()){break;}
}
// Icon
u8g.drawXBMP(18,15,19,39,epd_bitmap_temp);
// Corners
u8g.drawTriangle(0,0,0,5,5,0); //Top Left
u8g.drawTriangle(0,63,0,57,6,63); //Bottom Left
u8g.drawTriangle(127,0,122,0,127,5); //Top Right
u8g.drawTriangle(127,127,58,127,127,58); //Bottom Right
// Lines
u8g.drawLine(5,3, 23,3);
u8g.drawLine(40,3, 83,3);
u8g.drawLine(2,6, 2,27);
u8g.drawLine(5,20, 5,38);
u8g.drawLine(2,35, 2,56);
u8g.drawLine(7,61, 56,61);
u8g.drawLine(46,6, 80,6);
}
void draw_credits_page(){
u8g.setFont(u8g_font_helvB08);
u8g.drawStr(80, 17, "Erik");
u8g.drawStr(70, 33, "Johanna");
u8g.drawStr(75, 50, "Patrik");
// Animate family
u8g.drawBitmapP(8, 8, FRAME_WIDTH/8, FRAME_HEIGHT, frames[current_frame]);
}
void setup() {
u8g.setColorIndex(1);
}
void loop() {
u8g.firstPage();
if(current_page){
do {
draw_temp_page();
} while ( u8g.nextPage() );
}else{
do {
draw_credits_page();
} while ( u8g.nextPage() );
}
// Only animate the family, when the correct page is showing
if((current_frame < FRAME_COUNT - 1) && !current_page){
current_frame++;
}else{
current_frame = 0;
}
// Change page after duration
if(runtime > 60){
current_page = !current_page;
runtime = 0;
}
runtime++;
}