Unify special menu defines for both display types. Also fix NoSD message and error, when no SD card is present.
This commit is contained in:
@@ -622,6 +622,7 @@
|
|||||||
|
|
||||||
void AnycubicTouchscreenClass::RenderCurrentFileList() {
|
void AnycubicTouchscreenClass::RenderCurrentFileList() {
|
||||||
currentFileOrDirectory[0] = 0;
|
currentFileOrDirectory[0] = 0;
|
||||||
|
|
||||||
if (SpecialMenu == false) {
|
if (SpecialMenu == false) {
|
||||||
currentTouchscreenSelection[0] = 0;
|
currentTouchscreenSelection[0] = 0;
|
||||||
}
|
}
|
||||||
@@ -629,11 +630,8 @@ void AnycubicTouchscreenClass::RenderCurrentFileList() {
|
|||||||
SENDLINE_PGM("FN "); // Filelist start
|
SENDLINE_PGM("FN "); // Filelist start
|
||||||
|
|
||||||
if (!isMediaInserted() && !SpecialMenu) {
|
if (!isMediaInserted() && !SpecialMenu) {
|
||||||
SENDLINE_DBG_PGM("J02", "TFT Serial Debug: No SD Card mounted to render Current File List... J02");
|
|
||||||
|
|
||||||
SENDLINE_PGM(SM_SPECIAL_MENU_S);
|
SENDLINE_PGM(SM_SPECIAL_MENU_S);
|
||||||
SENDLINE_PGM(SM_SPECIAL_MENU_L);
|
SENDLINE_PGM(SM_SPECIAL_MENU_L);
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
uint16_t selectedNumber = 0;
|
uint16_t selectedNumber = 0;
|
||||||
FileList currentFileList;
|
FileList currentFileList;
|
||||||
|
@@ -57,178 +57,133 @@ enum AnycubicMediaPauseState {
|
|||||||
AMPAUSESTATE_PAUSED
|
AMPAUSESTATE_PAUSED
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
#define SM_DIR_UP_S "DIR_UP~1.GCO"
|
||||||
|
#define SM_SPECIAL_MENU_S "<SPECI~1.GCO"
|
||||||
|
#define SM_PID_HOTEND_S "<PIDTU~1.GCO"
|
||||||
|
#define SM_PID_BED_S "<PIDTU~2.GCO"
|
||||||
|
#define SM_SAVE_EEPROM_S "<SAVEE~1.GCO"
|
||||||
|
#define SM_LOAD_DEFAULTS_S "<LOADF~1.GCO"
|
||||||
|
#define SM_PREHEAT_BED_S "<PREHE~1.GCO"
|
||||||
|
#define SM_MESH_MENU_S "<MESHL~1.GCO"
|
||||||
|
#define SM_MESH_START_S "<START~1.GCO"
|
||||||
|
#define SM_MESH_NEXT_S "<NEXTM~1.GCO"
|
||||||
|
#define SM_Z_UP_01_S "<ZUP01~1.GCO"
|
||||||
|
#define SM_Z_DN_01_S "<ZDOWN~1.GCO"
|
||||||
|
#define SM_Z_UP_002_S "<ZUP00~1.GCO"
|
||||||
|
#define SM_Z_DN_002_S "<ZDOWN~2.GCO"
|
||||||
|
#define SM_Z_UP_001_S "<ZUP00~2.GCO"
|
||||||
|
#define SM_Z_DN_001_S "<ZDOWN~3.GCO"
|
||||||
|
#define SM_BLTOUCH_S "<BLTOU~1.GCO"
|
||||||
|
#define SM_RESETLV_S "<RSTLV~1.GCO"
|
||||||
|
#define SM_PAUSE_S "<FILCH~2.GCO"
|
||||||
|
#define SM_RESUME_S "<FILCH~1.GCO"
|
||||||
|
#define SM_DIS_FILSENS_S "<DISAB~1.GCO"
|
||||||
|
#define SM_EN_FILSENS_S "<ENABL~1.GCO"
|
||||||
|
#define SM_EXIT_S "<EXIT_~1.GCO"
|
||||||
|
#define SM_BACK_S "<BACK_~1.GCO"
|
||||||
|
#define SM_FLOWMENU_S "<SETFLO1.GCO"
|
||||||
|
#define SM_FLOW_DISP_S "<FLDISPL.GCO"
|
||||||
|
#define SM_FLOW_UP_S "<UPFLOW1.GCO"
|
||||||
|
#define SM_FLOW_DN_S "<DWNFLOW.GCO"
|
||||||
|
#define SM_FLOW_EXIT_S "<EXTFLW1.GCO"
|
||||||
|
#define SM_EZLVL_MENU_S "<EZLVLM1.GCO"
|
||||||
|
#define SM_EZLVL_P1_S "<EZLPA01.GCO"
|
||||||
|
#define SM_EZLVL_P2_S "<EZLPB01.GCO"
|
||||||
|
#define SM_EZLVL_P3_S "<EZLPC01.GCO"
|
||||||
|
#define SM_EZLVL_P4_S "<EZLPD01.GCO"
|
||||||
|
#define SM_EZLVL_EXIT_S "<EZLEXT1.GCO"
|
||||||
|
#define SM_BLTZMENU_S "<SETOFZ0.GCO"
|
||||||
|
#define SM_BLTZ_DISP_S "<OFZDSP0.GCO"
|
||||||
|
#define SM_BLTZ_UP_S "<UPOFFZ0.GCO"
|
||||||
|
#define SM_BLTZ_DN_S "<DOWNOFZ.GCO"
|
||||||
|
#define SM_BLTZ_EXIT_S "<EXTABLM.GCO"
|
||||||
|
|
||||||
|
|
||||||
#if DISABLED(KNUTWURST_DGUS2_TFT)
|
#if DISABLED(KNUTWURST_DGUS2_TFT)
|
||||||
#define SM_DIR_UP_L "/.."
|
#define SM_DIR_UP_L "/.."
|
||||||
#define SM_DIR_UP_S ".."
|
|
||||||
#define SM_SPECIAL_MENU_L "<Special Menu>"
|
#define SM_SPECIAL_MENU_L "<Special Menu>"
|
||||||
#define SM_SPECIAL_MENU_S "<SPECM>"
|
|
||||||
#define SM_PID_HOTEND_L "<PID Tune Hotend>"
|
#define SM_PID_HOTEND_L "<PID Tune Hotend>"
|
||||||
#define SM_PID_HOTEND_S "<PIDHE>"
|
|
||||||
#define SM_PID_BED_L "<PID Tune Ultrabase>"
|
#define SM_PID_BED_L "<PID Tune Ultrabase>"
|
||||||
#define SM_PID_BED_S "<PIDUB>"
|
|
||||||
#define SM_SAVE_EEPROM_L "<Save EEPROM>"
|
#define SM_SAVE_EEPROM_L "<Save EEPROM>"
|
||||||
#define SM_SAVE_EEPROM_S "<SAVEE>"
|
|
||||||
#define SM_LOAD_DEFAULTS_L "<Load FW Defaults>"
|
#define SM_LOAD_DEFAULTS_L "<Load FW Defaults>"
|
||||||
#define SM_LOAD_DEFAULTS_S "<LDDEF>"
|
|
||||||
#define SM_PREHEAT_BED_L "<Preheat Ultrabase>"
|
#define SM_PREHEAT_BED_L "<Preheat Ultrabase>"
|
||||||
#define SM_PREHEAT_BED_S "<PREHE>"
|
|
||||||
#define SM_MESH_MENU_L "<Mesh Leveling>"
|
#define SM_MESH_MENU_L "<Mesh Leveling>"
|
||||||
#define SM_MESH_MENU_S "<MESHL>"
|
|
||||||
#define SM_MESH_START_L "<Start Mesh Leveling>"
|
#define SM_MESH_START_L "<Start Mesh Leveling>"
|
||||||
#define SM_MESH_START_S "<SMESH>"
|
|
||||||
#define SM_MESH_NEXT_L "<Next Mesh Point>"
|
#define SM_MESH_NEXT_L "<Next Mesh Point>"
|
||||||
#define SM_MESH_NEXT_S "<NEXTM>"
|
|
||||||
#define SM_Z_UP_01_L "<Z Up 0.1>"
|
#define SM_Z_UP_01_L "<Z Up 0.1>"
|
||||||
#define SM_Z_UP_01_S "<ZUP01>"
|
|
||||||
#define SM_Z_DN_01_L "<Z Down 0.1>"
|
#define SM_Z_DN_01_L "<Z Down 0.1>"
|
||||||
#define SM_Z_DN_01_S "<ZDN01>"
|
|
||||||
#define SM_Z_UP_002_L "<Z Up 0.02>"
|
#define SM_Z_UP_002_L "<Z Up 0.02>"
|
||||||
#define SM_Z_UP_002_S "<ZUP002>"
|
|
||||||
#define SM_Z_DN_002_L "<Z Down 0.02>"
|
#define SM_Z_DN_002_L "<Z Down 0.02>"
|
||||||
#define SM_Z_DN_002_S "<ZDN002>"
|
|
||||||
#define SM_Z_UP_001_L "<Z Up 0.01>"
|
#define SM_Z_UP_001_L "<Z Up 0.01>"
|
||||||
#define SM_Z_UP_001_S "<ZUP001>"
|
|
||||||
#define SM_Z_DN_001_L "<Z Down 0.01>"
|
#define SM_Z_DN_001_L "<Z Down 0.01>"
|
||||||
#define SM_Z_DN_001_S "<ZDN001>"
|
|
||||||
#define SM_BLTOUCH_L "<Start Auto Leveling>"
|
#define SM_BLTOUCH_L "<Start Auto Leveling>"
|
||||||
#define SM_BLTOUCH_S "<BLTCH>"
|
|
||||||
#define SM_RESETLV_L "<Reset Level Grid>"
|
#define SM_RESETLV_L "<Reset Level Grid>"
|
||||||
#define SM_RESETLV_S "<RSTLV>"
|
|
||||||
#define SM_PAUSE_L "<Fil. Change Pause>"
|
#define SM_PAUSE_L "<Fil. Change Pause>"
|
||||||
#define SM_PAUSE_S "<PAUSE>"
|
|
||||||
#define SM_RESUME_L "<Fil. Change Resume>"
|
#define SM_RESUME_L "<Fil. Change Resume>"
|
||||||
#define SM_RESUME_S "<RESUM>"
|
|
||||||
#define SM_DIS_FILSENS_L "<Disable Fil. Sensor>"
|
#define SM_DIS_FILSENS_L "<Disable Fil. Sensor>"
|
||||||
#define SM_DIS_FILSENS_S "<DISSEN>"
|
|
||||||
#define SM_EN_FILSENS_L "<Enable Fil. Sensor>"
|
#define SM_EN_FILSENS_L "<Enable Fil. Sensor>"
|
||||||
#define SM_EN_FILSENS_S "<ENSEN>"
|
|
||||||
#define SM_EXIT_L "<Exit>"
|
#define SM_EXIT_L "<Exit>"
|
||||||
#define SM_EXIT_S "<SMEXIT>"
|
|
||||||
|
|
||||||
#define SM_BACK_L "<End Mesh Leveling>"
|
#define SM_BACK_L "<End Mesh Leveling>"
|
||||||
#define SM_BACK_S "<BACK>"
|
|
||||||
|
|
||||||
#define SM_FLOWMENU_L "<Set Flowrate>"
|
#define SM_FLOWMENU_L "<Set Flowrate>"
|
||||||
#define SM_FLOWMENU_S "<SETFLO>"
|
|
||||||
#define SM_FLOW_DISP_L "<Flow is XXX>"
|
#define SM_FLOW_DISP_L "<Flow is XXX>"
|
||||||
#define SM_FLOW_DISP_S "<FLDISP>"
|
|
||||||
#define SM_FLOW_UP_L "<Up>"
|
#define SM_FLOW_UP_L "<Up>"
|
||||||
#define SM_FLOW_UP_S "<FLUP>"
|
|
||||||
#define SM_FLOW_DN_L "<Down>"
|
#define SM_FLOW_DN_L "<Down>"
|
||||||
#define SM_FLOW_DN_S "<FLDN>"
|
|
||||||
#define SM_FLOW_EXIT_L "<Exit Flow Settings>"
|
#define SM_FLOW_EXIT_L "<Exit Flow Settings>"
|
||||||
#define SM_FLOW_EXIT_S "<EXTFLW>"
|
|
||||||
|
|
||||||
#define SM_EZLVL_MENU_L "<Easy 4 Point Level>"
|
#define SM_EZLVL_MENU_L "<Easy 4 Point Level>"
|
||||||
#define SM_EZLVL_MENU_S "<EZLVLM>"
|
|
||||||
#define SM_EZLVL_P1_L "<Point A>"
|
#define SM_EZLVL_P1_L "<Point A>"
|
||||||
#define SM_EZLVL_P1_S "<EZLPA>"
|
|
||||||
#define SM_EZLVL_P2_L "<Point B>"
|
#define SM_EZLVL_P2_L "<Point B>"
|
||||||
#define SM_EZLVL_P2_S "<EZLPB>"
|
|
||||||
#define SM_EZLVL_P3_L "<Point C>"
|
#define SM_EZLVL_P3_L "<Point C>"
|
||||||
#define SM_EZLVL_P3_S "<EZLPC>"
|
|
||||||
#define SM_EZLVL_P4_L "<Point D>"
|
#define SM_EZLVL_P4_L "<Point D>"
|
||||||
#define SM_EZLVL_P4_S "<EZLPD>"
|
|
||||||
#define SM_EZLVL_EXIT_L "<Exit Easy Level>"
|
#define SM_EZLVL_EXIT_L "<Exit Easy Level>"
|
||||||
#define SM_EZLVL_EXIT_S "<EZLEXT>"
|
|
||||||
|
|
||||||
#define SM_BLTZMENU_L "<Auto Leveling>"
|
#define SM_BLTZMENU_L "<Auto Leveling>"
|
||||||
#define SM_BLTZMENU_S "<SETOFZ>"
|
|
||||||
#define SM_BLTZ_DISP_L "<Z Offset: XXXXX>"
|
#define SM_BLTZ_DISP_L "<Z Offset: XXXXX>"
|
||||||
#define SM_BLTZ_DISP_S "<OFZDSP>"
|
|
||||||
#define SM_BLTZ_UP_L "<Up>"
|
#define SM_BLTZ_UP_L "<Up>"
|
||||||
#define SM_BLTZ_UP_S "<UPOFFZ0>"
|
|
||||||
#define SM_BLTZ_DN_L "<Down>"
|
#define SM_BLTZ_DN_L "<Down>"
|
||||||
#define SM_BLTZ_DN_S "<DNOFFZ0>"
|
|
||||||
#define SM_BLTZ_EXIT_L "<SAVE and EXIT>"
|
#define SM_BLTZ_EXIT_L "<SAVE and EXIT>"
|
||||||
#define SM_BLTZ_EXIT_S "<EXTABLM>"
|
|
||||||
#endif // !KNUTWURST_DGUS2_TFT
|
#endif // !KNUTWURST_DGUS2_TFT
|
||||||
|
|
||||||
#if ENABLED(KNUTWURST_DGUS2_TFT)
|
#if ENABLED(KNUTWURST_DGUS2_TFT)
|
||||||
#define SM_DIR_UP_L "/.. .gcode"
|
#define SM_DIR_UP_L "/.. .gcode"
|
||||||
#define SM_DIR_UP_S "DIR_UP~1.GCO"
|
|
||||||
#define SM_SPECIAL_MENU_L "<Special Menu> .gcode"
|
#define SM_SPECIAL_MENU_L "<Special Menu> .gcode"
|
||||||
#define SM_SPECIAL_MENU_S "<SPECI~1.GCO"
|
|
||||||
#define SM_PID_HOTEND_L "<PID Tune Hotend> .gcode"
|
#define SM_PID_HOTEND_L "<PID Tune Hotend> .gcode"
|
||||||
#define SM_PID_HOTEND_S "<PIDTU~1.GCO"
|
|
||||||
#define SM_PID_BED_L "<PID Tune Ultrabase>.gcode"
|
#define SM_PID_BED_L "<PID Tune Ultrabase>.gcode"
|
||||||
#define SM_PID_BED_S "<PIDTU~2.GCO"
|
|
||||||
#define SM_SAVE_EEPROM_L "<Save EEPROM> .gcode"
|
#define SM_SAVE_EEPROM_L "<Save EEPROM> .gcode"
|
||||||
#define SM_SAVE_EEPROM_S "<SAVEE~1.GCO"
|
|
||||||
#define SM_LOAD_DEFAULTS_L "<Load FW Defaults> .gcode"
|
#define SM_LOAD_DEFAULTS_L "<Load FW Defaults> .gcode"
|
||||||
#define SM_LOAD_DEFAULTS_S "<LOADF~1.GCO"
|
|
||||||
#define SM_PREHEAT_BED_L "<Preheat Ultrabase> .gcode"
|
#define SM_PREHEAT_BED_L "<Preheat Ultrabase> .gcode"
|
||||||
#define SM_PREHEAT_BED_S "<PREHE~1.GCO"
|
|
||||||
#define SM_MESH_MENU_L "<Mesh Leveling> .gcode"
|
#define SM_MESH_MENU_L "<Mesh Leveling> .gcode"
|
||||||
#define SM_MESH_MENU_S "<MESHL~1.GCO"
|
|
||||||
#define SM_MESH_START_L "<Start MeshLeveling>.gcode"
|
#define SM_MESH_START_L "<Start MeshLeveling>.gcode"
|
||||||
#define SM_MESH_START_S "<START~1.GCO"
|
|
||||||
#define SM_MESH_NEXT_L "<Next Mesh Point> .gcode"
|
#define SM_MESH_NEXT_L "<Next Mesh Point> .gcode"
|
||||||
#define SM_MESH_NEXT_S "<NEXTM~1.GCO"
|
|
||||||
#define SM_Z_UP_01_L "<Z Up 0.1> .gcode"
|
#define SM_Z_UP_01_L "<Z Up 0.1> .gcode"
|
||||||
#define SM_Z_UP_01_S "<ZUP01~1.GCO"
|
|
||||||
#define SM_Z_DN_01_L "<Z Down 0.1> .gcode"
|
#define SM_Z_DN_01_L "<Z Down 0.1> .gcode"
|
||||||
#define SM_Z_DN_01_S "<ZDOWN~1.GCO"
|
|
||||||
#define SM_Z_UP_002_L "<Z Up 0.02> .gcode"
|
#define SM_Z_UP_002_L "<Z Up 0.02> .gcode"
|
||||||
#define SM_Z_UP_002_S "<ZUP00~1.GCO"
|
|
||||||
#define SM_Z_DN_002_L "<Z Down 0.02> .gcode"
|
#define SM_Z_DN_002_L "<Z Down 0.02> .gcode"
|
||||||
#define SM_Z_DN_002_S "<ZDOWN~2.GCO"
|
|
||||||
#define SM_Z_UP_001_L "<Z Up 0.01> .gcode"
|
#define SM_Z_UP_001_L "<Z Up 0.01> .gcode"
|
||||||
#define SM_Z_UP_001_S "<ZUP00~2.GCO"
|
|
||||||
#define SM_Z_DN_001_L "<Z Down 0.01> .gcode"
|
#define SM_Z_DN_001_L "<Z Down 0.01> .gcode"
|
||||||
#define SM_Z_DN_001_S "<ZDOWN~3.GCO"
|
|
||||||
#define SM_BLTOUCH_L "<Start AutoLeveling>.gcode"
|
#define SM_BLTOUCH_L "<Start AutoLeveling>.gcode"
|
||||||
#define SM_BLTOUCH_S "<BLTOU~1.GCO"
|
|
||||||
#define SM_RESETLV_L "<Reset Level Grid> .gcode"
|
#define SM_RESETLV_L "<Reset Level Grid> .gcode"
|
||||||
#define SM_RESETLV_S "<RSTLV~1.GCO>"
|
|
||||||
#define SM_PAUSE_L "<Fil. Change Pause> .gcode"
|
#define SM_PAUSE_L "<Fil. Change Pause> .gcode"
|
||||||
#define SM_PAUSE_S "<FILCH~2.GCO"
|
|
||||||
#define SM_RESUME_L "<Fil. Change Resume>.gcode"
|
#define SM_RESUME_L "<Fil. Change Resume>.gcode"
|
||||||
#define SM_RESUME_S "<FILCH~1.GCO"
|
|
||||||
#define SM_DIS_FILSENS_L "<Disable Fil.Sensor>.gcode"
|
#define SM_DIS_FILSENS_L "<Disable Fil.Sensor>.gcode"
|
||||||
#define SM_DIS_FILSENS_S "<DISAB~1.GCO"
|
|
||||||
#define SM_EN_FILSENS_L "<Enable Fil. Sensor>.gcode"
|
#define SM_EN_FILSENS_L "<Enable Fil. Sensor>.gcode"
|
||||||
#define SM_EN_FILSENS_S "<ENABL~1.GCO"
|
|
||||||
#define SM_EXIT_L "<Exit> .gcode"
|
#define SM_EXIT_L "<Exit> .gcode"
|
||||||
#define SM_EXIT_S "<EXIT_~1.GCO"
|
|
||||||
|
|
||||||
#define SM_BACK_L "<End Mesh Leveling> .gcode"
|
#define SM_BACK_L "<End Mesh Leveling> .gcode"
|
||||||
#define SM_BACK_S "<BACK_~1.GCO"
|
|
||||||
|
|
||||||
#define SM_FLOWMENU_L "<Set Flowrate> .gcode"
|
#define SM_FLOWMENU_L "<Set Flowrate> .gcode"
|
||||||
#define SM_FLOWMENU_S "<SETFLO1.GCO"
|
|
||||||
#define SM_FLOW_DISP_L "<Flow is XXX%> .gcode"
|
#define SM_FLOW_DISP_L "<Flow is XXX%> .gcode"
|
||||||
#define SM_FLOW_DISP_S "<FLDISPL.GCO"
|
|
||||||
#define SM_FLOW_UP_L "<Up> .gcode"
|
#define SM_FLOW_UP_L "<Up> .gcode"
|
||||||
#define SM_FLOW_UP_S "<UPFLOW1.GCO"
|
|
||||||
#define SM_FLOW_DN_L "<Down> .gcode"
|
#define SM_FLOW_DN_L "<Down> .gcode"
|
||||||
#define SM_FLOW_DN_S "<DWNFLOW.GCO"
|
|
||||||
#define SM_FLOW_EXIT_L "<Exit Flow Settings>.gcode"
|
#define SM_FLOW_EXIT_L "<Exit Flow Settings>.gcode"
|
||||||
#define SM_FLOW_EXIT_S "<EXTFLW1.GCO"
|
|
||||||
|
|
||||||
#define SM_EZLVL_MENU_L "<Easy 4 Point Level>.gcode"
|
#define SM_EZLVL_MENU_L "<Easy 4 Point Level>.gcode"
|
||||||
#define SM_EZLVL_MENU_S "<EZLVLM1.GCO"
|
|
||||||
#define SM_EZLVL_P1_L "<Point A> .gcode"
|
#define SM_EZLVL_P1_L "<Point A> .gcode"
|
||||||
#define SM_EZLVL_P1_S "<EZLPA01.GCO"
|
|
||||||
#define SM_EZLVL_P2_L "<Point B> .gcode"
|
#define SM_EZLVL_P2_L "<Point B> .gcode"
|
||||||
#define SM_EZLVL_P2_S "<EZLPB01.GCO"
|
|
||||||
#define SM_EZLVL_P3_L "<Point C> .gcode"
|
#define SM_EZLVL_P3_L "<Point C> .gcode"
|
||||||
#define SM_EZLVL_P3_S "<EZLPC01.GCO"
|
|
||||||
#define SM_EZLVL_P4_L "<Point D> .gcode"
|
#define SM_EZLVL_P4_L "<Point D> .gcode"
|
||||||
#define SM_EZLVL_P4_S "<EZLPD01.GCO"
|
|
||||||
#define SM_EZLVL_EXIT_L "<Exit Easy Leveling>.gcode"
|
#define SM_EZLVL_EXIT_L "<Exit Easy Leveling>.gcode"
|
||||||
#define SM_EZLVL_EXIT_S "<EZLEXT1.GCO"
|
|
||||||
|
|
||||||
#define SM_BLTZMENU_L "<Auto Leveling> .gcode"
|
#define SM_BLTZMENU_L "<Auto Leveling> .gcode"
|
||||||
#define SM_BLTZMENU_S "<SETOFZ0.GCO"
|
|
||||||
#define SM_BLTZ_DISP_L "<Z Offset: XXXXX> .gcode"
|
#define SM_BLTZ_DISP_L "<Z Offset: XXXXX> .gcode"
|
||||||
#define SM_BLTZ_DISP_S "<OFZDSP0.GCO"
|
|
||||||
#define SM_BLTZ_UP_L "<Up> .gcode"
|
#define SM_BLTZ_UP_L "<Up> .gcode"
|
||||||
#define SM_BLTZ_UP_S "<UPOFFZ0.GCO"
|
|
||||||
#define SM_BLTZ_DN_L "<Down> .gcode"
|
#define SM_BLTZ_DN_L "<Down> .gcode"
|
||||||
#define SM_BLTZ_DN_S "<DOWNOFZ.GCO"
|
|
||||||
#define SM_BLTZ_EXIT_L "<SAVE and EXIT> .gcode"
|
#define SM_BLTZ_EXIT_L "<SAVE and EXIT> .gcode"
|
||||||
#define SM_BLTZ_EXIT_S "<EXTABLM.GCO"
|
|
||||||
#endif // KNUTWURST_DGUS2_TFT
|
#endif // KNUTWURST_DGUS2_TFT
|
||||||
|
|
||||||
class AnycubicTouchscreenClass {
|
class AnycubicTouchscreenClass {
|
||||||
|
Reference in New Issue
Block a user