Skip to content

Commit

Permalink
tweak, no "err°", HD44780
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkyhead committed Feb 12, 2023
1 parent c3f38f4 commit 2427499
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 9 deletions.
14 changes: 12 additions & 2 deletions Marlin/src/lcd/HD44780/marlinui_HD44780.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -537,7 +537,7 @@ FORCE_INLINE void _draw_axis_value(const AxisEnum axis, const char *value, const
*/
FORCE_INLINE void _draw_heater_status(const heater_id_t heater_id, const char prefix, const bool blink) {
#if HAS_HEATED_BED
const bool isBed = TERN(HAS_HEATED_CHAMBER, heater_id == H_BED, heater_id < 0);
const bool isBed = heater_id == H_BED;
const celsius_t t1 = (isBed ? thermalManager.wholeDegBed() : thermalManager.wholeDegHotend(heater_id)),
t2 = (isBed ? thermalManager.degTargetBed() : thermalManager.degTargetHotend(heater_id));
#else
Expand All @@ -546,7 +546,17 @@ FORCE_INLINE void _draw_heater_status(const heater_id_t heater_id, const char pr

if (prefix >= 0) lcd_put_lchar(prefix);

lcd_put_u8str(t1 < 0 ? "err" : i16tostr3rj(t1));
if (t1 < 0) {
#if ENABLED(SHOW_TEMPERATURE_BELOW_ZERO)
char * const str = i16tostr3rj(t1);
lcd_put_u8str(&str[1]);
#else
lcd_put_u8str(F("err"));
#endif
}
else
lcd_put_u8str(ui16tostr3rj(t1));

lcd_put_u8str(F("/"));

#if !HEATER_IDLE_HANDLER
Expand Down
22 changes: 15 additions & 7 deletions Marlin/src/lcd/dogm/status_screen_DOGM.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -194,16 +194,24 @@
FORCE_INLINE void _draw_centered_temp(const celsius_t temp, const uint8_t tx, const uint8_t ty) {
const char *str;
uint8_t len;
if (temp > 0) {
str = i16tostr3rj(temp);
len = str[0] != ' ' ? 3 : str[1] != ' ' ? 2 : 1;
if (temp < 0) {
#if ENABLED(SHOW_TEMPERATURE_BELOW_ZERO)
str = i16tostr3left((-temp) % 100);
len = strlen(str) + 1;
lcd_moveto(tx + 1 - len * (INFO_FONT_WIDTH) / 2, ty);
lcd_put_lchar('-');
#else
lcd_put_u8str(tx + 1 - 3 * (INFO_FONT_WIDTH) / 2, ty, F("err"));
return;
#endif
}
else {
str = "err";
len = 3;
str = i16tostr3left(temp);
len = strlen(str);
lcd_moveto(tx + 1 - len * (INFO_FONT_WIDTH) / 2, ty);
}
lcd_put_u8str(tx - len * (INFO_FONT_WIDTH) / 2 + 1, ty, &str[3-len]);
if (temp > 0) lcd_put_lchar(LCD_STR_DEGREE[0]);
lcd_put_u8str(str);
lcd_put_lchar(LCD_STR_DEGREE[0]);
}

#if DO_DRAW_FLOWMETER
Expand Down

0 comments on commit 2427499

Please sign in to comment.