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 8.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  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 "../inc/MarlinConfig.h"
  25. #if ENABLED(ULTRA_LCD)
  26. #include "../Marlin.h"
  27. #define BUTTON_EXISTS(BN) (defined(BTN_## BN) && BTN_## BN >= 0)
  28. #define BUTTON_PRESSED(BN) !READ(BTN_## BN)
  29. extern int16_t lcd_preheat_hotend_temp[2], lcd_preheat_bed_temp[2], lcd_preheat_fan_speed[2];
  30. #if ENABLED(LCD_BED_LEVELING) && ENABLED(PROBE_MANUALLY)
  31. extern bool lcd_wait_for_move;
  32. #endif
  33. int16_t lcd_strlen(const char* s);
  34. int16_t lcd_strlen_P(const char* s);
  35. void lcd_update();
  36. void lcd_init();
  37. bool lcd_hasstatus();
  38. void lcd_setstatus(const char* message, const bool persist=false);
  39. void lcd_setstatusPGM(const char* message, const int8_t level=0);
  40. void lcd_setalertstatusPGM(const char* message);
  41. void lcd_status_printf_P(const uint8_t level, const char * const fmt, ...);
  42. void lcd_reset_alert_level();
  43. void lcd_kill_screen();
  44. void kill_screen(const char* lcd_msg);
  45. bool lcd_detected(void);
  46. extern uint8_t lcdDrawUpdate;
  47. inline void lcd_refresh() { lcdDrawUpdate = LCDVIEW_CLEAR_CALL_REDRAW; }
  48. #if HAS_BUZZER
  49. void lcd_buzz(long duration, uint16_t freq);
  50. #endif
  51. #if ENABLED(LCD_PROGRESS_BAR) && PROGRESS_MSG_EXPIRE > 0
  52. void dontExpireStatus();
  53. #endif
  54. #if ENABLED(ADC_KEYPAD)
  55. uint8_t get_ADC_keyValue();
  56. #endif
  57. #if ENABLED(DOGLCD)
  58. extern uint16_t lcd_contrast;
  59. void set_lcd_contrast(const uint16_t value);
  60. #endif
  61. #if ENABLED(SHOW_BOOTSCREEN)
  62. void lcd_bootscreen();
  63. #endif
  64. #define LCD_UPDATE_INTERVAL 100
  65. #if ENABLED(ULTIPANEL)
  66. // Function pointer to menu functions.
  67. typedef void (*screenFunc_t)();
  68. void lcd_goto_screen(screenFunc_t screen, const uint32_t encoder=0);
  69. #define BLEN_A 0
  70. #define BLEN_B 1
  71. // Encoder click is directly connected
  72. #if BUTTON_EXISTS(ENC)
  73. #define BLEN_C 2
  74. #endif
  75. #define EN_A (_BV(BLEN_A))
  76. #define EN_B (_BV(BLEN_B))
  77. #define EN_C (_BV(BLEN_C))
  78. extern volatile uint8_t buttons; // The last-checked buttons in a bit array.
  79. void lcd_buttons_update();
  80. void lcd_quick_feedback(); // Audible feedback for a button click - could also be visual
  81. void lcd_completion_feedback(const bool good=true);
  82. #if ENABLED(ADVANCED_PAUSE_FEATURE)
  83. void lcd_advanced_pause_show_message(const AdvancedPauseMessage message);
  84. #endif
  85. #if ENABLED(AUTO_BED_LEVELING_UBL)
  86. void lcd_mesh_edit_setup(float initial);
  87. float lcd_mesh_edit();
  88. void lcd_z_offset_edit_setup(float);
  89. float lcd_z_offset_edit();
  90. #endif
  91. #if ENABLED(DELTA_CALIBRATION_MENU)
  92. float lcd_probe_pt(const float &lx, const float &ly);
  93. #endif
  94. #else
  95. inline void lcd_buttons_update() {}
  96. #endif
  97. #if ENABLED(FILAMENT_LCD_DISPLAY) && ENABLED(SDSUPPORT)
  98. extern millis_t previous_lcd_status_ms;
  99. #endif
  100. bool lcd_blink();
  101. #if ENABLED(REPRAPWORLD_KEYPAD) // is also ULTIPANEL and NEWPANEL
  102. #define REPRAPWORLD_BTN_OFFSET 0 // bit offset into buttons for shift register values
  103. #define BLEN_REPRAPWORLD_KEYPAD_F3 0
  104. #define BLEN_REPRAPWORLD_KEYPAD_F2 1
  105. #define BLEN_REPRAPWORLD_KEYPAD_F1 2
  106. #define BLEN_REPRAPWORLD_KEYPAD_DOWN 3
  107. #define BLEN_REPRAPWORLD_KEYPAD_RIGHT 4
  108. #define BLEN_REPRAPWORLD_KEYPAD_MIDDLE 5
  109. #define BLEN_REPRAPWORLD_KEYPAD_UP 6
  110. #define BLEN_REPRAPWORLD_KEYPAD_LEFT 7
  111. #define EN_REPRAPWORLD_KEYPAD_F3 (_BV(REPRAPWORLD_BTN_OFFSET + BLEN_REPRAPWORLD_KEYPAD_F3))
  112. #define EN_REPRAPWORLD_KEYPAD_F2 (_BV(REPRAPWORLD_BTN_OFFSET + BLEN_REPRAPWORLD_KEYPAD_F2))
  113. #define EN_REPRAPWORLD_KEYPAD_F1 (_BV(REPRAPWORLD_BTN_OFFSET + BLEN_REPRAPWORLD_KEYPAD_F1))
  114. #define EN_REPRAPWORLD_KEYPAD_DOWN (_BV(REPRAPWORLD_BTN_OFFSET + BLEN_REPRAPWORLD_KEYPAD_DOWN))
  115. #define EN_REPRAPWORLD_KEYPAD_RIGHT (_BV(REPRAPWORLD_BTN_OFFSET + BLEN_REPRAPWORLD_KEYPAD_RIGHT))
  116. #define EN_REPRAPWORLD_KEYPAD_MIDDLE (_BV(REPRAPWORLD_BTN_OFFSET + BLEN_REPRAPWORLD_KEYPAD_MIDDLE))
  117. #define EN_REPRAPWORLD_KEYPAD_UP (_BV(REPRAPWORLD_BTN_OFFSET + BLEN_REPRAPWORLD_KEYPAD_UP))
  118. #define EN_REPRAPWORLD_KEYPAD_LEFT (_BV(REPRAPWORLD_BTN_OFFSET + BLEN_REPRAPWORLD_KEYPAD_LEFT))
  119. #define REPRAPWORLD_KEYPAD_MOVE_Z_DOWN (buttons_reprapworld_keypad & EN_REPRAPWORLD_KEYPAD_F3)
  120. #define REPRAPWORLD_KEYPAD_MOVE_Z_UP (buttons_reprapworld_keypad & EN_REPRAPWORLD_KEYPAD_F2)
  121. #define REPRAPWORLD_KEYPAD_MOVE_MENU (buttons_reprapworld_keypad & EN_REPRAPWORLD_KEYPAD_F1)
  122. #define REPRAPWORLD_KEYPAD_MOVE_Y_DOWN (buttons_reprapworld_keypad & EN_REPRAPWORLD_KEYPAD_DOWN)
  123. #define REPRAPWORLD_KEYPAD_MOVE_X_RIGHT (buttons_reprapworld_keypad & EN_REPRAPWORLD_KEYPAD_RIGHT)
  124. #define REPRAPWORLD_KEYPAD_MOVE_HOME (buttons_reprapworld_keypad & EN_REPRAPWORLD_KEYPAD_MIDDLE)
  125. #define REPRAPWORLD_KEYPAD_MOVE_Y_UP (buttons_reprapworld_keypad & EN_REPRAPWORLD_KEYPAD_UP)
  126. #define REPRAPWORLD_KEYPAD_MOVE_X_LEFT (buttons_reprapworld_keypad & EN_REPRAPWORLD_KEYPAD_LEFT)
  127. #if ENABLED(ADC_KEYPAD)
  128. #define REPRAPWORLD_KEYPAD_MOVE_HOME (buttons_reprapworld_keypad & EN_REPRAPWORLD_KEYPAD_F1)
  129. #define KEYPAD_EN_C EN_REPRAPWORLD_KEYPAD_MIDDLE
  130. #else
  131. #define REPRAPWORLD_KEYPAD_MOVE_HOME (buttons_reprapworld_keypad & EN_REPRAPWORLD_KEYPAD_MIDDLE)
  132. #define KEYPAD_EN_C EN_REPRAPWORLD_KEYPAD_F1
  133. #endif
  134. #define REPRAPWORLD_KEYPAD_MOVE_MENU (buttons_reprapworld_keypad & KEYPAD_EN_C)
  135. #if BUTTON_EXISTS(ENC)
  136. #define LCD_CLICKED ((buttons & EN_C) || REPRAPWORLD_KEYPAD_MOVE_MENU)
  137. #else
  138. #define LCD_CLICKED REPRAPWORLD_KEYPAD_MOVE_MENU
  139. #endif
  140. #define REPRAPWORLD_KEYPAD_PRESSED (buttons_reprapworld_keypad & ( \
  141. EN_REPRAPWORLD_KEYPAD_F3 | \
  142. EN_REPRAPWORLD_KEYPAD_F2 | \
  143. EN_REPRAPWORLD_KEYPAD_F1 | \
  144. EN_REPRAPWORLD_KEYPAD_DOWN | \
  145. EN_REPRAPWORLD_KEYPAD_RIGHT | \
  146. EN_REPRAPWORLD_KEYPAD_MIDDLE | \
  147. EN_REPRAPWORLD_KEYPAD_UP | \
  148. EN_REPRAPWORLD_KEYPAD_LEFT) \
  149. )
  150. #elif ENABLED(NEWPANEL)
  151. #define LCD_CLICKED (buttons & EN_C)
  152. #else
  153. #define LCD_CLICKED false
  154. #endif
  155. #else // no LCD
  156. inline void lcd_update() {}
  157. inline void lcd_init() {}
  158. inline bool lcd_hasstatus() { return false; }
  159. inline void lcd_setstatus(const char* const message, const bool persist=false) { UNUSED(message); UNUSED(persist); }
  160. inline void lcd_setstatusPGM(const char* const message, const int8_t level=0) { UNUSED(message); UNUSED(level); }
  161. inline void lcd_setalertstatusPGM(const char* message) { UNUSED(message); }
  162. inline void lcd_status_printf_P(const uint8_t level, const char * const fmt, ...) { UNUSED(level); UNUSED(fmt); }
  163. inline void lcd_buttons_update() {}
  164. inline void lcd_reset_alert_level() {}
  165. inline bool lcd_detected() { return true; }
  166. inline void lcd_refresh() {}
  167. #endif // ULTRA_LCD
  168. #define LCD_MESSAGEPGM(x) lcd_setstatusPGM(PSTR(x))
  169. #define LCD_ALERTMESSAGEPGM(x) lcd_setalertstatusPGM(PSTR(x))
  170. void lcd_reset_status();
  171. // For i2c define BUZZ to use lcd_buzz
  172. #if ENABLED(LCD_USE_I2C_BUZZER)
  173. #define BUZZ(d,f) lcd_buzz(d, f)
  174. #endif
  175. #endif // ULTRALCD_H