/* * Stairs lighting * Copyright 2017 (c) Mark van Renswoude * * https://git.x2software.net/pub/Stairs */ // http://javl.github.io/image2cpp/ // Draw mode: horizontal const uint8_t IconCommWidth = 12; const uint8_t IconCommHeight = 8; const uint8_t PROGMEM IconCommOff[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; const uint8_t PROGMEM IconCommOn[] = { 0x40, 0x20, 0x40, 0x20, 0x90, 0x90, 0xa6, 0x50, 0xa6, 0x50, 0x90, 0x90, 0x40, 0x20, 0x40, 0x20 }; const uint8_t WaitCursorSegmentWidth = 10; const uint8_t WaitCursorSegmentHeight = 10; const uint8_t PROGMEM WaitCursorSegment[] = { 0x07, 0x80, 0x1f, 0x80, 0x3e, 0x00, 0x78, 0x00, 0x70, 0x00, 0xe0, 0x00, 0xe0, 0x00, 0xc0, 0x00, 0xc0, 0x00, 0x00, 0x00 };