🚸 Fix MKS LVGL UI temperature set interface (#22848)

This commit is contained in:
Sola
2021-09-28 03:08:29 +08:00
committed by GitHub
parent 228eb9c404
commit 5dce8d0a84
2 changed files with 6 additions and 9 deletions

View File

@@ -124,24 +124,20 @@ static void event_handler(lv_obj_t *obj, lv_event_t event) {
else if (uiCfg.extruderIndex == 0) {
uiCfg.curTempType = TERN(HAS_HEATED_BED, 1, 0);
}
lv_obj_del(btn_pla);
lv_obj_del(btn_abs);
}
else if (uiCfg.curTempType == 1) {
uiCfg.extruderIndex = 0;
uiCfg.curTempType = 0;
lv_obj_del(buttonAdd);
lv_obj_del(buttonDec);
disp_add_dec();
disp_ext_heart();
}
disp_temp_type();
break;
case ID_P_STEP:
switch (uiCfg.stepHeat) {
case 1: uiCfg.stepHeat = 5; break;
case 5: uiCfg.stepHeat = 10; break;
case 10: uiCfg.stepHeat = 1; break;
default: break;
}
disp_step_heat();
break;
case ID_P_OFF:
if (uiCfg.curTempType == 0) {
thermalManager.setTargetHotend(0, uiCfg.extruderIndex);

View File

@@ -98,6 +98,7 @@ void disp_det_ok() {
lv_obj_set_style(det_info, &det_style);
lv_label_set_text(det_info, "det:ok");
}
void disp_det_error() {
det_style.text.color.full = 0xF800;
lv_obj_set_style(det_info, &det_style);