Alternative info screen (Prusa-style) (#12132)

* Fix Z value display
* Add HAS_PRINT_PROGRESS
* Alternative Info Screen option
* Add LCD_INFO_SCREEN_STYLE to example configs
This commit is contained in:
Scott Lahteine
2018-10-18 11:34:52 -05:00
committed by GitHub
parent 5b7dd553d3
commit 67a3c5a16a
141 changed files with 909 additions and 250 deletions

View File

@ -198,7 +198,7 @@ inline void lcd_implementation_status_message(const bool blink) {
#endif
}
static void lcd_implementation_status_screen() {
static void lcd_impl_status_screen_0() {
const bool blink = lcd_blink();
@ -295,7 +295,7 @@ static void lcd_implementation_status_screen() {
}
#endif // SDSUPPORT
#if ENABLED(SDSUPPORT) || ENABLED(LCD_SET_PROGRESS_MANUALLY)
#if HAS_PRINT_PROGRESS
//
// Progress bar frame
//

View File

@ -947,7 +947,7 @@ void ST7920_Lite_Status_Screen::clear_text_buffer() {
ncs();
}
static void lcd_implementation_status_screen() {
static void lcd_impl_status_screen_0() {
ST7920_Lite_Status_Screen::update(false);
}