From 0aa3a5855e1351ffe87f345c007b71e26a39c21d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gu=C3=B0ni=20M=C3=A1r=20Gilbert?= Date: Sat, 21 May 2022 12:10:09 +0000 Subject: [PATCH] Add TODO to prompt user if extruder is extruding correct color --- Firmware/mmu2.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Firmware/mmu2.cpp b/Firmware/mmu2.cpp index 60147290c..9dce6fe42 100644 --- a/Firmware/mmu2.cpp +++ b/Firmware/mmu2.cpp @@ -356,6 +356,10 @@ bool MMU2::load_filament_to_nozzle(uint8_t index) { SetActiveExtruder(0); Sound_MakeSound(e_SOUND_TYPE_StandardConfirm); + + // TODO: The LCD should prompt the user with a full-screen message + // to ask whether the extruder is extruding the correct color. + // This does not apply when the tool change is done via gcode. return true; } }