My Marlin configs for Fabrikator Mini and CTC i3 Pro B
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ultralcd.h 6.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  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 <http://www.gnu.org/licenses/>.
  20. *
  21. */
  22. #ifndef ULTRALCD_H
  23. #define ULTRALCD_H
  24. #include "Marlin.h"
  25. #if ENABLED(ULTRA_LCD)
  26. #define BUTTON_EXISTS(BN) (defined(BTN_## BN) && BTN_## BN >= 0)
  27. #define BUTTON_PRESSED(BN) !READ(BTN_## BN)
  28. extern int lcd_preheat_hotend_temp[2], lcd_preheat_bed_temp[2], lcd_preheat_fan_speed[2];
  29. int lcd_strlen(const char* s);
  30. int lcd_strlen_P(const char* s);
  31. void lcd_update();
  32. void lcd_init();
  33. bool lcd_hasstatus();
  34. void lcd_setstatus(const char* message, const bool persist=false);
  35. void lcd_setstatuspgm(const char* message, const uint8_t level=0);
  36. void lcd_setalertstatuspgm(const char* message);
  37. void lcd_reset_alert_level();
  38. void lcd_kill_screen();
  39. void kill_screen(const char* lcd_msg);
  40. #if (ENABLED(LCD_I2C_TYPE_MCP23017) || ENABLED(LCD_I2C_TYPE_MCP23008)) && ENABLED(DETECT_DEVICE)
  41. bool lcd_detected();
  42. #else
  43. inline bool lcd_detected() { return true; }
  44. #endif
  45. #if HAS_BUZZER
  46. void lcd_buzz(long duration, uint16_t freq);
  47. #endif
  48. #if ENABLED(LCD_PROGRESS_BAR) && PROGRESS_MSG_EXPIRE > 0
  49. void dontExpireStatus();
  50. #endif
  51. #if ENABLED(DOGLCD)
  52. extern int lcd_contrast;
  53. void set_lcd_contrast(int value);
  54. #elif ENABLED(SHOW_BOOTSCREEN)
  55. void bootscreen();
  56. #endif
  57. #define LCD_MESSAGEPGM(x) lcd_setstatuspgm(PSTR(x))
  58. #define LCD_ALERTMESSAGEPGM(x) lcd_setalertstatuspgm(PSTR(x))
  59. #define LCD_UPDATE_INTERVAL 100
  60. #define LCD_TIMEOUT_TO_STATUS 15000
  61. #if ENABLED(ULTIPANEL)
  62. #define BLEN_A 0
  63. #define BLEN_B 1
  64. // Encoder click is directly connected
  65. #if BUTTON_EXISTS(ENC)
  66. #define BLEN_C 2
  67. #endif
  68. #define EN_A (_BV(BLEN_A))
  69. #define EN_B (_BV(BLEN_B))
  70. #define EN_C (_BV(BLEN_C))
  71. extern volatile uint8_t buttons; //the last checked buttons in a bit array.
  72. void lcd_buttons_update();
  73. void lcd_quick_feedback(); // Audible feedback for a button click - could also be visual
  74. #if ENABLED(FILAMENT_CHANGE_FEATURE)
  75. void lcd_filament_change_show_message(FilamentChangeMessage message);
  76. #endif // FILAMENT_CHANGE_FEATURE
  77. #else
  78. inline void lcd_buttons_update() {}
  79. #endif
  80. #if ENABLED(FILAMENT_LCD_DISPLAY)
  81. extern millis_t previous_lcd_status_ms;
  82. #endif
  83. bool lcd_blink();
  84. #if ENABLED(REPRAPWORLD_KEYPAD) // is also ULTIPANEL and NEWPANEL
  85. #define REPRAPWORLD_BTN_OFFSET 0 // bit offset into buttons for shift register values
  86. #define BLEN_REPRAPWORLD_KEYPAD_F3 0
  87. #define BLEN_REPRAPWORLD_KEYPAD_F2 1
  88. #define BLEN_REPRAPWORLD_KEYPAD_F1 2
  89. #define BLEN_REPRAPWORLD_KEYPAD_DOWN 3
  90. #define BLEN_REPRAPWORLD_KEYPAD_RIGHT 4
  91. #define BLEN_REPRAPWORLD_KEYPAD_MIDDLE 5
  92. #define BLEN_REPRAPWORLD_KEYPAD_UP 6
  93. #define BLEN_REPRAPWORLD_KEYPAD_LEFT 7
  94. #define EN_REPRAPWORLD_KEYPAD_F3 (_BV(REPRAPWORLD_BTN_OFFSET + BLEN_REPRAPWORLD_KEYPAD_F3))
  95. #define EN_REPRAPWORLD_KEYPAD_F2 (_BV(REPRAPWORLD_BTN_OFFSET + BLEN_REPRAPWORLD_KEYPAD_F2))
  96. #define EN_REPRAPWORLD_KEYPAD_F1 (_BV(REPRAPWORLD_BTN_OFFSET + BLEN_REPRAPWORLD_KEYPAD_F1))
  97. #define EN_REPRAPWORLD_KEYPAD_DOWN (_BV(REPRAPWORLD_BTN_OFFSET + BLEN_REPRAPWORLD_KEYPAD_DOWN))
  98. #define EN_REPRAPWORLD_KEYPAD_RIGHT (_BV(REPRAPWORLD_BTN_OFFSET + BLEN_REPRAPWORLD_KEYPAD_RIGHT))
  99. #define EN_REPRAPWORLD_KEYPAD_MIDDLE (_BV(REPRAPWORLD_BTN_OFFSET + BLEN_REPRAPWORLD_KEYPAD_MIDDLE))
  100. #define EN_REPRAPWORLD_KEYPAD_UP (_BV(REPRAPWORLD_BTN_OFFSET + BLEN_REPRAPWORLD_KEYPAD_UP))
  101. #define EN_REPRAPWORLD_KEYPAD_LEFT (_BV(REPRAPWORLD_BTN_OFFSET + BLEN_REPRAPWORLD_KEYPAD_LEFT))
  102. #define REPRAPWORLD_KEYPAD_MOVE_Z_DOWN (buttons_reprapworld_keypad & EN_REPRAPWORLD_KEYPAD_F3)
  103. #define REPRAPWORLD_KEYPAD_MOVE_Z_UP (buttons_reprapworld_keypad & EN_REPRAPWORLD_KEYPAD_F2)
  104. #define REPRAPWORLD_KEYPAD_MOVE_MENU (buttons_reprapworld_keypad & EN_REPRAPWORLD_KEYPAD_F1)
  105. #define REPRAPWORLD_KEYPAD_MOVE_Y_DOWN (buttons_reprapworld_keypad & EN_REPRAPWORLD_KEYPAD_DOWN)
  106. #define REPRAPWORLD_KEYPAD_MOVE_X_RIGHT (buttons_reprapworld_keypad & EN_REPRAPWORLD_KEYPAD_RIGHT)
  107. #define REPRAPWORLD_KEYPAD_MOVE_HOME (buttons_reprapworld_keypad & EN_REPRAPWORLD_KEYPAD_MIDDLE)
  108. #define REPRAPWORLD_KEYPAD_MOVE_Y_UP (buttons_reprapworld_keypad & EN_REPRAPWORLD_KEYPAD_UP)
  109. #define REPRAPWORLD_KEYPAD_MOVE_X_LEFT (buttons_reprapworld_keypad & EN_REPRAPWORLD_KEYPAD_LEFT)
  110. #define REPRAPWORLD_KEYPAD_PRESSED (buttons_reprapworld_keypad & ( \
  111. EN_REPRAPWORLD_KEYPAD_F3 | \
  112. EN_REPRAPWORLD_KEYPAD_F2 | \
  113. EN_REPRAPWORLD_KEYPAD_F1 | \
  114. EN_REPRAPWORLD_KEYPAD_DOWN | \
  115. EN_REPRAPWORLD_KEYPAD_RIGHT | \
  116. EN_REPRAPWORLD_KEYPAD_MIDDLE | \
  117. EN_REPRAPWORLD_KEYPAD_UP | \
  118. EN_REPRAPWORLD_KEYPAD_LEFT) \
  119. )
  120. #define LCD_CLICKED ((buttons & EN_C) || (buttons_reprapworld_keypad & EN_REPRAPWORLD_KEYPAD_F1))
  121. #elif ENABLED(NEWPANEL)
  122. #define LCD_CLICKED (buttons & EN_C)
  123. #else
  124. #define LCD_CLICKED false
  125. #endif
  126. #else //no LCD
  127. inline void lcd_update() {}
  128. inline void lcd_init() {}
  129. inline bool lcd_hasstatus() { return false; }
  130. inline void lcd_setstatus(const char* message, const bool persist=false) { UNUSED(message); UNUSED(persist); }
  131. inline void lcd_setstatuspgm(const char* message, const uint8_t level=0) { UNUSED(message); UNUSED(level); }
  132. inline void lcd_buttons_update() {}
  133. inline void lcd_reset_alert_level() {}
  134. inline bool lcd_detected() { return true; }
  135. #define LCD_MESSAGEPGM(x) NOOP
  136. #define LCD_ALERTMESSAGEPGM(x) NOOP
  137. #endif // ULTRA_LCD
  138. #endif // ULTRALCD_H