_Statusscreen.h 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (c) 2020 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. * Made with Marlin Bitmap Converter
  24. * https://marlinfw.org/tools/u8glib/converter.html
  25. *
  26. * This bitmap from 128x19 C/C++ data
  27. */
  28. #pragma once
  29. //
  30. // Status Screen Logo bitmap
  31. //
  32. #define STATUS_LOGO_WIDTH 64
  33. #define STATUS_LOGO_X 8
  34. #define STATUS_LOGO_Y 10
  35. #define STATUS_HEATERS_X 80
  36. const unsigned char status_logo_bmp[] PROGMEM = {
  37. B11101110,B00000000,B00000000,B00000000,B00011111,B00000000,B00000000,B00000000,
  38. B01101100,B00000000,B00000000,B00000000,B00100010,B00000000,B00000000,B00000000,
  39. B01101100,B00000000,B00000000,B00000000,B00000010,B00000000,B00000000,B00000000,
  40. B01101100,B00111100,B00111110,B00111000,B00000100,B00011110,B01110111,B00001100,
  41. B01101100,B01000010,B01000100,B01000100,B00000100,B00100001,B00011001,B00010010,
  42. B01010100,B01000010,B01000100,B00001100,B00001000,B00100001,B00010000,B00100001,
  43. B01010100,B01111110,B00111000,B00110100,B00001000,B00111111,B00010000,B00100001,
  44. B01010100,B01000000,B01000000,B01000100,B00010000,B00100000,B00010000,B00100001,
  45. B01010100,B01000010,B00111100,B01001100,B00010001,B00100001,B00010000,B00010010,
  46. B11010110,B00111100,B01000010,B00110110,B00111111,B00011110,B01111100,B00001100,
  47. B00000000,B00000000,B01000010,B00000000,B00000000,B00000000,B00000000,B00000000,
  48. B00000000,B00000000,B00111100,B00000000,B00000000,B00000000,B00000000,B00000000
  49. };