|
| 1 | +/** |
| 2 | + * Marlin 3D Printer Firmware |
| 3 | + * Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] |
| 4 | + * |
| 5 | + * Based on Sprinter and grbl. |
| 6 | + * Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm |
| 7 | + * |
| 8 | + * This program is free software: you can redistribute it and/or modify |
| 9 | + * it under the terms of the GNU General Public License as published by |
| 10 | + * the Free Software Foundation, either version 3 of the License, or |
| 11 | + * (at your option) any later version. |
| 12 | + * |
| 13 | + * This program is distributed in the hope that it will be useful, |
| 14 | + * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | + * GNU General Public License for more details. |
| 17 | + * |
| 18 | + * You should have received a copy of the GNU General Public License |
| 19 | + * along with this program. If not, see <https://www.gnu.org/licenses/>. |
| 20 | + * |
| 21 | + */ |
| 22 | + |
| 23 | +#pragma once |
| 24 | + |
| 25 | +// |
| 26 | +// Status Screen Logo bitmap |
| 27 | +// |
| 28 | +#if ENABLED(KAD_SKR_BED) |
| 29 | + #define STATUS_LOGO_X 0 |
| 30 | +#endif |
| 31 | + |
| 32 | +#if HOTENDS < 2 |
| 33 | +#define STATUS_LOGO_WIDTH 48 |
| 34 | + |
| 35 | +const unsigned char status_logo_bmp[] PROGMEM = { |
| 36 | + B00000000,B00011101,B11000100,B00111111,B00000000,B00000000, // ...........###.###...#....######................ |
| 37 | + B00000000,B00001100,B10000110,B00011001,B10000000,B00000000, // ............##..#....##....##..##............... |
| 38 | + B00000000,B00001101,B00001110,B00011001,B10000000,B00000000, // ............##.#....###....##..##............... |
| 39 | + B00000000,B00001111,B00001011,B00011001,B10000000,B00000000, // ............####....#.##...##..##............... |
| 40 | + B00000000,B00001101,B10011111,B00011001,B10000000,B00000000, // ............##.##..#####...##..##............... |
| 41 | + B00000000,B00001101,B11010011,B10011001,B10000000,B00000000, // ............##.###.#..###..##..##............... |
| 42 | + B00000000,B00011100,B11111011,B11111111,B00000000,B00000000, // ...........###..#####.##########................ |
| 43 | + B00000000,B00000000,B00000000,B00000000,B00000000,B00000000, // ................................................ |
| 44 | + B00000000,B00000000,B00000000,B00000000,B00000000,B00000000, // ................................................ |
| 45 | + B11110011,B10000000,B00000000,B00011111,B10000000,B00000000, // ####..###..................######............... |
| 46 | + B01110111,B00000000,B00000000,B00011001,B10000000,B00000000, // .###.###...................##..##............... |
| 47 | + B01011011,B00011100,B11110110,B00010011,B00011101,B10101110, // .#.##.##...###..####.##....#..##...###.##.#.###. |
| 48 | + B01011011,B00110101,B10101011,B00000110,B00110101,B11111011, // .#.##.##..##.#.##.#.#.##.....##...##.#.######.## |
| 49 | + B01011011,B00111101,B10100111,B00001100,B10111101,B10011011, // .#.##.##..####.##.#..###....##..#.####.##..##.## |
| 50 | + B01001011,B00110000,B11101011,B00011001,B10110001,B10011011, // .#..#.##..##....###.#.##...##..##.##...##..##.## |
| 51 | + B11100011,B10011101,B10001110,B10011111,B10011101,B10001110, // ###...###..###.##...###.#..######..###.##...###. |
| 52 | + B00000000,B00000001,B11100000,B00000000,B00000000,B00000000, // ...............####............................. |
| 53 | + B00000000,B00000001,B00100000,B00000000,B00000000,B00000000, // ...............#..#............................. |
| 54 | + B00000000,B00000001,B11100000,B00000000,B00000000,B00000000 // ...............####............................. |
| 55 | +}; |
| 56 | +#else |
| 57 | +#define STATUS_LOGO_WIDTH 25 |
| 58 | + |
| 59 | +const unsigned char status_logo_bmp[] PROGMEM = { |
| 60 | + B01110111,B00010000,B11111100,B00000000, // .###.###...#....######.......... |
| 61 | + B00110010,B00011000,B01100110,B00000000, // ..##..#....##....##..##......... |
| 62 | + B00110100,B00111000,B01100110,B00000000, // ..##.#....###....##..##......... |
| 63 | + B00111100,B00101100,B01100110,B00000000, // ..####....#.##...##..##......... |
| 64 | + B00110110,B01111100,B01100110,B00000000, // ..##.##..#####...##..##......... |
| 65 | + B00110111,B01001110,B01100110,B00000000, // ..##.###.#..###..##..##......... |
| 66 | + B01110011,B11101111,B11111100,B00000000, // .###..#####.##########.......... |
| 67 | + B00000000,B00000000,B00000000,B00000000, // ................................ |
| 68 | + B00000000,B00000000,B00000000,B00000000, // ................................ |
| 69 | + B00000000,B00000000,B00000000,B00000000, // ................................ |
| 70 | + B00000000,B00000000,B00000000,B00000000, // ................................ |
| 71 | + B11110011,B10000000,B00000000,B00000000, // ####..###....................... |
| 72 | + B01110111,B00000000,B00000000,B00000000, // .###.###........................ |
| 73 | + B01011011,B00011100,B11110110,B00000000, // .#.##.##...###..####.##......... |
| 74 | + B01011011,B00110101,B10101011,B00000000, // .#.##.##..##.#.##.#.#.##........ |
| 75 | + B01011011,B00111101,B10100111,B00000000, // .#.##.##..####.##.#..###........ |
| 76 | + B01001011,B00110000,B11101011,B00000000, // .#..#.##..##....###.#.##........ |
| 77 | + B11100011,B10011101,B10001110,B10000000, // ###...###..###.##...###.#....... |
| 78 | + B00000000,B00000001,B11100000,B00000000, // ...............####............. |
| 79 | + B00000000,B00000001,B00100000,B00000000, // ...............#..#............. |
| 80 | + B00000000,B00000001,B11100000,B00000000, // ...............####............. |
| 81 | + B00111111,B00000000,B00000000,B00000000, // ..######........................ |
| 82 | + B00110011,B00000000,B00000000,B00000000, // ..##..##........................ |
| 83 | + B00100110,B00111011,B01001110,B00000000, // ..#..##...###.##.#..###......... |
| 84 | + B00001100,B01101011,B11011011,B00000000, // ....##...##.#.####.##.##........ |
| 85 | + B00011001,B01111011,B00011011,B00000000, // ...##..#.####.##...##.##........ |
| 86 | + B00110011,B01100011,B00011011,B00000000, // ..##..##.##...##...##.##........ |
| 87 | + B00111111,B00111011,B00001110,B00000000 // ..######..###.##....###......... |
| 88 | +}; |
| 89 | +#endif |
0 commit comments