2019-02-01 02:10:52 +01:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
2019-06-28 06:57:50 +02:00
|
|
|
* Copyright (c) 2019 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
2019-02-01 02:10:52 +01:00
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
2019-06-28 06:57:50 +02:00
|
|
|
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
|
2019-02-01 02:10:52 +01:00
|
|
|
*
|
|
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "../../inc/MarlinConfig.h"
|
|
|
|
|
|
|
|
#if HAS_LCD_MENU && ENABLED(MMU2_MENUS)
|
|
|
|
|
2019-02-07 00:38:46 +01:00
|
|
|
#include "../../feature/prusa_MMU2/mmu2.h"
|
|
|
|
#include "menu_mmu2.h"
|
|
|
|
#include "menu.h"
|
2019-02-01 02:10:52 +01:00
|
|
|
|
|
|
|
uint8_t currentTool;
|
|
|
|
bool mmuMenuWait;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Load Filament
|
|
|
|
//
|
|
|
|
|
2019-04-09 00:56:40 +02:00
|
|
|
void _mmu2_load_filamentToNozzle(uint8_t index) {
|
2019-02-01 02:10:52 +01:00
|
|
|
ui.reset_status();
|
|
|
|
ui.return_to_status();
|
|
|
|
ui.status_printf_P(0, PSTR(MSG_MMU2_LOADING_FILAMENT), int(index + 1));
|
2019-04-09 00:56:40 +02:00
|
|
|
if (mmu2.load_filament_to_nozzle(index)) ui.reset_status();
|
2019-02-01 02:10:52 +01:00
|
|
|
}
|
|
|
|
|
2019-04-09 00:56:40 +02:00
|
|
|
inline void action_mmu2_load_filament_to_nozzl_e(const uint8_t tool) {
|
|
|
|
_mmu2_load_filamentToNozzle(tool);
|
2019-02-01 02:10:52 +01:00
|
|
|
ui.return_to_status();
|
|
|
|
}
|
2019-04-09 00:56:40 +02:00
|
|
|
inline void action_mmu2_load_filament_to_nozzle_0() { action_mmu2_load_filament_to_nozzl_e(0); }
|
|
|
|
inline void action_mmu2_load_filament_to_nozzle_1() { action_mmu2_load_filament_to_nozzl_e(1); }
|
|
|
|
inline void action_mmu2_load_filament_to_nozzle_2() { action_mmu2_load_filament_to_nozzl_e(2); }
|
|
|
|
inline void action_mmu2_load_filament_to_nozzle_3() { action_mmu2_load_filament_to_nozzl_e(3); }
|
|
|
|
inline void action_mmu2_load_filament_to_nozzle_4() { action_mmu2_load_filament_to_nozzl_e(4); }
|
2019-02-01 02:10:52 +01:00
|
|
|
|
2019-04-09 00:56:40 +02:00
|
|
|
void _mmu2_load_filament(uint8_t index) {
|
2019-02-01 02:10:52 +01:00
|
|
|
ui.return_to_status();
|
|
|
|
ui.status_printf_P(0, PSTR(MSG_MMU2_LOADING_FILAMENT), int(index + 1));
|
2019-04-09 00:56:40 +02:00
|
|
|
mmu2.load_filament(index);
|
2019-02-01 02:10:52 +01:00
|
|
|
ui.reset_status();
|
|
|
|
}
|
2019-04-09 00:56:40 +02:00
|
|
|
void action_mmu2_load_all() {
|
2019-02-01 02:10:52 +01:00
|
|
|
for (uint8_t i = 0; i < EXTRUDERS; i++)
|
2019-04-09 00:56:40 +02:00
|
|
|
_mmu2_load_filament(i);
|
2019-02-01 02:10:52 +01:00
|
|
|
ui.return_to_status();
|
|
|
|
}
|
2019-04-09 00:56:40 +02:00
|
|
|
inline void action_mmu2_load_filament_0() { _mmu2_load_filament(0); }
|
|
|
|
inline void action_mmu2_load_filament_1() { _mmu2_load_filament(1); }
|
|
|
|
inline void action_mmu2_load_filament_2() { _mmu2_load_filament(2); }
|
|
|
|
inline void action_mmu2_load_filament_3() { _mmu2_load_filament(3); }
|
|
|
|
inline void action_mmu2_load_filament_4() { _mmu2_load_filament(4); }
|
2019-02-01 02:10:52 +01:00
|
|
|
|
2019-04-09 00:56:40 +02:00
|
|
|
void menu_mmu2_load_filament() {
|
2019-02-01 02:10:52 +01:00
|
|
|
START_MENU();
|
|
|
|
MENU_BACK(MSG_MMU2_MENU);
|
2019-04-09 00:56:40 +02:00
|
|
|
MENU_ITEM(function, MSG_MMU2_ALL, action_mmu2_load_all);
|
|
|
|
MENU_ITEM(function, MSG_MMU2_FILAMENT0, action_mmu2_load_filament_0);
|
|
|
|
MENU_ITEM(function, MSG_MMU2_FILAMENT1, action_mmu2_load_filament_1);
|
|
|
|
MENU_ITEM(function, MSG_MMU2_FILAMENT2, action_mmu2_load_filament_2);
|
|
|
|
MENU_ITEM(function, MSG_MMU2_FILAMENT3, action_mmu2_load_filament_3);
|
|
|
|
MENU_ITEM(function, MSG_MMU2_FILAMENT4, action_mmu2_load_filament_4);
|
2019-02-01 02:10:52 +01:00
|
|
|
END_MENU();
|
|
|
|
}
|
|
|
|
|
2019-04-09 00:56:40 +02:00
|
|
|
void menu_mmu2_load_to_nozzle() {
|
2019-02-01 02:10:52 +01:00
|
|
|
START_MENU();
|
|
|
|
MENU_BACK(MSG_MMU2_MENU);
|
2019-04-09 00:56:40 +02:00
|
|
|
MENU_ITEM(function, MSG_MMU2_FILAMENT0, action_mmu2_load_filament_to_nozzle_0);
|
|
|
|
MENU_ITEM(function, MSG_MMU2_FILAMENT1, action_mmu2_load_filament_to_nozzle_1);
|
|
|
|
MENU_ITEM(function, MSG_MMU2_FILAMENT2, action_mmu2_load_filament_to_nozzle_2);
|
|
|
|
MENU_ITEM(function, MSG_MMU2_FILAMENT3, action_mmu2_load_filament_to_nozzle_3);
|
|
|
|
MENU_ITEM(function, MSG_MMU2_FILAMENT4, action_mmu2_load_filament_to_nozzle_4);
|
2019-02-01 02:10:52 +01:00
|
|
|
END_MENU();
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Eject Filament
|
|
|
|
//
|
|
|
|
|
2019-04-09 00:56:40 +02:00
|
|
|
void _mmu2_eject_filament(uint8_t index) {
|
2019-02-01 02:10:52 +01:00
|
|
|
ui.reset_status();
|
|
|
|
ui.return_to_status();
|
|
|
|
ui.status_printf_P(0, PSTR(MSG_MMU2_EJECTING_FILAMENT), int(index + 1));
|
2019-04-09 00:56:40 +02:00
|
|
|
if (mmu2.eject_filament(index, true)) ui.reset_status();
|
2019-02-01 02:10:52 +01:00
|
|
|
}
|
2019-04-09 00:56:40 +02:00
|
|
|
inline void action_mmu2_eject_filament_0() { _mmu2_eject_filament(0); }
|
|
|
|
inline void action_mmu2_eject_filament_1() { _mmu2_eject_filament(1); }
|
|
|
|
inline void action_mmu2_eject_filament_2() { _mmu2_eject_filament(2); }
|
|
|
|
inline void action_mmu2_eject_filament_3() { _mmu2_eject_filament(3); }
|
|
|
|
inline void action_mmu2_eject_filament_4() { _mmu2_eject_filament(4); }
|
2019-02-01 02:10:52 +01:00
|
|
|
|
2019-04-09 00:56:40 +02:00
|
|
|
void action_mmu2_unload_filament() {
|
2019-02-01 02:10:52 +01:00
|
|
|
ui.reset_status();
|
|
|
|
ui.return_to_status();
|
|
|
|
LCD_MESSAGEPGM(MSG_MMU2_UNLOADING_FILAMENT);
|
|
|
|
idle();
|
|
|
|
if (mmu2.unload()) ui.reset_status();
|
|
|
|
}
|
|
|
|
|
2019-04-09 00:56:40 +02:00
|
|
|
void menu_mmu2_eject_filament() {
|
2019-02-01 02:10:52 +01:00
|
|
|
START_MENU();
|
|
|
|
MENU_BACK(MSG_MMU2_MENU);
|
2019-04-09 00:56:40 +02:00
|
|
|
MENU_ITEM(function, MSG_MMU2_FILAMENT0, action_mmu2_eject_filament_0);
|
|
|
|
MENU_ITEM(function, MSG_MMU2_FILAMENT1, action_mmu2_eject_filament_1);
|
|
|
|
MENU_ITEM(function, MSG_MMU2_FILAMENT2, action_mmu2_eject_filament_2);
|
|
|
|
MENU_ITEM(function, MSG_MMU2_FILAMENT3, action_mmu2_eject_filament_3);
|
|
|
|
MENU_ITEM(function, MSG_MMU2_FILAMENT4, action_mmu2_eject_filament_4);
|
2019-02-01 02:10:52 +01:00
|
|
|
END_MENU();
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// MMU2 Menu
|
|
|
|
//
|
|
|
|
|
|
|
|
void action_mmu2_reset() {
|
|
|
|
mmu2.init();
|
|
|
|
ui.reset_status();
|
|
|
|
}
|
|
|
|
|
|
|
|
void menu_mmu2() {
|
|
|
|
START_MENU();
|
|
|
|
MENU_BACK(MSG_MAIN);
|
2019-04-09 00:56:40 +02:00
|
|
|
MENU_ITEM(submenu, MSG_MMU2_LOAD_FILAMENT, menu_mmu2_load_filament);
|
|
|
|
MENU_ITEM(submenu, MSG_MMU2_LOAD_TO_NOZZLE, menu_mmu2_load_to_nozzle);
|
|
|
|
MENU_ITEM(submenu, MSG_MMU2_EJECT_FILAMENT, menu_mmu2_eject_filament);
|
|
|
|
MENU_ITEM(function, MSG_MMU2_UNLOAD_FILAMENT, action_mmu2_unload_filament);
|
2019-02-01 02:10:52 +01:00
|
|
|
MENU_ITEM(function, MSG_MMU2_RESET, action_mmu2_reset);
|
|
|
|
END_MENU();
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// T* Choose Filament
|
|
|
|
//
|
|
|
|
|
|
|
|
inline void action_mmu2_choose(const uint8_t tool) {
|
|
|
|
currentTool = tool;
|
|
|
|
mmuMenuWait = false;
|
|
|
|
}
|
|
|
|
inline void action_mmu2_choose0() { action_mmu2_choose(0); }
|
|
|
|
inline void action_mmu2_choose1() { action_mmu2_choose(1); }
|
|
|
|
inline void action_mmu2_choose2() { action_mmu2_choose(2); }
|
|
|
|
inline void action_mmu2_choose3() { action_mmu2_choose(3); }
|
|
|
|
inline void action_mmu2_choose4() { action_mmu2_choose(4); }
|
|
|
|
|
2019-04-09 00:56:40 +02:00
|
|
|
void menu_mmu2_choose_filament() {
|
2019-02-01 02:10:52 +01:00
|
|
|
START_MENU();
|
|
|
|
#if LCD_HEIGHT > 2
|
|
|
|
STATIC_ITEM(MSG_MMU2_CHOOSE_FILAMENT_HEADER, true, true);
|
|
|
|
#endif
|
|
|
|
MENU_ITEM(function, MSG_MMU2_FILAMENT0, action_mmu2_choose0);
|
|
|
|
MENU_ITEM(function, MSG_MMU2_FILAMENT1, action_mmu2_choose1);
|
|
|
|
MENU_ITEM(function, MSG_MMU2_FILAMENT2, action_mmu2_choose2);
|
|
|
|
MENU_ITEM(function, MSG_MMU2_FILAMENT3, action_mmu2_choose3);
|
|
|
|
MENU_ITEM(function, MSG_MMU2_FILAMENT4, action_mmu2_choose4);
|
|
|
|
END_MENU();
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// MMU2 Filament Runout
|
|
|
|
//
|
|
|
|
|
2019-04-09 00:56:40 +02:00
|
|
|
inline void action_mmu2_M600_load_current_filament() { mmu2.load_filament(currentTool); }
|
|
|
|
inline void action_mmu2_M600_load_current_filament_to_nozzle() { mmu2.load_filament_to_nozzle(currentTool); }
|
|
|
|
inline void action_mmu2_M600_unload_filament() { mmu2.unload(); }
|
2019-02-01 02:10:52 +01:00
|
|
|
inline void action_mmu2_M600_resume() { mmuMenuWait = false; }
|
|
|
|
|
2019-03-14 08:26:07 +01:00
|
|
|
void menu_mmu2_pause() {
|
2019-04-09 00:56:40 +02:00
|
|
|
currentTool = mmu2.get_current_tool();
|
2019-02-01 02:10:52 +01:00
|
|
|
START_MENU();
|
|
|
|
#if LCD_HEIGHT > 2
|
|
|
|
STATIC_ITEM(MSG_MMU2_FILAMENT_CHANGE_HEADER, true, true);
|
|
|
|
#endif
|
|
|
|
MENU_ITEM(function, MSG_MMU2_RESUME, action_mmu2_M600_resume);
|
2019-04-09 00:56:40 +02:00
|
|
|
MENU_ITEM(function, MSG_MMU2_UNLOAD_FILAMENT, action_mmu2_M600_unload_filament);
|
|
|
|
MENU_ITEM(function, MSG_MMU2_LOAD_FILAMENT, action_mmu2_M600_load_current_filament);
|
|
|
|
MENU_ITEM(function, MSG_MMU2_LOAD_TO_NOZZLE, action_mmu2_M600_load_current_filament_to_nozzle);
|
2019-02-01 02:10:52 +01:00
|
|
|
END_MENU();
|
|
|
|
}
|
|
|
|
|
|
|
|
void mmu2_M600() {
|
2019-03-23 22:30:43 +01:00
|
|
|
ui.defer_status_screen();
|
2019-03-14 08:26:07 +01:00
|
|
|
ui.goto_screen(menu_mmu2_pause);
|
2019-02-01 02:10:52 +01:00
|
|
|
mmuMenuWait = true;
|
|
|
|
while (mmuMenuWait) idle();
|
|
|
|
}
|
|
|
|
|
2019-04-09 00:56:40 +02:00
|
|
|
uint8_t mmu2_choose_filament() {
|
2019-03-23 22:30:43 +01:00
|
|
|
ui.defer_status_screen();
|
2019-04-09 00:56:40 +02:00
|
|
|
ui.goto_screen(menu_mmu2_choose_filament);
|
2019-02-01 02:10:52 +01:00
|
|
|
mmuMenuWait = true;
|
|
|
|
while (mmuMenuWait) idle();
|
|
|
|
ui.return_to_status();
|
|
|
|
return currentTool;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // HAS_LCD_MENU && ENABLED(PRUSA_MMU2_MENUS)
|