My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

ultralcd.h 5.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  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. #include "buzzer.h"
  27. #define BUTTON_EXISTS(BN) (defined(BTN_## BN) && BTN_## BN >= 0)
  28. #define BUTTON_PRESSED(BN) !READ(BTN_## BN)
  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. bool lcd_detected(void);
  39. #if ENABLED(LCD_USE_I2C_BUZZER)
  40. void lcd_buzz(long duration, uint16_t freq);
  41. #endif
  42. #if ENABLED(LCD_PROGRESS_BAR) && PROGRESS_MSG_EXPIRE > 0
  43. void dontExpireStatus();
  44. #endif
  45. #if ENABLED(DOGLCD)
  46. extern int lcd_contrast;
  47. void lcd_setcontrast(uint8_t value);
  48. #endif
  49. #define LCD_MESSAGEPGM(x) lcd_setstatuspgm(PSTR(x))
  50. #define LCD_ALERTMESSAGEPGM(x) lcd_setalertstatuspgm(PSTR(x))
  51. #define LCD_UPDATE_INTERVAL 100
  52. #define LCD_TIMEOUT_TO_STATUS 15000
  53. #if ENABLED(ULTIPANEL)
  54. void lcd_buttons_update();
  55. extern volatile uint8_t buttons; //the last checked buttons in a bit array.
  56. #if ENABLED(REPRAPWORLD_KEYPAD)
  57. extern volatile uint8_t buttons_reprapworld_keypad; // to store the keypad shift register values
  58. #endif
  59. #else
  60. FORCE_INLINE void lcd_buttons_update() {}
  61. #endif
  62. extern int plaPreheatHotendTemp;
  63. extern int plaPreheatHPBTemp;
  64. extern int plaPreheatFanSpeed;
  65. extern int absPreheatHotendTemp;
  66. extern int absPreheatHPBTemp;
  67. extern int absPreheatFanSpeed;
  68. extern bool cancel_heatup;
  69. #if ENABLED(FILAMENT_LCD_DISPLAY)
  70. extern millis_t previous_lcd_status_ms;
  71. #endif
  72. void lcd_quick_feedback(); // Audible feedback for a button click - could also be visual
  73. bool lcd_clicked();
  74. void lcd_ignore_click(bool b=true);
  75. bool lcd_blink();
  76. #if ENABLED(NEWPANEL)
  77. #define EN_C (_BV(BLEN_C))
  78. #define EN_B (_BV(BLEN_B))
  79. #define EN_A (_BV(BLEN_A))
  80. #if ENABLED(REPRAPWORLD_KEYPAD)
  81. #define EN_REPRAPWORLD_KEYPAD_F3 (_BV(BLEN_REPRAPWORLD_KEYPAD_F3))
  82. #define EN_REPRAPWORLD_KEYPAD_F2 (_BV(BLEN_REPRAPWORLD_KEYPAD_F2))
  83. #define EN_REPRAPWORLD_KEYPAD_F1 (_BV(BLEN_REPRAPWORLD_KEYPAD_F1))
  84. #define EN_REPRAPWORLD_KEYPAD_UP (_BV(BLEN_REPRAPWORLD_KEYPAD_UP))
  85. #define EN_REPRAPWORLD_KEYPAD_RIGHT (_BV(BLEN_REPRAPWORLD_KEYPAD_RIGHT))
  86. #define EN_REPRAPWORLD_KEYPAD_MIDDLE (_BV(BLEN_REPRAPWORLD_KEYPAD_MIDDLE))
  87. #define EN_REPRAPWORLD_KEYPAD_DOWN (_BV(BLEN_REPRAPWORLD_KEYPAD_DOWN))
  88. #define EN_REPRAPWORLD_KEYPAD_LEFT (_BV(BLEN_REPRAPWORLD_KEYPAD_LEFT))
  89. #define LCD_CLICKED ((buttons&EN_C) || (buttons_reprapworld_keypad&EN_REPRAPWORLD_KEYPAD_F1))
  90. #define REPRAPWORLD_KEYPAD_MOVE_Z_UP (buttons_reprapworld_keypad&EN_REPRAPWORLD_KEYPAD_F2)
  91. #define REPRAPWORLD_KEYPAD_MOVE_Z_DOWN (buttons_reprapworld_keypad&EN_REPRAPWORLD_KEYPAD_F3)
  92. #define REPRAPWORLD_KEYPAD_MOVE_X_LEFT (buttons_reprapworld_keypad&EN_REPRAPWORLD_KEYPAD_LEFT)
  93. #define REPRAPWORLD_KEYPAD_MOVE_X_RIGHT (buttons_reprapworld_keypad&EN_REPRAPWORLD_KEYPAD_RIGHT)
  94. #define REPRAPWORLD_KEYPAD_MOVE_Y_DOWN (buttons_reprapworld_keypad&EN_REPRAPWORLD_KEYPAD_DOWN)
  95. #define REPRAPWORLD_KEYPAD_MOVE_Y_UP (buttons_reprapworld_keypad&EN_REPRAPWORLD_KEYPAD_UP)
  96. #define REPRAPWORLD_KEYPAD_MOVE_HOME (buttons_reprapworld_keypad&EN_REPRAPWORLD_KEYPAD_MIDDLE)
  97. #else
  98. #define LCD_CLICKED (buttons&EN_C)
  99. #endif //REPRAPWORLD_KEYPAD
  100. #else
  101. //atomic, do not change
  102. #define B_LE (_BV(BL_LE))
  103. #define B_UP (_BV(BL_UP))
  104. #define B_MI (_BV(BL_MI))
  105. #define B_DW (_BV(BL_DW))
  106. #define B_RI (_BV(BL_RI))
  107. #define B_ST (_BV(BL_ST))
  108. #define EN_B (_BV(BLEN_B))
  109. #define EN_A (_BV(BLEN_A))
  110. #define LCD_CLICKED ((buttons&B_MI)||(buttons&B_ST))
  111. #endif//NEWPANEL
  112. #else //no LCD
  113. FORCE_INLINE void lcd_update() {}
  114. FORCE_INLINE void lcd_init() {}
  115. FORCE_INLINE bool lcd_hasstatus() { return false; }
  116. FORCE_INLINE void lcd_setstatus(const char* message, const bool persist=false) {UNUSED(message); UNUSED(persist);}
  117. FORCE_INLINE void lcd_setstatuspgm(const char* message, const uint8_t level=0) {UNUSED(message); UNUSED(level);}
  118. FORCE_INLINE void lcd_buttons_update() {}
  119. FORCE_INLINE void lcd_reset_alert_level() {}
  120. FORCE_INLINE bool lcd_detected(void) { return true; }
  121. #define LCD_MESSAGEPGM(x) do{}while(0)
  122. #define LCD_ALERTMESSAGEPGM(x) do{}while(0)
  123. #endif //ULTRA_LCD
  124. char* itostr2(const uint8_t& x);
  125. char* itostr31(const int& x);
  126. char* itostr3(const int& x);
  127. char* itostr3left(const int& x);
  128. char* itostr4(const int& x);
  129. char* itostr4sign(const int& x);
  130. char* ftostr3(const float& x);
  131. char* ftostr4sign(const float& x);
  132. char* ftostr31ns(const float& x); // float to string without sign character
  133. char* ftostr31(const float& x);
  134. char* ftostr32(const float& x);
  135. char* ftostr43(const float& x, char plus=' ');
  136. char* ftostr12ns(const float& x);
  137. char* ftostr32sp(const float& x); // remove zero-padding from ftostr32
  138. char* ftostr5(const float& x);
  139. char* ftostr51(const float& x);
  140. char* ftostr52(const float& x);
  141. #endif //ULTRALCD_H