/** * Marlin 3D Printer Firmware * Copyright (c) 2020 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 . * */ #pragma once /******************************************************************************** * @file dwin_lcd.h * @author LEO / Creality3D * @date 2019/07/18 * @version 2.0.1 * @brief 迪文屏控制操作函数 ********************************************************************************/ #include #define RECEIVED_NO_DATA 0x00 #define RECEIVED_SHAKE_HAND_ACK 0x01 #define FHONE 0xAA #define DWIN_SCROLL_UP 2 #define DWIN_SCROLL_DOWN 3 #define DWIN_WIDTH 272 #define DWIN_HEIGHT 480 // Character matrix width x height //#define LCD_WIDTH ((DWIN_WIDTH) / 8) //#define LCD_HEIGHT ((DWIN_HEIGHT) / 12) // Picture ID #define DWIN_Boot_Screen 0 #define Language_English 1 #define Language_Chinese 2 // ICON ID #define ICON 0x09 #define ICON_LOGO 0 #define ICON_Print_0 1 #define ICON_Print_1 2 #define ICON_Prepare_0 3 #define ICON_Prepare_1 4 #define ICON_Control_0 5 #define ICON_Control_1 6 #define ICON_Leveling_0 7 #define ICON_Leveling_1 8 #define ICON_HotendTemp 9 #define ICON_BedTemp 10 #define ICON_Speed 11 #define ICON_Zoffset 12 #define ICON_Back 13 #define ICON_File 14 #define ICON_PrintTime 15 #define ICON_RemainTime 16 #define ICON_Setup_0 17 #define ICON_Setup_1 18 #define ICON_Pause_0 19 #define ICON_Pause_1 20 #define ICON_Continue_0 21 #define ICON_Continue_1 22 #define ICON_Stop_0 23 #define ICON_Stop_1 24 #define ICON_Bar 25 #define ICON_More 26 #define ICON_Axis 27 #define ICON_CloseMotor 28 #define ICON_Homing 29 #define ICON_SetHome 30 #define ICON_PLAPreheat 31 #define ICON_ABSPreheat 32 #define ICON_Cool 33 #define ICON_Language 34 #define ICON_MoveX 35 #define ICON_MoveY 36 #define ICON_MoveZ 37 #define ICON_Extruder 38 #define ICON_Temperature 40 #define ICON_Motion 41 #define ICON_WriteEEPROM 42 #define ICON_ReadEEPROM 43 #define ICON_ResumeEEPROM 44 #define ICON_Info 45 #define ICON_SetEndTemp 46 #define ICON_SetBedTemp 47 #define ICON_FanSpeed 48 #define ICON_SetPLAPreheat 49 #define ICON_SetABSPreheat 50 #define ICON_MaxSpeed 51 #define ICON_MaxAccelerated 52 #define ICON_MaxJerk 53 #define ICON_Step 54 #define ICON_PrintSize 55 #define ICON_Version 56 #define ICON_Contact 57 #define ICON_StockConfiguraton 58 #define ICON_MaxSpeedX 59 #define ICON_MaxSpeedY 60 #define ICON_MaxSpeedZ 61 #define ICON_MaxSpeedE 62 #define ICON_MaxAccX 63 #define ICON_MaxAccY 64 #define ICON_MaxAccZ 65 #define ICON_MaxAccE 66 #define ICON_MaxSpeedJerkX 67 #define ICON_MaxSpeedJerkY 68 #define ICON_MaxSpeedJerkZ 69 #define ICON_MaxSpeedJerkE 70 #define ICON_StepX 71 #define ICON_StepY 72 #define ICON_StepZ 73 #define ICON_StepE 74 #define ICON_Setspeed 75 #define ICON_SetZOffset 76 #define ICON_Rectangle 77 #define ICON_BLTouch 78 #define ICON_TempTooLow 79 #define ICON_AutoLeveling 80 #define ICON_TempTooHigh 81 #define ICON_NoTips_C 82 #define ICON_NoTips_E 83 #define ICON_Continue_C 84 #define ICON_Continue_E 85 #define ICON_Cancel_C 86 #define ICON_Cancel_E 87 #define ICON_Confirm_C 88 #define ICON_Confirm_E 89 #define ICON_Info_0 90 #define ICON_Info_1 91 #define ICON_AdvSet ICON_Language #define ICON_HomeOff ICON_AdvSet #define ICON_HomeOffX ICON_StepX #define ICON_HomeOffY ICON_StepY #define ICON_HomeOffZ ICON_StepZ #define ICON_ProbeOff ICON_AdvSet #define ICON_ProbeOffX ICON_StepX #define ICON_ProbeOffY ICON_StepY #define ICON_PIDNozzle ICON_SetEndTemp #define ICON_PIDbed ICON_SetBedTemp /** * 3-.0:The font size, 0x00-0x09, corresponds to the font size below: * 0x00=6*12 0x01=8*16 0x02=10*20 0x03=12*24 0x04=14*28 * 0x05=16*32 0x06=20*40 0x07=24*48 0x08=28*56 0x09=32*64 */ #define font6x12 0x00 #define font8x16 0x01 #define font10x20 0x02 #define font12x24 0x03 #define font14x28 0x04 #define font16x32 0x05 #define font20x40 0x06 #define font24x48 0x07 #define font28x56 0x08 #define font32x64 0x09 #define DWIN_FONT_MENU font10x20 #define DWIN_FONT_STAT font10x20 #define DWIN_FONT_HEAD font10x20 #define DWIN_FONT_ALERT font14x28 // Color #define Color_White 0xFFFF #define Color_Yellow 0xFF0F #define Color_Error_Red 0xB000 // Error! #define Color_Bg_Red 0xF00F // Red background color #define Color_Bg_Window 0x31E8 // Popup background color #define Color_Bg_Blue 0x1125 // Dark blue background color #define Color_Bg_Black 0x0841 // Black background color #define Color_IconBlue 0x45FA // Lighter blue that matches icons/accents #define Popup_Text_Color 0xD6BA // Popup font background color #define Line_Color 0x3A6A // Split line color #define Rectangle_Color 0xEE2F // Blue square cursor color #define Percent_Color 0xFE29 // Percentage color #define BarFill_Color 0x10E4 // Fill color of progress bar #define Select_Color 0x33BB // Selected color /*-------------------------------------- System variable function --------------------------------------*/ // Handshake (1: Success, 0: Fail) bool DWIN_Handshake(void); // Common DWIN startup void DWIN_Startup(void); // Set the backlight luminance // luminance: (0x00-0xFF) void DWIN_Backlight_SetLuminance(const uint8_t luminance); // Set screen display direction // dir: 0=0°, 1=90°, 2=180°, 3=270° void DWIN_Frame_SetDir(uint8_t dir); // Update display void DWIN_UpdateLCD(void); /*---------------------------------------- Drawing functions ----------------------------------------*/ // Clear screen // color: Clear screen color void DWIN_Frame_Clear(const uint16_t color); // Draw a point // color: point color // width: point width 0x01-0x0F // height: point height 0x01-0x0F // x,y: upper left point void DWIN_Draw_Point(uint16_t color, uint8_t width, uint8_t height, uint16_t x, uint16_t y); // Draw a line // color: Line segment color // xStart/yStart: Start point // xEnd/yEnd: End point void DWIN_Draw_Line(uint16_t color, uint16_t xStart, uint16_t yStart, uint16_t xEnd, uint16_t yEnd); // Draw a Horizontal line // color: Line segment color // xStart/yStart: Start point // xLength: Line Length inline void DWIN_Draw_HLine(uint16_t color, uint16_t xStart, uint16_t yStart, uint16_t xLength) { DWIN_Draw_Line(color, xStart, yStart, xStart + xLength - 1, yStart); } // Draw a Vertical line // color: Line segment color // xStart/yStart: Start point // yLength: Line Length inline void DWIN_Draw_VLine(uint16_t color, uint16_t xStart, uint16_t yStart, uint16_t yLength) { DWIN_Draw_Line(color, xStart, yStart, xStart, yStart + yLength - 1); } // Draw a rectangle // mode: 0=frame, 1=fill, 2=XOR fill // color: Rectangle color // xStart/yStart: upper left point // xEnd/yEnd: lower right point void DWIN_Draw_Rectangle(uint8_t mode, uint16_t color, uint16_t xStart, uint16_t yStart, uint16_t xEnd, uint16_t yEnd); // Draw a box // mode: 0=frame, 1=fill, 2=XOR fill // color: Rectangle color // xStart/yStart: upper left point // xSize/ySize: box size inline void DWIN_Draw_Box(uint8_t mode, uint16_t color, uint16_t xStart, uint16_t yStart, uint16_t xSize, uint16_t ySize) { DWIN_Draw_Rectangle(mode, color, xStart, yStart, xStart + xSize - 1, yStart + ySize - 1); } // Move a screen area // mode: 0, circle shift; 1, translation // dir: 0=left, 1=right, 2=up, 3=down // dis: Distance // color: Fill color // xStart/yStart: upper left point // xEnd/yEnd: bottom right point void DWIN_Frame_AreaMove(uint8_t mode, uint8_t dir, uint16_t dis, uint16_t color, uint16_t xStart, uint16_t yStart, uint16_t xEnd, uint16_t yEnd); /*---------------------------------------- Text related functions ----------------------------------------*/ // Draw a string // bShow: true=display background color; false=don't display background color // size: Font size // color: Character color // bColor: Background color // x/y: Upper-left coordinate of the string // *string: The string void DWIN_Draw_String(bool bShow, uint8_t size, uint16_t color, uint16_t bColor, uint16_t x, uint16_t y, char *string); class __FlashStringHelper; inline void DWIN_Draw_String(bool bShow, uint8_t size, uint16_t color, uint16_t bColor, uint16_t x, uint16_t y, const __FlashStringHelper *title) { DWIN_Draw_String(bShow, size, color, bColor, x, y, (char *)title); } // Draw a positive integer // bShow: true=display background color; false=don't display background color // zeroFill: true=zero fill; false=no zero fill // zeroMode: 1=leading 0 displayed as 0; 0=leading 0 displayed as a space // size: Font size // color: Character color // bColor: Background color // iNum: Number of digits // x/y: Upper-left coordinate // value: Integer value void DWIN_Draw_IntValue(uint8_t bShow, bool zeroFill, uint8_t zeroMode, uint8_t size, uint16_t color, uint16_t bColor, uint8_t iNum, uint16_t x, uint16_t y, uint16_t value); // Draw a floating point number // bShow: true=display background color; false=don't display background color // zeroFill: true=zero fill; false=no zero fill // zeroMode: 1=leading 0 displayed as 0; 0=leading 0 displayed as a space // size: Font size // color: Character color // bColor: Background color // iNum: Number of whole digits // fNum: Number of decimal digits // x/y: Upper-left point // value: Float value void DWIN_Draw_FloatValue(uint8_t bShow, bool zeroFill, uint8_t zeroMode, uint8_t size, uint16_t color, uint16_t bColor, uint8_t iNum, uint8_t fNum, uint16_t x, uint16_t y, long value); /*---------------------------------------- Picture related functions ----------------------------------------*/ // Draw JPG and cached in #0 virtual display area // id: Picture ID void DWIN_JPG_ShowAndCache(const uint8_t id); // Draw an Icon // libID: Icon library ID // picID: Icon ID // x/y: Upper-left point void DWIN_ICON_Show(uint8_t libID, uint8_t picID, uint16_t x, uint16_t y); // Unzip the JPG picture to a virtual display area // n: Cache index // id: Picture ID void DWIN_JPG_CacheToN(uint8_t n, uint8_t id); // Unzip the JPG picture to virtual display area #1 // id: Picture ID inline void DWIN_JPG_CacheTo1(uint8_t id) { DWIN_JPG_CacheToN(1, id); } // Copy area from virtual display area to current screen // cacheID: virtual area number // xStart/yStart: Upper-left of virtual area // xEnd/yEnd: Lower-right of virtual area // x/y: Screen paste point void DWIN_Frame_AreaCopy(uint8_t cacheID, uint16_t xStart, uint16_t yStart, uint16_t xEnd, uint16_t yEnd, uint16_t x, uint16_t y); // Animate a series of icons // animID: Animation ID up to 16 // animate: animation on or off // libID: Icon library ID // picIDs: Icon starting ID // picIDe: Icon ending ID // x/y: Upper-left point // interval: Display time interval, unit 10mS void DWIN_ICON_Animation(uint8_t animID, bool animate, uint8_t libID, uint8_t picIDs, uint8_t picIDe, uint16_t x, uint16_t y, uint16_t interval); // Animation Control // state: 16 bits, each bit is the state of an animation id void DWIN_ICON_AnimationControl(uint16_t state);