2016-03-25 06:19:46 +00:00
|
|
|
/**
|
2016-03-24 18:01:20 +00:00
|
|
|
* Marlin 3D Printer Firmware
|
|
|
|
* Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
|
|
|
* Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-07-20 03:10:16 +00:00
|
|
|
#ifndef ULTRALCD_IMPL_HD44780_H
|
|
|
|
#define ULTRALCD_IMPL_HD44780_H
|
2013-10-20 10:12:35 +00:00
|
|
|
|
|
|
|
/**
|
2016-08-20 23:05:54 +00:00
|
|
|
* Implementation of the LCD display routines for a Hitachi HD44780 display.
|
|
|
|
* These are the most common LCD character displays.
|
|
|
|
*/
|
2013-10-20 10:12:35 +00:00
|
|
|
|
2016-08-20 23:05:54 +00:00
|
|
|
#include "utility.h"
|
2016-07-24 02:13:35 +00:00
|
|
|
#include "duration_t.h"
|
2016-07-23 00:42:48 +00:00
|
|
|
|
2017-06-21 20:26:59 +00:00
|
|
|
#if ENABLED(AUTO_BED_LEVELING_UBL)
|
|
|
|
#include "ubl.h"
|
|
|
|
#endif
|
|
|
|
|
2015-10-08 18:55:46 +00:00
|
|
|
extern volatile uint8_t buttons; //an extended version of the last checked buttons in a bit array.
|
2013-10-20 10:12:35 +00:00
|
|
|
|
|
|
|
////////////////////////////////////
|
|
|
|
// Setup button and encode mappings for each panel (into 'buttons' variable
|
|
|
|
//
|
2015-05-13 09:02:19 +00:00
|
|
|
// This is just to map common functions (across different panels) onto the same
|
|
|
|
// macro name. The mapping is independent of whether the button is directly connected or
|
2013-10-20 10:12:35 +00:00
|
|
|
// via a shift/i2c register.
|
|
|
|
|
2015-07-31 05:26:53 +00:00
|
|
|
#if ENABLED(ULTIPANEL)
|
2013-10-20 10:12:35 +00:00
|
|
|
|
2015-10-03 06:08:58 +00:00
|
|
|
//
|
|
|
|
// Setup other button mappings of each panel
|
|
|
|
//
|
|
|
|
#if ENABLED(LCD_I2C_VIKI)
|
2013-10-20 10:12:35 +00:00
|
|
|
#define B_I2C_BTN_OFFSET 3 // (the first three bit positions reserved for EN_A, EN_B, EN_C)
|
2015-05-13 09:02:19 +00:00
|
|
|
|
2015-10-03 06:08:58 +00:00
|
|
|
// button and encoder bit positions within 'buttons'
|
|
|
|
#define B_LE (BUTTON_LEFT<<B_I2C_BTN_OFFSET) // The remaining normalized buttons are all read via I2C
|
|
|
|
#define B_UP (BUTTON_UP<<B_I2C_BTN_OFFSET)
|
|
|
|
#define B_MI (BUTTON_SELECT<<B_I2C_BTN_OFFSET)
|
|
|
|
#define B_DW (BUTTON_DOWN<<B_I2C_BTN_OFFSET)
|
|
|
|
#define B_RI (BUTTON_RIGHT<<B_I2C_BTN_OFFSET)
|
|
|
|
|
2016-03-27 11:25:33 +00:00
|
|
|
#if BUTTON_EXISTS(ENC)
|
2015-10-03 06:08:58 +00:00
|
|
|
// the pause/stop/restart button is connected to BTN_ENC when used
|
|
|
|
#define B_ST (EN_C) // Map the pause/stop/resume button into its normalized functional name
|
2015-11-13 13:04:48 +00:00
|
|
|
#undef LCD_CLICKED
|
2015-10-03 06:08:58 +00:00
|
|
|
#define LCD_CLICKED (buttons&(B_MI|B_RI|B_ST)) // pause/stop button also acts as click until we implement proper pause/stop.
|
|
|
|
#else
|
2015-11-13 13:04:48 +00:00
|
|
|
#undef LCD_CLICKED
|
2015-10-03 06:08:58 +00:00
|
|
|
#define LCD_CLICKED (buttons&(B_MI|B_RI))
|
|
|
|
#endif
|
2013-10-20 10:12:35 +00:00
|
|
|
|
|
|
|
// I2C buttons take too long to read inside an interrupt context and so we read them during lcd_update
|
|
|
|
#define LCD_HAS_SLOW_BUTTONS
|
|
|
|
|
2015-10-03 06:08:58 +00:00
|
|
|
#elif ENABLED(LCD_I2C_PANELOLU2)
|
2016-03-27 11:25:33 +00:00
|
|
|
|
2016-07-28 21:23:21 +00:00
|
|
|
#if !BUTTON_EXISTS(ENC) // Use I2C if not directly connected to a pin
|
2016-03-27 11:25:33 +00:00
|
|
|
|
2015-10-03 06:08:58 +00:00
|
|
|
#define B_I2C_BTN_OFFSET 3 // (the first three bit positions reserved for EN_A, EN_B, EN_C)
|
|
|
|
|
|
|
|
#define B_MI (PANELOLU2_ENCODER_C<<B_I2C_BTN_OFFSET) // requires LiquidTWI2 library v1.2.3 or later
|
|
|
|
|
2015-11-13 13:04:48 +00:00
|
|
|
#undef LCD_CLICKED
|
2016-07-28 21:23:21 +00:00
|
|
|
#define LCD_CLICKED (buttons & B_MI)
|
2015-10-03 06:08:58 +00:00
|
|
|
|
|
|
|
// I2C buttons take too long to read inside an interrupt context and so we read them during lcd_update
|
|
|
|
#define LCD_HAS_SLOW_BUTTONS
|
2016-03-27 11:25:33 +00:00
|
|
|
|
2015-10-03 06:08:58 +00:00
|
|
|
#endif
|
|
|
|
|
2016-07-28 21:23:21 +00:00
|
|
|
#elif DISABLED(NEWPANEL) // old style ULTIPANEL
|
|
|
|
// Shift register bits correspond to buttons:
|
|
|
|
#define BL_LE 7 // Left
|
|
|
|
#define BL_UP 6 // Up
|
|
|
|
#define BL_MI 5 // Middle
|
|
|
|
#define BL_DW 4 // Down
|
|
|
|
#define BL_RI 3 // Right
|
|
|
|
#define BL_ST 2 // Red Button
|
2016-02-27 12:51:44 +00:00
|
|
|
#define B_LE (_BV(BL_LE))
|
|
|
|
#define B_UP (_BV(BL_UP))
|
|
|
|
#define B_MI (_BV(BL_MI))
|
|
|
|
#define B_DW (_BV(BL_DW))
|
|
|
|
#define B_RI (_BV(BL_RI))
|
|
|
|
#define B_ST (_BV(BL_ST))
|
2016-07-28 21:23:21 +00:00
|
|
|
#define LCD_CLICKED ((buttons & B_MI) || (buttons & B_ST))
|
2015-10-03 06:08:58 +00:00
|
|
|
#endif
|
2013-10-20 10:12:35 +00:00
|
|
|
|
2017-05-09 17:35:43 +00:00
|
|
|
#endif // ULTIPANEL
|
2013-10-20 10:12:35 +00:00
|
|
|
|
|
|
|
////////////////////////////////////
|
|
|
|
// Create LCD class instance and chipset-specific information
|
2015-07-31 05:26:53 +00:00
|
|
|
#if ENABLED(LCD_I2C_TYPE_PCF8575)
|
2013-10-20 10:12:35 +00:00
|
|
|
// note: these are register mapped pins on the PCF8575 controller not Arduino pins
|
|
|
|
#define LCD_I2C_PIN_BL 3
|
|
|
|
#define LCD_I2C_PIN_EN 2
|
|
|
|
#define LCD_I2C_PIN_RW 1
|
|
|
|
#define LCD_I2C_PIN_RS 0
|
|
|
|
#define LCD_I2C_PIN_D4 4
|
|
|
|
#define LCD_I2C_PIN_D5 5
|
|
|
|
#define LCD_I2C_PIN_D6 6
|
|
|
|
#define LCD_I2C_PIN_D7 7
|
2016-03-08 18:11:02 +00:00
|
|
|
|
2013-10-20 10:12:35 +00:00
|
|
|
#include <Wire.h>
|
|
|
|
#include <LCD.h>
|
|
|
|
#include <LiquidCrystal_I2C.h>
|
|
|
|
#define LCD_CLASS LiquidCrystal_I2C
|
2015-10-03 06:08:58 +00:00
|
|
|
LCD_CLASS lcd(LCD_I2C_ADDRESS, LCD_I2C_PIN_EN, LCD_I2C_PIN_RW, LCD_I2C_PIN_RS, LCD_I2C_PIN_D4, LCD_I2C_PIN_D5, LCD_I2C_PIN_D6, LCD_I2C_PIN_D7);
|
2015-05-13 09:02:19 +00:00
|
|
|
|
2015-07-31 05:26:53 +00:00
|
|
|
#elif ENABLED(LCD_I2C_TYPE_MCP23017)
|
2013-10-20 10:12:35 +00:00
|
|
|
//for the LED indicators (which maybe mapped to different things in lcd_implementation_update_indicators())
|
|
|
|
#define LED_A 0x04 //100
|
|
|
|
#define LED_B 0x02 //010
|
|
|
|
#define LED_C 0x01 //001
|
|
|
|
|
|
|
|
#define LCD_HAS_STATUS_INDICATORS
|
|
|
|
|
|
|
|
#include <Wire.h>
|
|
|
|
#include <LiquidTWI2.h>
|
|
|
|
#define LCD_CLASS LiquidTWI2
|
2015-07-31 05:26:53 +00:00
|
|
|
#if ENABLED(DETECT_DEVICE)
|
2015-05-13 09:02:19 +00:00
|
|
|
LCD_CLASS lcd(LCD_I2C_ADDRESS, 1);
|
2014-03-03 21:01:27 +00:00
|
|
|
#else
|
2015-05-13 09:02:19 +00:00
|
|
|
LCD_CLASS lcd(LCD_I2C_ADDRESS);
|
2014-03-03 21:01:27 +00:00
|
|
|
#endif
|
2015-05-13 09:02:19 +00:00
|
|
|
|
2015-07-31 05:26:53 +00:00
|
|
|
#elif ENABLED(LCD_I2C_TYPE_MCP23008)
|
2013-10-20 10:12:35 +00:00
|
|
|
#include <Wire.h>
|
|
|
|
#include <LiquidTWI2.h>
|
|
|
|
#define LCD_CLASS LiquidTWI2
|
2015-07-31 05:26:53 +00:00
|
|
|
#if ENABLED(DETECT_DEVICE)
|
2015-05-13 09:02:19 +00:00
|
|
|
LCD_CLASS lcd(LCD_I2C_ADDRESS, 1);
|
2014-03-03 21:01:27 +00:00
|
|
|
#else
|
2015-05-13 09:02:19 +00:00
|
|
|
LCD_CLASS lcd(LCD_I2C_ADDRESS);
|
2014-03-03 21:01:27 +00:00
|
|
|
#endif
|
2013-10-20 10:12:35 +00:00
|
|
|
|
2015-07-31 05:26:53 +00:00
|
|
|
#elif ENABLED(LCD_I2C_TYPE_PCA8574)
|
2015-10-03 06:08:58 +00:00
|
|
|
#include <LiquidCrystal_I2C.h>
|
|
|
|
#define LCD_CLASS LiquidCrystal_I2C
|
|
|
|
LCD_CLASS lcd(LCD_I2C_ADDRESS, LCD_WIDTH, LCD_HEIGHT);
|
2015-05-13 09:02:19 +00:00
|
|
|
|
2013-10-30 10:45:32 +00:00
|
|
|
// 2 wire Non-latching LCD SR from:
|
2015-05-13 09:02:19 +00:00
|
|
|
// https://bitbucket.org/fmalpartida/new-liquidcrystal/wiki/schematics#!shiftregister-connection
|
2015-07-31 05:26:53 +00:00
|
|
|
#elif ENABLED(SR_LCD_2W_NL)
|
2014-12-28 18:54:06 +00:00
|
|
|
extern "C" void __cxa_pure_virtual() { while (1); }
|
2013-10-30 10:45:32 +00:00
|
|
|
#include <LCD.h>
|
|
|
|
#include <LiquidCrystal_SR.h>
|
|
|
|
#define LCD_CLASS LiquidCrystal_SR
|
2017-03-20 20:47:51 +00:00
|
|
|
#if PIN_EXISTS(SR_STROBE)
|
2016-09-25 10:28:04 +00:00
|
|
|
LCD_CLASS lcd(SR_DATA_PIN, SR_CLK_PIN, SR_STROBE_PIN);
|
|
|
|
#else
|
|
|
|
LCD_CLASS lcd(SR_DATA_PIN, SR_CLK_PIN);
|
|
|
|
#endif
|
2016-03-19 22:25:51 +00:00
|
|
|
#elif ENABLED(LCM1602)
|
|
|
|
#include <Wire.h>
|
|
|
|
#include <LCD.h>
|
|
|
|
#include <LiquidCrystal_I2C.h>
|
|
|
|
#define LCD_CLASS LiquidCrystal_I2C
|
|
|
|
LCD_CLASS lcd(0x27, 2, 1, 0, 4, 5, 6, 7, 3, POSITIVE);
|
2013-10-20 10:12:35 +00:00
|
|
|
#else
|
|
|
|
// Standard directly connected LCD implementations
|
2015-03-10 17:30:09 +00:00
|
|
|
#include <LiquidCrystal.h>
|
|
|
|
#define LCD_CLASS LiquidCrystal
|
2015-10-03 06:08:58 +00:00
|
|
|
LCD_CLASS lcd(LCD_PINS_RS, LCD_PINS_ENABLE, LCD_PINS_D4, LCD_PINS_D5, LCD_PINS_D6, LCD_PINS_D7); //RS,Enable,D4,D5,D6,D7
|
2013-10-20 10:12:35 +00:00
|
|
|
#endif
|
|
|
|
|
2015-03-10 17:30:09 +00:00
|
|
|
#include "utf_mapper.h"
|
|
|
|
|
2015-07-31 05:26:53 +00:00
|
|
|
#if ENABLED(LCD_PROGRESS_BAR)
|
2015-04-25 05:16:09 +00:00
|
|
|
static millis_t progress_bar_ms = 0;
|
2014-12-28 06:26:14 +00:00
|
|
|
#if PROGRESS_MSG_EXPIRE > 0
|
2015-04-25 05:16:09 +00:00
|
|
|
static millis_t expire_status_ms = 0;
|
2014-12-28 06:26:14 +00:00
|
|
|
#endif
|
|
|
|
#define LCD_STR_PROGRESS "\x03\x04\x05"
|
|
|
|
#endif
|
|
|
|
|
2015-11-13 13:04:48 +00:00
|
|
|
#if ENABLED(LCD_HAS_STATUS_INDICATORS)
|
|
|
|
static void lcd_implementation_update_indicators();
|
|
|
|
#endif
|
|
|
|
|
2017-06-05 22:41:38 +00:00
|
|
|
static void createChar_P(const char c, const byte * const ptr) {
|
2017-06-05 22:02:00 +00:00
|
|
|
byte temp[8];
|
2017-06-05 22:41:38 +00:00
|
|
|
for (uint8_t i = 0; i < 8; i++)
|
2017-06-05 22:02:00 +00:00
|
|
|
temp[i] = pgm_read_byte(&ptr[i]);
|
|
|
|
lcd.createChar(c, temp);
|
|
|
|
}
|
|
|
|
|
2017-06-05 22:41:38 +00:00
|
|
|
static void lcd_set_custom_characters(
|
|
|
|
#if ENABLED(LCD_PROGRESS_BAR)
|
|
|
|
const bool info_screen_charset = true
|
|
|
|
#endif
|
|
|
|
) {
|
|
|
|
const static PROGMEM byte bedTemp[8] = {
|
2014-12-28 06:26:14 +00:00
|
|
|
B00000,
|
|
|
|
B11111,
|
|
|
|
B10101,
|
|
|
|
B10001,
|
|
|
|
B10101,
|
|
|
|
B11111,
|
|
|
|
B00000,
|
|
|
|
B00000
|
2017-06-05 22:41:38 +00:00
|
|
|
};
|
2017-06-05 22:02:00 +00:00
|
|
|
|
2017-06-05 22:41:38 +00:00
|
|
|
const static PROGMEM byte degree[8] = {
|
2014-12-28 06:26:14 +00:00
|
|
|
B01100,
|
|
|
|
B10010,
|
|
|
|
B10010,
|
|
|
|
B01100,
|
|
|
|
B00000,
|
|
|
|
B00000,
|
|
|
|
B00000,
|
|
|
|
B00000
|
|
|
|
};
|
2017-06-05 22:02:00 +00:00
|
|
|
|
2017-06-05 22:41:38 +00:00
|
|
|
const static PROGMEM byte thermometer[8] = {
|
2014-12-28 06:26:14 +00:00
|
|
|
B00100,
|
|
|
|
B01010,
|
|
|
|
B01010,
|
|
|
|
B01010,
|
|
|
|
B01010,
|
|
|
|
B10001,
|
|
|
|
B10001,
|
|
|
|
B01110
|
|
|
|
};
|
2017-06-05 22:02:00 +00:00
|
|
|
|
2017-06-05 22:41:38 +00:00
|
|
|
const static PROGMEM byte uplevel[8] = {
|
2016-10-15 02:30:41 +00:00
|
|
|
B00100,
|
|
|
|
B01110,
|
|
|
|
B11111,
|
|
|
|
B00100,
|
|
|
|
B11100,
|
|
|
|
B00000,
|
|
|
|
B00000,
|
|
|
|
B00000
|
2017-06-05 22:41:38 +00:00
|
|
|
};
|
2017-06-05 22:02:00 +00:00
|
|
|
|
2017-06-05 22:41:38 +00:00
|
|
|
const static PROGMEM byte feedrate[8] = {
|
2014-12-28 06:26:14 +00:00
|
|
|
B11100,
|
|
|
|
B10000,
|
|
|
|
B11000,
|
|
|
|
B10111,
|
|
|
|
B00101,
|
|
|
|
B00110,
|
|
|
|
B00101,
|
|
|
|
B00000
|
2017-06-05 22:41:38 +00:00
|
|
|
};
|
2017-06-05 22:02:00 +00:00
|
|
|
|
2017-06-05 22:41:38 +00:00
|
|
|
const static PROGMEM byte clock[8] = {
|
2014-12-28 06:26:14 +00:00
|
|
|
B00000,
|
|
|
|
B01110,
|
|
|
|
B10011,
|
|
|
|
B10101,
|
|
|
|
B10001,
|
|
|
|
B01110,
|
|
|
|
B00000,
|
|
|
|
B00000
|
2017-06-05 22:41:38 +00:00
|
|
|
};
|
2014-12-28 06:26:14 +00:00
|
|
|
|
2017-06-05 22:41:38 +00:00
|
|
|
#if ENABLED(SDSUPPORT)
|
|
|
|
const static PROGMEM byte refresh[8] = {
|
2016-08-06 23:05:41 +00:00
|
|
|
B00000,
|
|
|
|
B00110,
|
|
|
|
B11001,
|
|
|
|
B11000,
|
|
|
|
B00011,
|
|
|
|
B10011,
|
|
|
|
B01100,
|
|
|
|
B00000,
|
2017-06-05 22:41:38 +00:00
|
|
|
};
|
|
|
|
const static PROGMEM byte folder[8] = {
|
2016-08-06 23:05:41 +00:00
|
|
|
B00000,
|
|
|
|
B11100,
|
|
|
|
B11111,
|
|
|
|
B10001,
|
|
|
|
B10001,
|
|
|
|
B11111,
|
2014-12-28 06:26:14 +00:00
|
|
|
B00000,
|
|
|
|
B00000
|
2017-06-05 22:41:38 +00:00
|
|
|
};
|
2016-08-06 23:05:41 +00:00
|
|
|
|
2017-06-05 22:41:38 +00:00
|
|
|
#if ENABLED(LCD_PROGRESS_BAR)
|
|
|
|
const static PROGMEM byte progress[3][8] = { {
|
2016-08-06 23:05:41 +00:00
|
|
|
B00000,
|
|
|
|
B10000,
|
|
|
|
B10000,
|
|
|
|
B10000,
|
|
|
|
B10000,
|
|
|
|
B10000,
|
|
|
|
B10000,
|
|
|
|
B00000
|
|
|
|
}, {
|
|
|
|
B00000,
|
|
|
|
B10100,
|
|
|
|
B10100,
|
|
|
|
B10100,
|
|
|
|
B10100,
|
|
|
|
B10100,
|
|
|
|
B10100,
|
|
|
|
B00000
|
|
|
|
}, {
|
|
|
|
B00000,
|
|
|
|
B10101,
|
|
|
|
B10101,
|
|
|
|
B10101,
|
|
|
|
B10101,
|
|
|
|
B10101,
|
|
|
|
B10101,
|
|
|
|
B00000
|
|
|
|
} };
|
2017-06-05 22:41:38 +00:00
|
|
|
#endif
|
2017-06-05 22:02:00 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
createChar_P(LCD_BEDTEMP_CHAR, bedTemp);
|
|
|
|
createChar_P(LCD_DEGREE_CHAR, degree);
|
|
|
|
createChar_P(LCD_STR_THERMOMETER[0], thermometer);
|
|
|
|
createChar_P(LCD_FEEDRATE_CHAR, feedrate);
|
|
|
|
createChar_P(LCD_CLOCK_CHAR, clock);
|
|
|
|
|
|
|
|
#if ENABLED(SDSUPPORT)
|
|
|
|
#if ENABLED(LCD_PROGRESS_BAR)
|
2016-08-06 23:05:41 +00:00
|
|
|
static bool char_mode = false;
|
|
|
|
if (info_screen_charset != char_mode) {
|
|
|
|
char_mode = info_screen_charset;
|
|
|
|
if (info_screen_charset) { // Progress bar characters for info screen
|
2017-06-20 03:39:23 +00:00
|
|
|
for (int16_t i = 3; i--;) createChar_P(LCD_STR_PROGRESS[i], progress[i]);
|
2016-08-06 23:05:41 +00:00
|
|
|
}
|
|
|
|
else { // Custom characters for submenus
|
2017-06-05 22:02:00 +00:00
|
|
|
createChar_P(LCD_UPLEVEL_CHAR, uplevel);
|
2017-06-12 06:28:52 +00:00
|
|
|
createChar_P(LCD_STR_REFRESH[0], refresh);
|
2017-06-05 22:02:00 +00:00
|
|
|
createChar_P(LCD_STR_FOLDER[0], folder);
|
2016-08-06 23:05:41 +00:00
|
|
|
}
|
2014-12-28 06:26:14 +00:00
|
|
|
}
|
2016-08-06 23:05:41 +00:00
|
|
|
#else
|
2017-06-05 22:02:00 +00:00
|
|
|
createChar_P(LCD_UPLEVEL_CHAR, uplevel);
|
2017-06-12 06:28:52 +00:00
|
|
|
createChar_P(LCD_STR_REFRESH[0], refresh);
|
2017-06-05 22:02:00 +00:00
|
|
|
createChar_P(LCD_STR_FOLDER[0], folder);
|
2016-08-06 23:05:41 +00:00
|
|
|
#endif
|
|
|
|
|
2016-10-15 02:30:41 +00:00
|
|
|
#else
|
2017-06-05 22:02:00 +00:00
|
|
|
createChar_P(LCD_UPLEVEL_CHAR, uplevel);
|
2014-12-28 06:26:14 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static void lcd_implementation_init(
|
2015-07-31 05:26:53 +00:00
|
|
|
#if ENABLED(LCD_PROGRESS_BAR)
|
2016-11-24 06:54:21 +00:00
|
|
|
const bool info_screen_charset = true
|
2014-12-28 06:26:14 +00:00
|
|
|
#endif
|
|
|
|
) {
|
2013-10-20 10:12:35 +00:00
|
|
|
|
2015-07-31 05:26:53 +00:00
|
|
|
#if ENABLED(LCD_I2C_TYPE_PCF8575)
|
2013-10-20 10:12:35 +00:00
|
|
|
lcd.begin(LCD_WIDTH, LCD_HEIGHT);
|
2015-05-13 09:02:19 +00:00
|
|
|
#ifdef LCD_I2C_PIN_BL
|
|
|
|
lcd.setBacklightPin(LCD_I2C_PIN_BL, POSITIVE);
|
2016-03-25 13:49:55 +00:00
|
|
|
lcd.setBacklight(HIGH);
|
2015-05-13 09:02:19 +00:00
|
|
|
#endif
|
|
|
|
|
2015-07-31 05:26:53 +00:00
|
|
|
#elif ENABLED(LCD_I2C_TYPE_MCP23017)
|
2013-10-20 10:12:35 +00:00
|
|
|
lcd.setMCPType(LTI_TYPE_MCP23017);
|
|
|
|
lcd.begin(LCD_WIDTH, LCD_HEIGHT);
|
2015-11-13 13:04:48 +00:00
|
|
|
lcd_implementation_update_indicators();
|
2015-05-13 09:02:19 +00:00
|
|
|
|
2015-07-31 05:26:53 +00:00
|
|
|
#elif ENABLED(LCD_I2C_TYPE_MCP23008)
|
2013-10-20 10:12:35 +00:00
|
|
|
lcd.setMCPType(LTI_TYPE_MCP23008);
|
|
|
|
lcd.begin(LCD_WIDTH, LCD_HEIGHT);
|
|
|
|
|
2015-07-31 05:26:53 +00:00
|
|
|
#elif ENABLED(LCD_I2C_TYPE_PCA8574)
|
2015-05-13 09:02:19 +00:00
|
|
|
lcd.init();
|
|
|
|
lcd.backlight();
|
|
|
|
|
|
|
|
#else
|
2013-10-20 10:12:35 +00:00
|
|
|
lcd.begin(LCD_WIDTH, LCD_HEIGHT);
|
2015-05-13 09:02:19 +00:00
|
|
|
#endif
|
2013-10-20 10:12:35 +00:00
|
|
|
|
2015-05-13 09:02:19 +00:00
|
|
|
lcd_set_custom_characters(
|
2015-07-31 05:26:53 +00:00
|
|
|
#if ENABLED(LCD_PROGRESS_BAR)
|
2016-08-06 23:05:41 +00:00
|
|
|
info_screen_charset
|
2015-05-13 09:02:19 +00:00
|
|
|
#endif
|
|
|
|
);
|
2014-12-28 06:26:14 +00:00
|
|
|
|
2015-05-13 09:02:19 +00:00
|
|
|
lcd.clear();
|
2013-10-20 10:12:35 +00:00
|
|
|
}
|
2015-03-10 17:30:09 +00:00
|
|
|
|
2017-03-18 15:15:54 +00:00
|
|
|
void lcd_implementation_clear() { lcd.clear(); }
|
2015-05-13 09:02:19 +00:00
|
|
|
|
2017-05-28 16:12:12 +00:00
|
|
|
void lcd_print(const char c) { charset_mapper(c); }
|
|
|
|
|
2017-06-01 03:08:13 +00:00
|
|
|
void lcd_print(const char *str) { while (*str) lcd.print(*str++); }
|
|
|
|
void lcd_printPGM(const char *str) { while (const char c = pgm_read_byte(str)) lcd.print(c), ++str; }
|
2015-03-10 17:30:09 +00:00
|
|
|
|
2017-06-01 03:08:13 +00:00
|
|
|
void lcd_print_utf(const char *str, uint8_t n=LCD_WIDTH) {
|
2017-05-28 16:12:12 +00:00
|
|
|
char c;
|
2017-06-01 03:08:13 +00:00
|
|
|
while (n && (c = *str)) n -= charset_mapper(c), ++str;
|
2013-10-20 10:12:35 +00:00
|
|
|
}
|
2015-03-10 17:30:09 +00:00
|
|
|
|
2017-06-01 03:08:13 +00:00
|
|
|
void lcd_printPGM_utf(const char *str, uint8_t n=LCD_WIDTH) {
|
2017-05-28 16:12:12 +00:00
|
|
|
char c;
|
2017-06-01 03:08:13 +00:00
|
|
|
while (n && (c = pgm_read_byte(str))) n -= charset_mapper(c), ++str;
|
2017-05-28 16:12:12 +00:00
|
|
|
}
|
2015-03-10 17:30:09 +00:00
|
|
|
|
2015-07-31 14:24:20 +00:00
|
|
|
#if ENABLED(SHOW_BOOTSCREEN)
|
2016-02-06 22:38:11 +00:00
|
|
|
|
2017-06-20 03:39:23 +00:00
|
|
|
void lcd_erase_line(const int16_t line) {
|
2016-03-15 17:59:06 +00:00
|
|
|
lcd.setCursor(0, line);
|
2016-11-24 06:54:21 +00:00
|
|
|
for (uint8_t i = LCD_WIDTH + 1; --i;)
|
2016-12-27 20:38:36 +00:00
|
|
|
lcd.print(' ');
|
2015-07-31 21:29:52 +00:00
|
|
|
}
|
|
|
|
|
2015-10-03 06:08:58 +00:00
|
|
|
// Scroll the PSTR 'text' in a 'len' wide field for 'time' milliseconds at position col,line
|
2017-06-20 03:39:23 +00:00
|
|
|
void lcd_scroll(const int16_t col, const int16_t line, const char* const text, const int16_t len, const int16_t time) {
|
2015-10-03 06:08:58 +00:00
|
|
|
char tmp[LCD_WIDTH + 1] = {0};
|
2017-06-20 03:39:23 +00:00
|
|
|
int16_t n = max(lcd_strlen_P(text) - len, 0);
|
|
|
|
for (int16_t i = 0; i <= n; i++) {
|
2015-10-03 06:08:58 +00:00
|
|
|
strncpy_P(tmp, text + i, min(len, LCD_WIDTH));
|
2015-07-31 21:29:52 +00:00
|
|
|
lcd.setCursor(col, line);
|
|
|
|
lcd_print(tmp);
|
2015-08-03 09:23:42 +00:00
|
|
|
delay(time / max(n, 1));
|
2015-07-31 21:29:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-24 06:54:21 +00:00
|
|
|
static void logo_lines(const char* const extra) {
|
2017-06-20 03:39:23 +00:00
|
|
|
int16_t indent = (LCD_WIDTH - 8 - lcd_strlen_P(extra)) / 2;
|
2016-02-06 21:57:12 +00:00
|
|
|
lcd.setCursor(indent, 0); lcd.print('\x00'); lcd_printPGM(PSTR( "------" )); lcd.print('\x01');
|
|
|
|
lcd.setCursor(indent, 1); lcd_printPGM(PSTR("|Marlin|")); lcd_printPGM(extra);
|
|
|
|
lcd.setCursor(indent, 2); lcd.print('\x02'); lcd_printPGM(PSTR( "------" )); lcd.print('\x03');
|
|
|
|
}
|
|
|
|
|
2016-06-13 23:59:50 +00:00
|
|
|
void bootscreen() {
|
2017-06-05 22:45:28 +00:00
|
|
|
const static PROGMEM byte corner[4][8] = { {
|
2015-07-31 14:24:20 +00:00
|
|
|
B00000,
|
|
|
|
B00000,
|
|
|
|
B00000,
|
|
|
|
B00000,
|
|
|
|
B00001,
|
|
|
|
B00010,
|
|
|
|
B00100,
|
|
|
|
B00100
|
2017-06-05 22:45:28 +00:00
|
|
|
}, {
|
2015-07-31 14:24:20 +00:00
|
|
|
B00000,
|
|
|
|
B00000,
|
|
|
|
B00000,
|
|
|
|
B11100,
|
|
|
|
B11100,
|
|
|
|
B01100,
|
|
|
|
B00100,
|
|
|
|
B00100
|
2017-06-05 22:45:28 +00:00
|
|
|
}, {
|
2015-07-31 14:24:20 +00:00
|
|
|
B00100,
|
|
|
|
B00010,
|
|
|
|
B00001,
|
|
|
|
B00000,
|
|
|
|
B00000,
|
|
|
|
B00000,
|
|
|
|
B00000,
|
|
|
|
B00000
|
2017-06-05 22:45:28 +00:00
|
|
|
}, {
|
2015-07-31 14:24:20 +00:00
|
|
|
B00100,
|
|
|
|
B01000,
|
|
|
|
B10000,
|
|
|
|
B00000,
|
|
|
|
B00000,
|
|
|
|
B00000,
|
|
|
|
B00000,
|
|
|
|
B00000
|
2017-06-05 22:45:28 +00:00
|
|
|
} };
|
|
|
|
for (uint8_t i = 0; i < 4; i++)
|
|
|
|
createChar_P(i, corner[i]);
|
2015-07-31 14:24:20 +00:00
|
|
|
|
|
|
|
lcd.clear();
|
2015-07-31 21:29:52 +00:00
|
|
|
|
2016-02-06 21:57:12 +00:00
|
|
|
#define LCD_EXTRA_SPACE (LCD_WIDTH-8)
|
2015-07-31 14:24:20 +00:00
|
|
|
|
2016-04-17 06:50:36 +00:00
|
|
|
#define CENTER_OR_SCROLL(STRING,DELAY) \
|
|
|
|
lcd_erase_line(3); \
|
|
|
|
if (strlen(STRING) <= LCD_WIDTH) { \
|
|
|
|
lcd.setCursor((LCD_WIDTH - lcd_strlen_P(PSTR(STRING))) / 2, 3); \
|
|
|
|
lcd_printPGM(PSTR(STRING)); \
|
2016-06-15 16:11:55 +00:00
|
|
|
safe_delay(DELAY); \
|
2016-04-17 06:50:36 +00:00
|
|
|
} \
|
|
|
|
else { \
|
|
|
|
lcd_scroll(0, 3, PSTR(STRING), LCD_WIDTH, DELAY); \
|
|
|
|
}
|
|
|
|
|
2015-08-03 09:23:42 +00:00
|
|
|
#ifdef STRING_SPLASH_LINE1
|
2016-04-17 06:50:36 +00:00
|
|
|
//
|
|
|
|
// Show the Marlin logo with splash line 1
|
|
|
|
//
|
2016-02-06 21:57:12 +00:00
|
|
|
if (LCD_EXTRA_SPACE >= strlen(STRING_SPLASH_LINE1) + 1) {
|
2016-04-17 06:50:36 +00:00
|
|
|
//
|
|
|
|
// Show the Marlin logo, splash line1, and splash line 2
|
|
|
|
//
|
2016-02-06 21:57:12 +00:00
|
|
|
logo_lines(PSTR(" " STRING_SPLASH_LINE1));
|
|
|
|
#ifdef STRING_SPLASH_LINE2
|
2016-04-17 06:50:36 +00:00
|
|
|
CENTER_OR_SCROLL(STRING_SPLASH_LINE2, 2000);
|
2016-02-06 21:57:12 +00:00
|
|
|
#else
|
2016-06-15 16:11:55 +00:00
|
|
|
safe_delay(2000);
|
2016-02-06 21:57:12 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
else {
|
2016-04-17 06:50:36 +00:00
|
|
|
//
|
|
|
|
// Show the Marlin logo with splash line 1
|
|
|
|
// After a delay show splash line 2, if it exists
|
|
|
|
//
|
|
|
|
#ifdef STRING_SPLASH_LINE2
|
|
|
|
#define _SPLASH_WAIT_1 1500
|
|
|
|
#else
|
|
|
|
#define _SPLASH_WAIT_1 2000
|
|
|
|
#endif
|
2016-02-06 21:57:12 +00:00
|
|
|
logo_lines(PSTR(""));
|
2016-04-17 06:50:36 +00:00
|
|
|
CENTER_OR_SCROLL(STRING_SPLASH_LINE1, _SPLASH_WAIT_1);
|
2016-02-06 21:57:12 +00:00
|
|
|
#ifdef STRING_SPLASH_LINE2
|
2016-04-17 06:50:36 +00:00
|
|
|
CENTER_OR_SCROLL(STRING_SPLASH_LINE2, 1500);
|
2016-02-06 21:57:12 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
#elif defined(STRING_SPLASH_LINE2)
|
2016-04-17 06:50:36 +00:00
|
|
|
//
|
|
|
|
// Show splash line 2 only, alongside the logo if possible
|
|
|
|
//
|
2016-02-06 21:57:12 +00:00
|
|
|
if (LCD_EXTRA_SPACE >= strlen(STRING_SPLASH_LINE2) + 1) {
|
|
|
|
logo_lines(PSTR(" " STRING_SPLASH_LINE2));
|
2016-06-15 16:11:55 +00:00
|
|
|
safe_delay(2000);
|
2016-02-06 21:57:12 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
logo_lines(PSTR(""));
|
2016-04-17 06:50:36 +00:00
|
|
|
CENTER_OR_SCROLL(STRING_SPLASH_LINE2, 2000);
|
2016-02-06 21:57:12 +00:00
|
|
|
}
|
|
|
|
#else
|
2016-04-17 06:50:36 +00:00
|
|
|
//
|
|
|
|
// Show only the Marlin logo
|
|
|
|
//
|
2016-02-06 21:57:12 +00:00
|
|
|
logo_lines(PSTR(""));
|
2016-06-15 16:11:55 +00:00
|
|
|
safe_delay(2000);
|
2015-07-31 14:24:20 +00:00
|
|
|
#endif
|
2016-08-06 23:05:41 +00:00
|
|
|
|
2016-12-20 05:35:25 +00:00
|
|
|
lcd.clear();
|
|
|
|
|
2017-04-26 04:37:28 +00:00
|
|
|
safe_delay(100);
|
2017-04-28 22:36:31 +00:00
|
|
|
|
2016-06-15 16:11:55 +00:00
|
|
|
lcd_set_custom_characters(
|
2016-08-06 23:05:41 +00:00
|
|
|
#if ENABLED(LCD_PROGRESS_BAR)
|
|
|
|
false
|
|
|
|
#endif
|
2016-06-15 16:11:55 +00:00
|
|
|
);
|
2015-07-31 14:24:20 +00:00
|
|
|
}
|
2016-02-06 22:38:11 +00:00
|
|
|
|
2015-07-31 14:24:20 +00:00
|
|
|
#endif // SHOW_BOOTSCREEN
|
2016-02-06 22:38:11 +00:00
|
|
|
|
2016-07-10 02:50:45 +00:00
|
|
|
void lcd_kill_screen() {
|
|
|
|
lcd.setCursor(0, 0);
|
2017-05-28 16:12:12 +00:00
|
|
|
lcd_print_utf(lcd_status_message);
|
2016-07-10 02:50:45 +00:00
|
|
|
#if LCD_HEIGHT < 4
|
|
|
|
lcd.setCursor(0, 2);
|
|
|
|
#else
|
|
|
|
lcd.setCursor(0, 2);
|
|
|
|
lcd_printPGM(PSTR(MSG_HALTED));
|
|
|
|
lcd.setCursor(0, 3);
|
|
|
|
#endif
|
|
|
|
lcd_printPGM(PSTR(MSG_PLEASE_RESET));
|
|
|
|
}
|
|
|
|
|
2016-11-24 06:54:21 +00:00
|
|
|
FORCE_INLINE void _draw_axis_label(const AxisEnum axis, const char* const pstr, const bool blink) {
|
2016-04-19 02:45:55 +00:00
|
|
|
if (blink)
|
|
|
|
lcd_printPGM(pstr);
|
|
|
|
else {
|
|
|
|
if (!axis_homed[axis])
|
2016-09-02 09:09:34 +00:00
|
|
|
lcd.print('?');
|
2016-04-19 02:45:55 +00:00
|
|
|
else {
|
|
|
|
#if DISABLED(DISABLE_REDUCED_ACCURACY_WARNING)
|
|
|
|
if (!axis_known_position[axis])
|
2016-09-02 09:09:34 +00:00
|
|
|
lcd.print(' ');
|
2016-04-19 02:45:55 +00:00
|
|
|
else
|
|
|
|
#endif
|
|
|
|
lcd_printPGM(pstr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-26 18:01:02 +00:00
|
|
|
FORCE_INLINE void _draw_heater_status(const int8_t heater, const char prefix, const bool blink) {
|
|
|
|
const bool isBed = heater < 0;
|
|
|
|
|
2017-05-30 08:20:10 +00:00
|
|
|
const float t1 = (isBed ? thermalManager.degBed() : thermalManager.degHotend(heater)),
|
|
|
|
t2 = (isBed ? thermalManager.degTargetBed() : thermalManager.degTargetHotend(heater));
|
2017-05-26 18:01:02 +00:00
|
|
|
|
|
|
|
if (prefix >= 0) lcd.print(prefix);
|
|
|
|
|
|
|
|
lcd.print(itostr3(t1 + 0.5));
|
|
|
|
lcd.print('/');
|
|
|
|
|
2017-06-12 05:22:31 +00:00
|
|
|
#if HEATER_IDLE_HANDLER
|
2017-05-26 18:01:02 +00:00
|
|
|
const bool is_idle = (!isBed ? thermalManager.is_heater_idle(heater) :
|
2017-05-30 08:20:10 +00:00
|
|
|
#if HAS_TEMP_BED
|
|
|
|
thermalManager.is_bed_idle()
|
|
|
|
#else
|
|
|
|
false
|
|
|
|
#endif
|
2017-05-26 18:01:02 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
if (!blink && is_idle) {
|
|
|
|
lcd.print(' ');
|
|
|
|
if (t2 >= 10) lcd.print(' ');
|
|
|
|
if (t2 >= 100) lcd.print(' ');
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
2017-05-30 08:20:10 +00:00
|
|
|
lcd.print(itostr3left(t2 + 0.5));
|
2017-05-26 18:01:02 +00:00
|
|
|
|
|
|
|
if (prefix >= 0) {
|
2017-06-05 22:02:00 +00:00
|
|
|
lcd.print((char)LCD_DEGREE_CHAR);
|
|
|
|
lcd.print(' ');
|
2017-05-26 18:01:02 +00:00
|
|
|
if (t2 < 10) lcd.print(' ');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-20 05:36:06 +00:00
|
|
|
#if ENABLED(LCD_PROGRESS_BAR)
|
|
|
|
|
|
|
|
inline void lcd_draw_progress_bar(const uint8_t percent) {
|
2017-06-20 03:39:23 +00:00
|
|
|
const int16_t tix = (int16_t)(percent * (LCD_WIDTH) * 3) / 100,
|
2017-06-05 22:41:38 +00:00
|
|
|
cel = tix / 3,
|
|
|
|
rem = tix % 3;
|
|
|
|
uint8_t i = LCD_WIDTH;
|
2016-12-20 05:36:06 +00:00
|
|
|
char msg[LCD_WIDTH + 1], b = ' ';
|
2017-06-05 22:41:38 +00:00
|
|
|
msg[LCD_WIDTH] = '\0';
|
2016-12-20 05:36:06 +00:00
|
|
|
while (i--) {
|
|
|
|
if (i == cel - 1)
|
|
|
|
b = LCD_STR_PROGRESS[2];
|
|
|
|
else if (i == cel && rem != 0)
|
|
|
|
b = LCD_STR_PROGRESS[rem - 1];
|
|
|
|
msg[i] = b;
|
|
|
|
}
|
|
|
|
lcd.print(msg);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // LCD_PROGRESS_BAR
|
|
|
|
|
2016-03-25 06:19:46 +00:00
|
|
|
/**
|
2013-10-20 10:12:35 +00:00
|
|
|
Possible status screens:
|
2015-05-14 05:45:58 +00:00
|
|
|
16x2 |000/000 B000/000|
|
|
|
|
|0123456789012345|
|
2013-10-20 10:12:35 +00:00
|
|
|
|
2015-05-14 05:45:58 +00:00
|
|
|
16x4 |000/000 B000/000|
|
2015-11-03 11:06:05 +00:00
|
|
|
|SD100% Z 000.00|
|
2013-10-20 10:12:35 +00:00
|
|
|
|F100% T--:--|
|
2015-05-14 05:45:58 +00:00
|
|
|
|0123456789012345|
|
2013-10-20 10:12:35 +00:00
|
|
|
|
2015-05-14 05:45:58 +00:00
|
|
|
20x2 |T000/000D B000/000D |
|
|
|
|
|01234567890123456789|
|
2013-10-20 10:12:35 +00:00
|
|
|
|
2015-05-14 05:45:58 +00:00
|
|
|
20x4 |T000/000D B000/000D |
|
2015-11-03 11:06:05 +00:00
|
|
|
|X 000 Y 000 Z 000.00|
|
2013-10-20 10:12:35 +00:00
|
|
|
|F100% SD100% T--:--|
|
2015-05-14 05:45:58 +00:00
|
|
|
|01234567890123456789|
|
2013-10-20 10:12:35 +00:00
|
|
|
|
2015-05-14 05:45:58 +00:00
|
|
|
20x4 |T000/000D B000/000D |
|
2015-11-03 11:06:05 +00:00
|
|
|
|T000/000D Z 000.00|
|
2013-10-20 10:12:35 +00:00
|
|
|
|F100% SD100% T--:--|
|
2015-05-14 05:45:58 +00:00
|
|
|
|01234567890123456789|
|
2013-10-20 10:12:35 +00:00
|
|
|
*/
|
2015-04-08 05:04:10 +00:00
|
|
|
static void lcd_implementation_status_screen() {
|
2017-06-04 22:00:11 +00:00
|
|
|
const bool blink = lcd_blink();
|
2015-05-14 05:45:58 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// Line 1
|
|
|
|
//
|
|
|
|
|
|
|
|
lcd.setCursor(0, 0);
|
2015-04-08 05:04:10 +00:00
|
|
|
|
|
|
|
#if LCD_WIDTH < 20
|
2013-10-20 10:12:35 +00:00
|
|
|
|
2015-05-14 05:45:58 +00:00
|
|
|
//
|
|
|
|
// Hotend 0 Temperature
|
|
|
|
//
|
2017-05-26 18:01:02 +00:00
|
|
|
_draw_heater_status(0, -1, blink);
|
2013-10-20 10:12:35 +00:00
|
|
|
|
2015-05-14 05:45:58 +00:00
|
|
|
//
|
|
|
|
// Hotend 1 or Bed Temperature
|
|
|
|
//
|
2016-05-27 00:43:20 +00:00
|
|
|
#if HOTENDS > 1 || TEMP_SENSOR_BED != 0
|
2015-04-08 05:04:10 +00:00
|
|
|
|
|
|
|
lcd.setCursor(8, 0);
|
2016-05-27 00:43:20 +00:00
|
|
|
#if HOTENDS > 1
|
2017-06-05 22:02:00 +00:00
|
|
|
lcd.print((CHAR)LCD_STR_THERMOMETER[0]);
|
2017-05-26 18:01:02 +00:00
|
|
|
_draw_heater_status(1, -1, blink);
|
2015-05-14 05:45:58 +00:00
|
|
|
#else
|
2017-06-05 22:02:00 +00:00
|
|
|
lcd.print((CHAR)LCD_BEDTEMP_CHAR);
|
2017-05-26 18:01:02 +00:00
|
|
|
_draw_heater_status(-1, -1, blink);
|
2015-04-08 05:04:10 +00:00
|
|
|
#endif
|
|
|
|
|
2016-05-27 00:43:20 +00:00
|
|
|
#endif // HOTENDS > 1 || TEMP_SENSOR_BED != 0
|
2015-04-08 05:04:10 +00:00
|
|
|
|
2015-05-14 05:45:58 +00:00
|
|
|
#else // LCD_WIDTH >= 20
|
2013-10-20 10:12:35 +00:00
|
|
|
|
2015-05-14 05:45:58 +00:00
|
|
|
//
|
|
|
|
// Hotend 0 Temperature
|
|
|
|
//
|
2017-05-26 18:01:02 +00:00
|
|
|
_draw_heater_status(0, LCD_STR_THERMOMETER[0], blink);
|
2015-04-08 05:04:10 +00:00
|
|
|
|
2015-05-14 05:45:58 +00:00
|
|
|
//
|
|
|
|
// Hotend 1 or Bed Temperature
|
|
|
|
//
|
2016-05-27 00:43:20 +00:00
|
|
|
#if HOTENDS > 1 || TEMP_SENSOR_BED != 0
|
2015-04-08 05:04:10 +00:00
|
|
|
lcd.setCursor(10, 0);
|
2016-05-27 00:43:20 +00:00
|
|
|
#if HOTENDS > 1
|
2017-05-26 18:01:02 +00:00
|
|
|
_draw_heater_status(1, LCD_STR_THERMOMETER[0], blink);
|
2015-05-14 05:45:58 +00:00
|
|
|
#else
|
2017-06-05 22:02:00 +00:00
|
|
|
_draw_heater_status(-1, LCD_BEDTEMP_CHAR, blink);
|
2015-04-08 05:04:10 +00:00
|
|
|
#endif
|
|
|
|
|
2017-05-09 17:35:43 +00:00
|
|
|
#endif // HOTENDS > 1 || TEMP_SENSOR_BED != 0
|
2015-04-08 05:04:10 +00:00
|
|
|
|
2015-05-14 05:45:58 +00:00
|
|
|
#endif // LCD_WIDTH >= 20
|
|
|
|
|
|
|
|
//
|
|
|
|
// Line 2
|
|
|
|
//
|
2015-04-08 05:04:10 +00:00
|
|
|
|
|
|
|
#if LCD_HEIGHT > 2
|
2015-05-14 05:45:58 +00:00
|
|
|
|
2015-04-08 05:04:10 +00:00
|
|
|
#if LCD_WIDTH < 20
|
2015-05-14 05:45:58 +00:00
|
|
|
|
2015-07-31 05:26:53 +00:00
|
|
|
#if ENABLED(SDSUPPORT)
|
2015-04-08 05:04:10 +00:00
|
|
|
lcd.setCursor(0, 2);
|
|
|
|
lcd_printPGM(PSTR("SD"));
|
|
|
|
if (IS_SD_PRINTING)
|
|
|
|
lcd.print(itostr3(card.percentDone()));
|
|
|
|
else
|
|
|
|
lcd_printPGM(PSTR("---"));
|
|
|
|
lcd.print('%');
|
|
|
|
#endif // SDSUPPORT
|
|
|
|
|
2015-05-14 05:45:58 +00:00
|
|
|
#else // LCD_WIDTH >= 20
|
|
|
|
|
|
|
|
lcd.setCursor(0, 1);
|
2015-04-08 05:04:10 +00:00
|
|
|
|
2016-05-27 00:43:20 +00:00
|
|
|
#if HOTENDS > 1 && TEMP_SENSOR_BED != 0
|
2015-04-08 05:04:10 +00:00
|
|
|
|
2015-05-14 05:45:58 +00:00
|
|
|
// If we both have a 2nd extruder and a heated bed,
|
|
|
|
// show the heated bed temp on the left,
|
|
|
|
// since the first line is filled with extruder temps
|
2017-06-05 22:02:00 +00:00
|
|
|
_draw_heater_status(-1, LCD_BEDTEMP_CHAR, blink);
|
2015-05-14 05:45:58 +00:00
|
|
|
|
2015-04-08 05:04:10 +00:00
|
|
|
#else
|
2016-02-28 22:13:24 +00:00
|
|
|
// Before homing the axis letters are blinking 'X' <-> '?'.
|
|
|
|
// When axis is homed but axis_known_position is false the axis letters are blinking 'X' <-> ' '.
|
|
|
|
// When everything is ok you see a constant 'X'.
|
|
|
|
|
2016-04-19 02:45:55 +00:00
|
|
|
_draw_axis_label(X_AXIS, PSTR(MSG_X), blink);
|
2016-02-28 22:13:24 +00:00
|
|
|
lcd.print(ftostr4sign(current_position[X_AXIS]));
|
|
|
|
|
2016-09-02 09:09:34 +00:00
|
|
|
lcd.print(' ');
|
2016-04-19 02:45:55 +00:00
|
|
|
|
|
|
|
_draw_axis_label(Y_AXIS, PSTR(MSG_Y), blink);
|
2016-02-28 22:13:24 +00:00
|
|
|
lcd.print(ftostr4sign(current_position[Y_AXIS]));
|
2015-05-14 05:45:58 +00:00
|
|
|
|
2016-05-27 00:43:20 +00:00
|
|
|
#endif // HOTENDS > 1 || TEMP_SENSOR_BED != 0
|
2015-04-08 05:04:10 +00:00
|
|
|
|
2015-05-14 05:45:58 +00:00
|
|
|
#endif // LCD_WIDTH >= 20
|
2015-04-08 05:04:10 +00:00
|
|
|
|
2013-10-20 10:12:35 +00:00
|
|
|
lcd.setCursor(LCD_WIDTH - 8, 1);
|
2016-04-19 02:45:55 +00:00
|
|
|
_draw_axis_label(Z_AXIS, PSTR(MSG_Z), blink);
|
2017-03-31 13:17:10 +00:00
|
|
|
lcd.print(ftostr52sp(FIXFLOAT(current_position[Z_AXIS])));
|
2013-10-20 10:12:35 +00:00
|
|
|
|
2015-04-08 05:04:10 +00:00
|
|
|
#endif // LCD_HEIGHT > 2
|
|
|
|
|
2015-05-14 05:45:58 +00:00
|
|
|
//
|
|
|
|
// Line 3
|
|
|
|
//
|
|
|
|
|
2015-04-08 05:04:10 +00:00
|
|
|
#if LCD_HEIGHT > 3
|
|
|
|
|
2013-10-20 10:12:35 +00:00
|
|
|
lcd.setCursor(0, 2);
|
2017-06-05 22:02:00 +00:00
|
|
|
lcd.print((char)LCD_FEEDRATE_CHAR);
|
2016-07-16 01:49:34 +00:00
|
|
|
lcd.print(itostr3(feedrate_percentage));
|
2013-10-20 10:12:35 +00:00
|
|
|
lcd.print('%');
|
2015-04-08 05:04:10 +00:00
|
|
|
|
2016-11-18 04:17:14 +00:00
|
|
|
#if LCD_WIDTH >= 20 && ENABLED(SDSUPPORT)
|
2015-04-08 05:04:10 +00:00
|
|
|
|
|
|
|
lcd.setCursor(7, 2);
|
|
|
|
lcd_printPGM(PSTR("SD"));
|
|
|
|
if (IS_SD_PRINTING)
|
2013-10-20 10:12:35 +00:00
|
|
|
lcd.print(itostr3(card.percentDone()));
|
2015-04-08 05:04:10 +00:00
|
|
|
else
|
2013-10-20 10:12:35 +00:00
|
|
|
lcd_printPGM(PSTR("---"));
|
2015-04-08 05:04:10 +00:00
|
|
|
lcd.print('%');
|
|
|
|
|
2016-11-18 04:17:14 +00:00
|
|
|
#endif // LCD_WIDTH >= 20 && SDSUPPORT
|
2015-04-08 05:04:10 +00:00
|
|
|
|
2016-07-23 00:42:48 +00:00
|
|
|
char buffer[10];
|
2016-07-24 02:13:35 +00:00
|
|
|
duration_t elapsed = print_job_timer.duration();
|
2016-12-05 03:09:12 +00:00
|
|
|
uint8_t len = elapsed.toDigital(buffer);
|
|
|
|
|
|
|
|
lcd.setCursor(LCD_WIDTH - len - 1, 2);
|
2017-06-05 22:02:00 +00:00
|
|
|
lcd.print((char)LCD_CLOCK_CHAR);
|
2016-07-24 02:13:35 +00:00
|
|
|
lcd_print(buffer);
|
2015-04-08 05:04:10 +00:00
|
|
|
|
|
|
|
#endif // LCD_HEIGHT > 3
|
|
|
|
|
2015-05-14 05:45:58 +00:00
|
|
|
//
|
|
|
|
// Last Line
|
|
|
|
// Status Message (which may be a Progress Bar or Filament display)
|
|
|
|
//
|
2013-10-20 10:12:35 +00:00
|
|
|
|
2014-12-28 06:26:14 +00:00
|
|
|
lcd.setCursor(0, LCD_HEIGHT - 1);
|
|
|
|
|
2015-07-31 05:26:53 +00:00
|
|
|
#if ENABLED(LCD_PROGRESS_BAR)
|
2014-12-28 06:26:14 +00:00
|
|
|
|
2016-12-27 20:38:36 +00:00
|
|
|
// Draw the progress bar if the message has shown long enough
|
|
|
|
// or if there is no message set.
|
2017-05-29 16:52:42 +00:00
|
|
|
if (card.isFileOpen() && (ELAPSED(millis(), progress_bar_ms + PROGRESS_BAR_MSG_TIME) || !lcd_status_message[0])) {
|
|
|
|
const uint8_t percent = card.percentDone();
|
|
|
|
if (percent) return lcd_draw_progress_bar(percent);
|
|
|
|
}
|
2014-12-28 06:26:14 +00:00
|
|
|
|
2016-12-27 20:38:36 +00:00
|
|
|
#elif ENABLED(FILAMENT_LCD_DISPLAY) && ENABLED(SDSUPPORT)
|
2014-12-28 06:26:14 +00:00
|
|
|
|
2015-04-08 05:04:10 +00:00
|
|
|
// Show Filament Diameter and Volumetric Multiplier %
|
|
|
|
// After allowing lcd_status_message to show for 5 seconds
|
2016-04-16 22:50:02 +00:00
|
|
|
if (ELAPSED(millis(), previous_lcd_status_ms + 5000UL)) {
|
2014-12-28 06:26:14 +00:00
|
|
|
lcd_printPGM(PSTR("Dia "));
|
|
|
|
lcd.print(ftostr12ns(filament_width_meas));
|
|
|
|
lcd_printPGM(PSTR(" V"));
|
2015-10-03 06:08:58 +00:00
|
|
|
lcd.print(itostr3(100.0 * volumetric_multiplier[FILAMENT_SENSOR_EXTRUDER_NUM]));
|
2015-10-13 10:51:34 +00:00
|
|
|
lcd.print('%');
|
|
|
|
return;
|
2014-12-28 06:26:14 +00:00
|
|
|
}
|
2015-04-08 05:04:10 +00:00
|
|
|
|
2016-12-27 20:38:36 +00:00
|
|
|
#endif // FILAMENT_LCD_DISPLAY && SDSUPPORT
|
2014-12-28 06:26:14 +00:00
|
|
|
|
2017-05-28 16:12:12 +00:00
|
|
|
#if ENABLED(STATUS_MESSAGE_SCROLLING)
|
2017-06-04 22:00:11 +00:00
|
|
|
static bool last_blink = false;
|
2017-05-28 16:12:12 +00:00
|
|
|
const uint8_t slen = lcd_strlen(lcd_status_message);
|
2017-06-11 01:05:52 +00:00
|
|
|
const char *stat = lcd_status_message + status_scroll_pos;
|
|
|
|
if (slen <= LCD_WIDTH)
|
|
|
|
lcd_print_utf(stat); // The string isn't scrolling
|
|
|
|
else {
|
|
|
|
if (status_scroll_pos <= slen - LCD_WIDTH)
|
|
|
|
lcd_print_utf(stat); // The string fills the screen
|
|
|
|
else {
|
|
|
|
uint8_t chars = LCD_WIDTH;
|
|
|
|
if (status_scroll_pos < slen) { // First string still visible
|
|
|
|
lcd_print_utf(stat); // The string leaves space
|
|
|
|
chars -= slen - status_scroll_pos; // Amount of space left
|
|
|
|
}
|
|
|
|
lcd.print('.'); // Always at 1+ spaces left, draw a dot
|
|
|
|
if (--chars) {
|
|
|
|
if (status_scroll_pos < slen + 1) // Draw a second dot if there's space
|
|
|
|
--chars, lcd.print('.');
|
|
|
|
if (chars) lcd_print_utf(lcd_status_message, chars); // Print a second copy of the message
|
|
|
|
}
|
|
|
|
}
|
2017-06-04 22:00:11 +00:00
|
|
|
if (last_blink != blink) {
|
|
|
|
last_blink = blink;
|
|
|
|
// Skip any non-printing bytes
|
2017-06-11 01:05:52 +00:00
|
|
|
if (status_scroll_pos < slen) while (!PRINTABLE(lcd_status_message[status_scroll_pos])) status_scroll_pos++;
|
|
|
|
if (++status_scroll_pos >= slen + 2) status_scroll_pos = 0;
|
2017-06-04 22:00:11 +00:00
|
|
|
}
|
2017-05-28 16:12:12 +00:00
|
|
|
}
|
|
|
|
#else
|
|
|
|
lcd_print_utf(lcd_status_message);
|
|
|
|
#endif
|
2013-10-20 10:12:35 +00:00
|
|
|
}
|
2015-03-16 05:02:33 +00:00
|
|
|
|
2016-08-20 23:12:57 +00:00
|
|
|
#if ENABLED(ULTIPANEL)
|
|
|
|
|
2017-05-26 18:01:02 +00:00
|
|
|
#if ENABLED(ADVANCED_PAUSE_FEATURE)
|
2017-02-18 05:57:13 +00:00
|
|
|
|
|
|
|
static void lcd_implementation_hotend_status(const uint8_t row) {
|
|
|
|
if (row < LCD_HEIGHT) {
|
|
|
|
lcd.setCursor(LCD_WIDTH - 9, row);
|
2017-05-31 21:26:05 +00:00
|
|
|
_draw_heater_status(active_extruder, LCD_STR_THERMOMETER[0], lcd_blink());
|
2017-02-18 05:57:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-26 18:01:02 +00:00
|
|
|
#endif // ADVANCED_PAUSE_FEATURE
|
2017-02-18 05:57:13 +00:00
|
|
|
|
2016-12-13 05:56:05 +00:00
|
|
|
static void lcd_implementation_drawmenu_static(const uint8_t row, const char* pstr, const bool center=true, const bool invert=false, const char *valstr=NULL) {
|
|
|
|
UNUSED(invert);
|
|
|
|
char c;
|
|
|
|
int8_t n = LCD_WIDTH;
|
|
|
|
lcd.setCursor(0, row);
|
|
|
|
if (center && !valstr) {
|
|
|
|
int8_t pad = (LCD_WIDTH - lcd_strlen_P(pstr)) / 2;
|
|
|
|
while (--pad >= 0) { lcd.print(' '); n--; }
|
2016-08-20 23:12:57 +00:00
|
|
|
}
|
2016-12-13 05:56:05 +00:00
|
|
|
while (n > 0 && (c = pgm_read_byte(pstr))) {
|
|
|
|
n -= charset_mapper(c);
|
|
|
|
pstr++;
|
|
|
|
}
|
|
|
|
if (valstr) while (n > 0 && (c = *valstr)) {
|
|
|
|
n -= charset_mapper(c);
|
|
|
|
valstr++;
|
|
|
|
}
|
|
|
|
while (n-- > 0) lcd.print(' ');
|
|
|
|
}
|
2016-08-20 23:12:57 +00:00
|
|
|
|
2016-11-24 06:54:21 +00:00
|
|
|
static void lcd_implementation_drawmenu_generic(const bool sel, const uint8_t row, const char* pstr, const char pre_char, const char post_char) {
|
2016-07-02 20:57:24 +00:00
|
|
|
char c;
|
2016-08-20 23:12:57 +00:00
|
|
|
uint8_t n = LCD_WIDTH - 2;
|
2016-07-02 20:57:24 +00:00
|
|
|
lcd.setCursor(0, row);
|
2016-08-20 23:12:57 +00:00
|
|
|
lcd.print(sel ? pre_char : ' ');
|
|
|
|
while ((c = pgm_read_byte(pstr)) && n > 0) {
|
2016-09-02 09:09:34 +00:00
|
|
|
n -= charset_mapper(c);
|
2016-07-02 20:57:24 +00:00
|
|
|
pstr++;
|
|
|
|
}
|
2016-08-20 23:12:57 +00:00
|
|
|
while (n--) lcd.print(' ');
|
|
|
|
lcd.print(post_char);
|
2015-03-16 05:02:33 +00:00
|
|
|
}
|
2015-03-20 12:08:18 +00:00
|
|
|
|
2016-11-24 06:54:21 +00:00
|
|
|
static void lcd_implementation_drawmenu_setting_edit_generic(const bool sel, const uint8_t row, const char* pstr, const char pre_char, const char* const data) {
|
2016-08-20 23:12:57 +00:00
|
|
|
char c;
|
|
|
|
uint8_t n = LCD_WIDTH - 2 - lcd_strlen(data);
|
|
|
|
lcd.setCursor(0, row);
|
|
|
|
lcd.print(sel ? pre_char : ' ');
|
|
|
|
while ((c = pgm_read_byte(pstr)) && n > 0) {
|
2016-09-02 09:09:34 +00:00
|
|
|
n -= charset_mapper(c);
|
2016-08-20 23:12:57 +00:00
|
|
|
pstr++;
|
|
|
|
}
|
2016-04-01 21:10:04 +00:00
|
|
|
lcd.print(':');
|
2016-08-20 23:12:57 +00:00
|
|
|
while (n--) lcd.print(' ');
|
|
|
|
lcd_print(data);
|
2016-04-01 21:10:04 +00:00
|
|
|
}
|
2016-11-24 06:54:21 +00:00
|
|
|
static void lcd_implementation_drawmenu_setting_edit_generic_P(const bool sel, const uint8_t row, const char* pstr, const char pre_char, const char* const data) {
|
2015-09-11 09:18:42 +00:00
|
|
|
char c;
|
2016-08-20 23:12:57 +00:00
|
|
|
uint8_t n = LCD_WIDTH - 2 - lcd_strlen_P(data);
|
2015-09-11 09:18:42 +00:00
|
|
|
lcd.setCursor(0, row);
|
2016-08-20 23:12:57 +00:00
|
|
|
lcd.print(sel ? pre_char : ' ');
|
|
|
|
while ((c = pgm_read_byte(pstr)) && n > 0) {
|
2016-09-02 09:09:34 +00:00
|
|
|
n -= charset_mapper(c);
|
2016-08-20 23:12:57 +00:00
|
|
|
pstr++;
|
2015-09-11 09:18:42 +00:00
|
|
|
}
|
2016-08-20 23:12:57 +00:00
|
|
|
lcd.print(':');
|
2015-09-11 09:18:42 +00:00
|
|
|
while (n--) lcd.print(' ');
|
2016-08-20 23:12:57 +00:00
|
|
|
lcd_printPGM(data);
|
2015-03-16 05:02:33 +00:00
|
|
|
}
|
2015-09-11 09:18:42 +00:00
|
|
|
|
2017-04-16 03:18:10 +00:00
|
|
|
#define DEFINE_LCD_IMPLEMENTATION_DRAWMENU_SETTING_EDIT_TYPE(_type, _name, _strFunc) \
|
|
|
|
inline void lcd_implementation_drawmenu_setting_edit_ ## _name (const bool sel, const uint8_t row, const char* pstr, const char* pstr2, _type * const data, ...) { \
|
|
|
|
lcd_implementation_drawmenu_setting_edit_generic(sel, row, pstr, '>', _strFunc(*(data))); \
|
|
|
|
} \
|
|
|
|
inline void lcd_implementation_drawmenu_setting_edit_callback_ ## _name (const bool sel, const uint8_t row, const char* pstr, const char* pstr2, _type * const data, ...) { \
|
|
|
|
lcd_implementation_drawmenu_setting_edit_generic(sel, row, pstr, '>', _strFunc(*(data))); \
|
|
|
|
} \
|
|
|
|
inline void lcd_implementation_drawmenu_setting_edit_accessor_ ## _name (const bool sel, const uint8_t row, const char* pstr, const char* pstr2, _type (*pget)(), void (*pset)(_type), ...) { \
|
|
|
|
lcd_implementation_drawmenu_setting_edit_generic(sel, row, pstr, '>', _strFunc(pget())); \
|
|
|
|
} \
|
|
|
|
typedef void _name##_void
|
|
|
|
|
2017-06-20 03:39:23 +00:00
|
|
|
DEFINE_LCD_IMPLEMENTATION_DRAWMENU_SETTING_EDIT_TYPE(int16_t, int3, itostr3);
|
2017-06-14 02:42:40 +00:00
|
|
|
DEFINE_LCD_IMPLEMENTATION_DRAWMENU_SETTING_EDIT_TYPE(uint8_t, int8, i8tostr3);
|
2017-04-16 03:18:10 +00:00
|
|
|
DEFINE_LCD_IMPLEMENTATION_DRAWMENU_SETTING_EDIT_TYPE(float, float3, ftostr3);
|
|
|
|
DEFINE_LCD_IMPLEMENTATION_DRAWMENU_SETTING_EDIT_TYPE(float, float32, ftostr32);
|
|
|
|
DEFINE_LCD_IMPLEMENTATION_DRAWMENU_SETTING_EDIT_TYPE(float, float43, ftostr43sign);
|
|
|
|
DEFINE_LCD_IMPLEMENTATION_DRAWMENU_SETTING_EDIT_TYPE(float, float5, ftostr5rj);
|
|
|
|
DEFINE_LCD_IMPLEMENTATION_DRAWMENU_SETTING_EDIT_TYPE(float, float51, ftostr51sign);
|
|
|
|
DEFINE_LCD_IMPLEMENTATION_DRAWMENU_SETTING_EDIT_TYPE(float, float52, ftostr52sign);
|
|
|
|
DEFINE_LCD_IMPLEMENTATION_DRAWMENU_SETTING_EDIT_TYPE(float, float62, ftostr62rj);
|
2017-06-20 03:39:23 +00:00
|
|
|
DEFINE_LCD_IMPLEMENTATION_DRAWMENU_SETTING_EDIT_TYPE(uint32_t, long5, ftostr5rj);
|
2016-08-20 23:12:57 +00:00
|
|
|
|
2017-04-16 03:18:10 +00:00
|
|
|
#define lcd_implementation_drawmenu_setting_edit_bool(sel, row, pstr, pstr2, data) lcd_implementation_drawmenu_setting_edit_generic_P(sel, row, pstr, '>', (*(data))?PSTR(MSG_ON):PSTR(MSG_OFF))
|
2016-08-20 23:12:57 +00:00
|
|
|
#define lcd_implementation_drawmenu_setting_edit_callback_bool(sel, row, pstr, pstr2, data, callback) lcd_implementation_drawmenu_setting_edit_generic_P(sel, row, pstr, '>', (*(data))?PSTR(MSG_ON):PSTR(MSG_OFF))
|
2017-04-16 03:18:10 +00:00
|
|
|
#define lcd_implementation_drawmenu_setting_edit_accessor_bool(sel, row, pstr, pstr2, pget, pset, callback) lcd_implementation_drawmenu_setting_edit_generic_P(sel, row, pstr, '>', (*(data))?PSTR(MSG_ON):PSTR(MSG_OFF))
|
2016-08-20 23:12:57 +00:00
|
|
|
|
2016-11-24 06:54:21 +00:00
|
|
|
void lcd_implementation_drawedit(const char* pstr, const char* const value=NULL) {
|
2016-08-20 23:12:57 +00:00
|
|
|
lcd.setCursor(1, 1);
|
|
|
|
lcd_printPGM(pstr);
|
|
|
|
if (value != NULL) {
|
|
|
|
lcd.print(':');
|
2017-06-20 02:53:06 +00:00
|
|
|
const uint8_t valrow = (lcd_strlen_P(pstr) + 1 + lcd_strlen(value) + 1) > (LCD_WIDTH - 2) ? 2 : 1; // Value on the next row if it won't fit
|
|
|
|
lcd.setCursor((LCD_WIDTH - 1) - (lcd_strlen(value) + 1), valrow); // Right-justified, padded by spaces
|
|
|
|
lcd.print(' '); // overwrite char if value gets shorter
|
2016-08-20 23:12:57 +00:00
|
|
|
lcd_print(value);
|
|
|
|
}
|
2015-03-16 05:02:33 +00:00
|
|
|
}
|
|
|
|
|
2016-08-20 23:12:57 +00:00
|
|
|
#if ENABLED(SDSUPPORT)
|
|
|
|
|
2016-11-24 06:54:21 +00:00
|
|
|
static void lcd_implementation_drawmenu_sd(const bool sel, const uint8_t row, const char* const pstr, const char* filename, char* const longFilename, const uint8_t concat, const char post_char) {
|
2016-08-20 23:12:57 +00:00
|
|
|
UNUSED(pstr);
|
|
|
|
char c;
|
|
|
|
uint8_t n = LCD_WIDTH - concat;
|
|
|
|
lcd.setCursor(0, row);
|
|
|
|
lcd.print(sel ? '>' : ' ');
|
|
|
|
if (longFilename[0]) {
|
|
|
|
filename = longFilename;
|
|
|
|
longFilename[n] = '\0';
|
|
|
|
}
|
|
|
|
while ((c = *filename) && n > 0) {
|
2016-09-02 09:09:34 +00:00
|
|
|
n -= charset_mapper(c);
|
2016-08-20 23:12:57 +00:00
|
|
|
filename++;
|
|
|
|
}
|
|
|
|
while (n--) lcd.print(' ');
|
|
|
|
lcd.print(post_char);
|
|
|
|
}
|
|
|
|
|
2016-11-24 06:54:21 +00:00
|
|
|
static void lcd_implementation_drawmenu_sdfile(const bool sel, const uint8_t row, const char* pstr, const char* filename, char* const longFilename) {
|
2016-08-20 23:12:57 +00:00
|
|
|
lcd_implementation_drawmenu_sd(sel, row, pstr, filename, longFilename, 2, ' ');
|
|
|
|
}
|
|
|
|
|
2016-11-24 06:54:21 +00:00
|
|
|
static void lcd_implementation_drawmenu_sddirectory(const bool sel, const uint8_t row, const char* pstr, const char* filename, char* const longFilename) {
|
2016-08-20 23:12:57 +00:00
|
|
|
lcd_implementation_drawmenu_sd(sel, row, pstr, filename, longFilename, 2, LCD_STR_FOLDER[0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // SDSUPPORT
|
|
|
|
|
2017-06-15 20:10:45 +00:00
|
|
|
#define lcd_implementation_drawmenu_back(sel, row, pstr, dummy) lcd_implementation_drawmenu_generic(sel, row, pstr, LCD_UPLEVEL_CHAR, LCD_UPLEVEL_CHAR)
|
2016-08-20 23:12:57 +00:00
|
|
|
#define lcd_implementation_drawmenu_submenu(sel, row, pstr, data) lcd_implementation_drawmenu_generic(sel, row, pstr, '>', LCD_STR_ARROW_RIGHT[0])
|
|
|
|
#define lcd_implementation_drawmenu_gcode(sel, row, pstr, gcode) lcd_implementation_drawmenu_generic(sel, row, pstr, '>', ' ')
|
|
|
|
#define lcd_implementation_drawmenu_function(sel, row, pstr, data) lcd_implementation_drawmenu_generic(sel, row, pstr, '>', ' ')
|
2015-03-20 12:08:18 +00:00
|
|
|
|
2016-08-20 23:12:57 +00:00
|
|
|
#if ENABLED(LCD_HAS_SLOW_BUTTONS)
|
2015-03-20 12:08:18 +00:00
|
|
|
|
2016-08-20 23:12:57 +00:00
|
|
|
extern millis_t next_button_update_ms;
|
|
|
|
|
|
|
|
static uint8_t lcd_implementation_read_slow_buttons() {
|
|
|
|
#if ENABLED(LCD_I2C_TYPE_MCP23017)
|
|
|
|
// Reading these buttons this is likely to be too slow to call inside interrupt context
|
|
|
|
// so they are called during normal lcd_update
|
|
|
|
uint8_t slow_bits = lcd.readButtons() << B_I2C_BTN_OFFSET;
|
|
|
|
#if ENABLED(LCD_I2C_VIKI)
|
|
|
|
if ((slow_bits & (B_MI | B_RI)) && PENDING(millis(), next_button_update_ms)) // LCD clicked
|
|
|
|
slow_bits &= ~(B_MI | B_RI); // Disable LCD clicked buttons if screen is updated
|
|
|
|
#endif // LCD_I2C_VIKI
|
|
|
|
return slow_bits;
|
|
|
|
#endif // LCD_I2C_TYPE_MCP23017
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // LCD_HAS_SLOW_BUTTONS
|
|
|
|
|
|
|
|
#endif // ULTIPANEL
|
2013-10-20 10:12:35 +00:00
|
|
|
|
2015-07-31 05:26:53 +00:00
|
|
|
#if ENABLED(LCD_HAS_STATUS_INDICATORS)
|
2015-04-13 01:07:08 +00:00
|
|
|
|
|
|
|
static void lcd_implementation_update_indicators() {
|
2015-11-13 13:04:48 +00:00
|
|
|
// Set the LEDS - referred to as backlights by the LiquidTWI2 library
|
|
|
|
static uint8_t ledsprev = 0;
|
|
|
|
uint8_t leds = 0;
|
2016-03-06 02:27:45 +00:00
|
|
|
|
2016-04-29 01:18:13 +00:00
|
|
|
if (thermalManager.degTargetBed() > 0) leds |= LED_A;
|
2016-03-06 02:27:45 +00:00
|
|
|
|
2016-04-29 01:18:13 +00:00
|
|
|
if (thermalManager.degTargetHotend(0) > 0) leds |= LED_B;
|
2016-03-06 02:27:45 +00:00
|
|
|
|
|
|
|
#if FAN_COUNT > 0
|
|
|
|
if (0
|
|
|
|
#if HAS_FAN0
|
|
|
|
|| fanSpeeds[0]
|
|
|
|
#endif
|
|
|
|
#if HAS_FAN1
|
|
|
|
|| fanSpeeds[1]
|
|
|
|
#endif
|
|
|
|
#if HAS_FAN2
|
|
|
|
|| fanSpeeds[2]
|
|
|
|
#endif
|
|
|
|
) leds |= LED_C;
|
|
|
|
#endif // FAN_COUNT > 0
|
|
|
|
|
2016-05-27 00:43:20 +00:00
|
|
|
#if HOTENDS > 1
|
2016-04-29 01:18:13 +00:00
|
|
|
if (thermalManager.degTargetHotend(1) > 0) leds |= LED_C;
|
2013-10-20 10:12:35 +00:00
|
|
|
#endif
|
2016-03-06 02:27:45 +00:00
|
|
|
|
2015-11-13 13:04:48 +00:00
|
|
|
if (leds != ledsprev) {
|
|
|
|
lcd.setBacklight(leds);
|
|
|
|
ledsprev = leds;
|
|
|
|
}
|
2016-03-06 02:27:45 +00:00
|
|
|
|
2015-04-13 01:07:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // LCD_HAS_STATUS_INDICATORS
|
2013-10-20 10:12:35 +00:00
|
|
|
|
2017-06-12 23:26:49 +00:00
|
|
|
#ifdef AUTO_BED_LEVELING_UBL
|
2017-06-21 20:26:59 +00:00
|
|
|
|
|
|
|
// These are just basic data for the 20x4 LCD work that
|
|
|
|
// is coming up very soon.
|
|
|
|
// Soon this will morph into a map code.
|
|
|
|
|
|
|
|
void _lcd_ubl_plot_HD44780(uint8_t x_plot, uint8_t y_plot) {
|
|
|
|
|
|
|
|
uint8_t lcd_w_pos = 8, lcd_h_pos = 1;
|
|
|
|
|
|
|
|
#if LCD_WIDTH < 20
|
|
|
|
lcd_w_pos = 8;
|
|
|
|
#else
|
|
|
|
lcd_w_pos = 12;
|
|
|
|
#endif
|
|
|
|
#if LCD_HEIGHT > 3
|
|
|
|
lcd_h_pos = 3;
|
|
|
|
#elif LCD_HEIGHT > 2
|
|
|
|
lcd_h_pos = 2;
|
|
|
|
#else
|
|
|
|
lcd_h_pos = 1;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Show X and Y positions at top of screen
|
|
|
|
lcd.setCursor(0, 0);
|
|
|
|
#if LCD_WIDTH < 20
|
|
|
|
lcd.print("X");
|
|
|
|
#else
|
|
|
|
lcd.print("X:");
|
|
|
|
#endif
|
|
|
|
lcd.print(ftostr32(LOGICAL_X_POSITION(pgm_read_float(&ubl._mesh_index_to_xpos[x_plot]))));
|
|
|
|
lcd.setCursor(lcd_w_pos, 0);
|
|
|
|
#if LCD_WIDTH < 20
|
|
|
|
lcd.print("Y");
|
|
|
|
#else
|
|
|
|
lcd.print("Y:");
|
|
|
|
#endif
|
|
|
|
lcd.print(ftostr32(LOGICAL_Y_POSITION(pgm_read_float(&ubl._mesh_index_to_ypos[y_plot]))));
|
|
|
|
|
|
|
|
// Print plot position
|
|
|
|
lcd.setCursor(0, lcd_h_pos);
|
|
|
|
lcd.print("(");
|
|
|
|
lcd.print(x_plot);
|
|
|
|
lcd.print(",");
|
|
|
|
lcd.print(y_plot);
|
|
|
|
lcd.print(")");
|
|
|
|
|
|
|
|
// Show the location value
|
|
|
|
lcd.setCursor(lcd_w_pos, lcd_h_pos);
|
|
|
|
#if LCD_WIDTH < 20
|
|
|
|
lcd.print("Z");
|
|
|
|
#else
|
|
|
|
lcd.print("Z:");
|
|
|
|
#endif
|
|
|
|
if (!isnan(ubl.z_values[x_plot][y_plot])) {
|
|
|
|
lcd.print(ftostr43sign(ubl.z_values[x_plot][y_plot]));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
lcd.print(" -----");
|
|
|
|
}
|
2017-06-12 23:26:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // AUTO_BED_LEVELING_UBL
|
|
|
|
|
2016-07-20 03:10:16 +00:00
|
|
|
#endif // ULTRALCD_IMPL_HD44780_H
|