My Marlin configs for Fabrikator Mini and CTC i3 Pro B
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

_Statusscreen.h 2.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (C) 2019 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 <http://www.gnu.org/licenses/>.
  20. *
  21. */
  22. /**
  23. * Custom Status Screen bitmap
  24. *
  25. * Place this file in the root with your configuration files
  26. * and enable CUSTOM_STATUS_SCREEN_IMAGE in Configuration.h.
  27. *
  28. * Use the Marlin Bitmap Converter to make your own:
  29. * http://marlinfw.org/tools/u8glib/converter.html
  30. */
  31. //
  32. // Status Screen Logo bitmap
  33. //
  34. #define STATUS_LOGO_Y 3
  35. #define STATUS_LOGO_WIDTH 24
  36. const unsigned char status_logo_bmp[] PROGMEM = {
  37. B11111111,B11111111,B11111111,
  38. B10000000,B00000000,B00000001,
  39. B10001110,B00000000,B11100001,
  40. B10011111,B00000001,B11110001,
  41. B10010011,B10000001,B00111001,
  42. B10011111,B10000001,B11111001,
  43. B10011111,B10000001,B11111001,
  44. B10011111,B10111001,B11111001,
  45. B10001111,B00101000,B11110001,
  46. B10000000,B00111000,B00000001,
  47. B10000000,B00000000,B00000001,
  48. B10011111,B11111111,B11111001,
  49. B10010001,B01110100,B10011001,
  50. B10011011,B00000110,B10101001,
  51. B10011011,B01010100,B10101001,
  52. B10011011,B01010110,B10101001,
  53. B10011011,B01010100,B10011001,
  54. B10011111,B11111111,B11111001,
  55. B11111111,B11111111,B11111111
  56. };
  57. //
  58. // Use default bitmaps
  59. //
  60. #define STATUS_HOTEND_ANIM
  61. #define STATUS_BED_ANIM
  62. #if HOTENDS < 2
  63. #define STATUS_LOGO_X 8
  64. #define STATUS_HEATERS_X 40
  65. #define STATUS_BED_X 72
  66. #else
  67. #define STATUS_LOGO_X 0
  68. #define STATUS_HEATERS_X 32
  69. #define STATUS_BED_X 80
  70. #endif