_Statusscreen.h 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (c) 2022 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. #pragma once
  23. /**
  24. * Custom Status Screen bitmap
  25. *
  26. * Place this file in the root with your configuration files
  27. * and enable CUSTOM_STATUS_SCREEN_IMAGE in Configuration.h.
  28. *
  29. * Use the Marlin Bitmap Converter to make your own:
  30. * https://marlinfw.org/tools/u8glib/converter.html
  31. */
  32. #define STATUS_LOGO_WIDTH 32
  33. const unsigned char status_logo_bmp[] PROGMEM = {
  34. B00011110,B11110111,B10011100,B00111100,
  35. B00111111,B01100011,B00111110,B01111110,
  36. B01100011,B01100011,B01100011,B00000110,
  37. B01100000,B01100011,B01100011,B00000110,
  38. B01100000,B01100011,B01100011,B00001100,
  39. B00111100,B01100011,B01100011,B00011000,
  40. B00011110,B00110110,B01100011,B00001100,
  41. B00000011,B00110110,B01100011,B00000110,
  42. B00000011,B00110110,B01100011,B00000110,
  43. B01100011,B00011100,B01100011,B01000110,
  44. B01111110,B00011100,B00111110,B01111100,
  45. B00111100,B00001000,B00011100,B00111000
  46. };