123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- /**
- * Marlin 3D Printer Firmware
- * Copyright (c) 2021 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 <https://www.gnu.org/licenses/>.
- *
- */
-
- /**
- * Lock screen implementation for DWIN UI Enhanced implementation
- * Author: Miguel A. Risco-Castillo (MRISCOC)
- * Version: 2.1
- * Date: 2021/11/09
- *
- * Based on the original code provided by Creality under GPL
- */
-
- #include "../../../inc/MarlinConfigPre.h"
-
- #if ENABLED(DWIN_CREALITY_LCD_ENHANCED)
-
- #include "../../../core/types.h"
- #include "dwin_lcd.h"
- #include "dwinui.h"
- #include "dwin.h"
- #include "lockscreen.h"
-
- LockScreenClass lockScreen;
-
- uint8_t LockScreenClass::lock_pos = 0;
- bool LockScreenClass::unlocked = false;
- uint8_t LockScreenClass::rprocess = 0;
-
- void LockScreenClass::init() {
- lock_pos = 0;
- unlocked = false;
- draw();
- }
-
- void LockScreenClass::draw() {
- Title.SetCaption(PSTR("Lock Screen"));
- DWINUI::ClearMenuArea();
- DWINUI::Draw_Icon(ICON_LOGO, 71, 120); // CREALITY logo
- DWINUI::Draw_CenteredString(Color_White, 180, F("Printer is Locked,"));
- DWINUI::Draw_CenteredString(Color_White, 200, F("Scroll to unlock."));
- DWINUI::Draw_CenteredString(Color_White, 240, F("-> | <-"));
- DWIN_Draw_Box(1, HMI_data.Barfill_Color, 0, 260, DWIN_WIDTH, 20);
- DWIN_Draw_VLine(Color_Yellow, lock_pos * DWIN_WIDTH / 255, 260, 20);
- DWIN_UpdateLCD();
- }
-
- void LockScreenClass::onEncoder(EncoderState encoder_diffState) {
- switch (encoder_diffState) {
- case ENCODER_DIFF_CW: lock_pos += 8; break;
- case ENCODER_DIFF_CCW: lock_pos -= 8; break;
- case ENCODER_DIFF_ENTER: unlocked = (lock_pos == 128); break;
- default: break;
- }
- DWIN_Draw_Box(1, HMI_data.Barfill_Color, 0, 260, DWIN_WIDTH, 20);
- DWIN_Draw_VLine(Color_Yellow, lock_pos * DWIN_WIDTH / 255, 260, 20);
- DWIN_UpdateLCD();
- }
-
- #endif // DWIN_CREALITY_LCD_ENHANCED
|