Prusa MMU2 (#12967)
This commit is contained in:
parent
996f7d1642
commit
6a57d0b381
@ -174,6 +174,16 @@
|
|||||||
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
*
|
||||||
|
* Requires NOZZLE_PARK_FEATURE to park print head in case MMU unit fails.
|
||||||
|
* Requires EXTRUDERS = 5
|
||||||
|
*
|
||||||
|
* For additional configuration see Configuration_adv.h
|
||||||
|
*/
|
||||||
|
//#define PRUSA_MMU2
|
||||||
|
|
||||||
// A dual extruder that uses a single stepper motor
|
// A dual extruder that uses a single stepper motor
|
||||||
//#define SWITCHING_EXTRUDER
|
//#define SWITCHING_EXTRUDER
|
||||||
#if ENABLED(SWITCHING_EXTRUDER)
|
#if ENABLED(SWITCHING_EXTRUDER)
|
||||||
|
@ -1463,7 +1463,7 @@
|
|||||||
* Define you own with
|
* Define you own with
|
||||||
* { <off_time[1..15]>, <hysteresis_end[-3..12]>, hysteresis_start[1..8] }
|
* { <off_time[1..15]>, <hysteresis_end[-3..12]>, hysteresis_start[1..8] }
|
||||||
*/
|
*/
|
||||||
#define CHOPPER_TIMING CHOPPER_DEFAULT_12V
|
#define CHOPPER_TIMING { 4, -2, 1 }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Monitor Trinamic TMC2130 and TMC2208 drivers for error conditions,
|
* Monitor Trinamic TMC2130 and TMC2208 drivers for error conditions,
|
||||||
@ -2104,6 +2104,59 @@
|
|||||||
#define WIFI_PWD "Wifi Password"
|
#define WIFI_PWD "Wifi Password"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
* Enable in Configuration.h
|
||||||
|
*/
|
||||||
|
#if ENABLED(PRUSA_MMU2)
|
||||||
|
|
||||||
|
// Serial port used for communication with MMU2.
|
||||||
|
// For AVR enable the UART port used for the MMU. (e.g., internalSerial)
|
||||||
|
// For 32-bit boards check your HAL for available serial ports. (e.g., Serial2)
|
||||||
|
#define INTERNAL_SERIAL_PORT 2
|
||||||
|
#define MMU2_SERIAL internalSerial
|
||||||
|
|
||||||
|
// Use hardware reset for MMU if a pin is defined for it
|
||||||
|
//#define MMU2_RST_PIN 23
|
||||||
|
|
||||||
|
// Enable if the MMU2 has 12V stepper motors (MMU2 Firmware 1.0.2 and up)
|
||||||
|
//#define MMU2_MODE_12V
|
||||||
|
|
||||||
|
// G-code to execute when MMU2 F.I.N.D.A. probe detects filament runout
|
||||||
|
#define MMU2_FILAMENT_RUNOUT_SCRIPT "M600"
|
||||||
|
|
||||||
|
// Add an LCD menu for MMU2
|
||||||
|
//#define MMU2_MENUS
|
||||||
|
#if ENABLED(MMU2_MENUS)
|
||||||
|
// Settings for filament load / unload from the LCD menu.
|
||||||
|
// This is for Prusa MK3-style extruders. Customize for your hardware.
|
||||||
|
#define MMU2_FILAMENTCHANGE_EJECT_FEED 80.0
|
||||||
|
#define MMU2_LOAD_TO_NOZZLE_SEQUENCE \
|
||||||
|
{ 7.2, 562 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 36.0, 1393 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 50.0, 198 }
|
||||||
|
|
||||||
|
#define MMU2_RAMMING_SEQUENCE \
|
||||||
|
{ 1.0, 1000 }, \
|
||||||
|
{ 1.0, 1500 }, \
|
||||||
|
{ 2.0, 2000 }, \
|
||||||
|
{ 1.5, 3000 }, \
|
||||||
|
{ 2.5, 4000 }, \
|
||||||
|
{ -15.0, 5000 }, \
|
||||||
|
{ -14.0, 1200 }, \
|
||||||
|
{ -6.0, 600 }, \
|
||||||
|
{ 10.0, 700 }, \
|
||||||
|
{ -10.0, 400 }, \
|
||||||
|
{ -50.0, 2000 }
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
//#define MMU2_DEBUG // Write debug info to serial output
|
||||||
|
|
||||||
|
#endif // PRUSA_MMU2
|
||||||
|
|
||||||
// @section develop
|
// @section develop
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -739,6 +739,24 @@
|
|||||||
|
|
||||||
#endif // !USBCON && (UBRRH || UBRR0H || UBRR1H || UBRR2H || UBRR3H)
|
#endif // !USBCON && (UBRRH || UBRR0H || UBRR1H || UBRR2H || UBRR3H)
|
||||||
|
|
||||||
|
|
||||||
|
#if defined(INTERNAL_SERIAL_PORT)
|
||||||
|
|
||||||
|
ISR(SERIAL_REGNAME(USART,INTERNAL_SERIAL_PORT,_RX_vect)) {
|
||||||
|
MarlinSerial<MarlinInternalSerialCfg<INTERNAL_SERIAL_PORT>>::store_rxd_char();
|
||||||
|
}
|
||||||
|
|
||||||
|
ISR(SERIAL_REGNAME(USART,INTERNAL_SERIAL_PORT,_UDRE_vect)) {
|
||||||
|
MarlinSerial<MarlinInternalSerialCfg<INTERNAL_SERIAL_PORT>>::_tx_udr_empty_irq();
|
||||||
|
}
|
||||||
|
|
||||||
|
// Preinstantiate
|
||||||
|
template class MarlinSerial<MarlinInternalSerialCfg<INTERNAL_SERIAL_PORT>>;
|
||||||
|
|
||||||
|
// Instantiate
|
||||||
|
MarlinSerial<MarlinInternalSerialCfg<INTERNAL_SERIAL_PORT>> internalSerial;
|
||||||
|
|
||||||
|
#endif
|
||||||
// For AT90USB targets use the UART for BT interfacing
|
// For AT90USB targets use the UART for BT interfacing
|
||||||
#if defined(USBCON) && ENABLED(BLUETOOTH)
|
#if defined(USBCON) && ENABLED(BLUETOOTH)
|
||||||
HardwareSerial bluetoothSerial;
|
HardwareSerial bluetoothSerial;
|
||||||
|
@ -275,6 +275,24 @@
|
|||||||
|
|
||||||
#endif // !USBCON
|
#endif // !USBCON
|
||||||
|
|
||||||
|
|
||||||
|
#if defined(INTERNAL_SERIAL_PORT)
|
||||||
|
template <uint8_t serial>
|
||||||
|
struct MarlinInternalSerialCfg {
|
||||||
|
static constexpr int PORT = serial;
|
||||||
|
static constexpr unsigned int RX_SIZE = 32;
|
||||||
|
static constexpr unsigned int TX_SIZE = 32;
|
||||||
|
static constexpr bool XONOFF = false;
|
||||||
|
static constexpr bool EMERGENCYPARSER = false;
|
||||||
|
static constexpr bool DROPPED_RX = false;
|
||||||
|
static constexpr bool RX_OVERRUNS = false;
|
||||||
|
static constexpr bool RX_FRAMING_ERRORS = false;
|
||||||
|
static constexpr bool MAX_RX_QUEUED = false;
|
||||||
|
};
|
||||||
|
|
||||||
|
extern MarlinSerial<MarlinInternalSerialCfg<INTERNAL_SERIAL_PORT>> internalSerial;
|
||||||
|
#endif
|
||||||
|
|
||||||
// Use the UART for Bluetooth in AT90USB configurations
|
// Use the UART for Bluetooth in AT90USB configurations
|
||||||
#if defined(USBCON) && ENABLED(BLUETOOTH)
|
#if defined(USBCON) && ENABLED(BLUETOOTH)
|
||||||
extern HardwareSerial bluetoothSerial;
|
extern HardwareSerial bluetoothSerial;
|
||||||
|
@ -156,6 +156,10 @@
|
|||||||
#include "feature/controllerfan.h"
|
#include "feature/controllerfan.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if ENABLED(PRUSA_MMU2)
|
||||||
|
#include "feature/prusa_MMU2/mmu2.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
#if ENABLED(EXTENSIBLE_UI)
|
#if ENABLED(EXTENSIBLE_UI)
|
||||||
#include "lcd/extensible_ui/ui_api.h"
|
#include "lcd/extensible_ui/ui_api.h"
|
||||||
#endif
|
#endif
|
||||||
@ -632,6 +636,10 @@ void idle(
|
|||||||
#if ENABLED(USB_FLASH_DRIVE_SUPPORT)
|
#if ENABLED(USB_FLASH_DRIVE_SUPPORT)
|
||||||
Sd2Card::idle();
|
Sd2Card::idle();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if ENABLED(PRUSA_MMU2)
|
||||||
|
mmu2.mmuLoop();
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -984,6 +992,10 @@ void setup() {
|
|||||||
#if HAS_TRINAMIC && DISABLED(PS_DEFAULT_OFF)
|
#if HAS_TRINAMIC && DISABLED(PS_DEFAULT_OFF)
|
||||||
test_tmc_connection(true, true, true, true);
|
test_tmc_connection(true, true, true, true);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if ENABLED(PRUSA_MMU2)
|
||||||
|
mmu2.init();
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -174,6 +174,16 @@
|
|||||||
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
*
|
||||||
|
* Requires NOZZLE_PARK_FEATURE to park print head in case MMU unit fails.
|
||||||
|
* Requires EXTRUDERS = 5
|
||||||
|
*
|
||||||
|
* For additional configuration see Configuration_adv.h
|
||||||
|
*/
|
||||||
|
//#define PRUSA_MMU2
|
||||||
|
|
||||||
// A dual extruder that uses a single stepper motor
|
// A dual extruder that uses a single stepper motor
|
||||||
//#define SWITCHING_EXTRUDER
|
//#define SWITCHING_EXTRUDER
|
||||||
#if ENABLED(SWITCHING_EXTRUDER)
|
#if ENABLED(SWITCHING_EXTRUDER)
|
||||||
|
55
Marlin/src/config/default/Configuration_adv.h
Executable file → Normal file
55
Marlin/src/config/default/Configuration_adv.h
Executable file → Normal file
@ -1463,7 +1463,7 @@
|
|||||||
* Define you own with
|
* Define you own with
|
||||||
* { <off_time[1..15]>, <hysteresis_end[-3..12]>, hysteresis_start[1..8] }
|
* { <off_time[1..15]>, <hysteresis_end[-3..12]>, hysteresis_start[1..8] }
|
||||||
*/
|
*/
|
||||||
#define CHOPPER_TIMING CHOPPER_DEFAULT_12V
|
#define CHOPPER_TIMING { 4, -2, 1 }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Monitor Trinamic TMC2130 and TMC2208 drivers for error conditions,
|
* Monitor Trinamic TMC2130 and TMC2208 drivers for error conditions,
|
||||||
@ -2104,6 +2104,59 @@
|
|||||||
#define WIFI_PWD "Wifi Password"
|
#define WIFI_PWD "Wifi Password"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
* Enable in Configuration.h
|
||||||
|
*/
|
||||||
|
#if ENABLED(PRUSA_MMU2)
|
||||||
|
|
||||||
|
// Serial port used for communication with MMU2.
|
||||||
|
// For AVR enable the UART port used for the MMU. (e.g., internalSerial)
|
||||||
|
// For 32-bit boards check your HAL for available serial ports. (e.g., Serial2)
|
||||||
|
#define INTERNAL_SERIAL_PORT 2
|
||||||
|
#define MMU2_SERIAL internalSerial
|
||||||
|
|
||||||
|
// Use hardware reset for MMU if a pin is defined for it
|
||||||
|
//#define MMU2_RST_PIN 23
|
||||||
|
|
||||||
|
// Enable if the MMU2 has 12V stepper motors (MMU2 Firmware 1.0.2 and up)
|
||||||
|
//#define MMU2_MODE_12V
|
||||||
|
|
||||||
|
// G-code to execute when MMU2 F.I.N.D.A. probe detects filament runout
|
||||||
|
#define MMU2_FILAMENT_RUNOUT_SCRIPT "M600"
|
||||||
|
|
||||||
|
// Add an LCD menu for MMU2
|
||||||
|
//#define MMU2_MENUS
|
||||||
|
#if ENABLED(MMU2_MENUS)
|
||||||
|
// Settings for filament load / unload from the LCD menu.
|
||||||
|
// This is for Prusa MK3-style extruders. Customize for your hardware.
|
||||||
|
#define MMU2_FILAMENTCHANGE_EJECT_FEED 80.0
|
||||||
|
#define MMU2_LOAD_TO_NOZZLE_SEQUENCE \
|
||||||
|
{ 7.2, 562 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 36.0, 1393 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 50.0, 198 }
|
||||||
|
|
||||||
|
#define MMU2_RAMMING_SEQUENCE \
|
||||||
|
{ 1.0, 1000 }, \
|
||||||
|
{ 1.0, 1500 }, \
|
||||||
|
{ 2.0, 2000 }, \
|
||||||
|
{ 1.5, 3000 }, \
|
||||||
|
{ 2.5, 4000 }, \
|
||||||
|
{ -15.0, 5000 }, \
|
||||||
|
{ -14.0, 1200 }, \
|
||||||
|
{ -6.0, 600 }, \
|
||||||
|
{ 10.0, 700 }, \
|
||||||
|
{ -10.0, 400 }, \
|
||||||
|
{ -50.0, 2000 }
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
//#define MMU2_DEBUG // Write debug info to serial output
|
||||||
|
|
||||||
|
#endif // PRUSA_MMU2
|
||||||
|
|
||||||
// @section develop
|
// @section develop
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -174,6 +174,16 @@
|
|||||||
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
*
|
||||||
|
* Requires NOZZLE_PARK_FEATURE to park print head in case MMU unit fails.
|
||||||
|
* Requires EXTRUDERS = 5
|
||||||
|
*
|
||||||
|
* For additional configuration see Configuration_adv.h
|
||||||
|
*/
|
||||||
|
//#define PRUSA_MMU2
|
||||||
|
|
||||||
// A dual extruder that uses a single stepper motor
|
// A dual extruder that uses a single stepper motor
|
||||||
//#define SWITCHING_EXTRUDER
|
//#define SWITCHING_EXTRUDER
|
||||||
#if ENABLED(SWITCHING_EXTRUDER)
|
#if ENABLED(SWITCHING_EXTRUDER)
|
||||||
|
@ -2106,6 +2106,59 @@
|
|||||||
#define WIFI_PWD "Wifi Password"
|
#define WIFI_PWD "Wifi Password"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
* Enable in Configuration.h
|
||||||
|
*/
|
||||||
|
#if ENABLED(PRUSA_MMU2)
|
||||||
|
|
||||||
|
// Serial port used for communication with MMU2.
|
||||||
|
// For AVR enable the UART port used for the MMU. (e.g., internalSerial)
|
||||||
|
// For 32-bit boards check your HAL for available serial ports. (e.g., Serial2)
|
||||||
|
#define INTERNAL_SERIAL_PORT 2
|
||||||
|
#define MMU2_SERIAL internalSerial
|
||||||
|
|
||||||
|
// Use hardware reset for MMU if a pin is defined for it
|
||||||
|
//#define MMU2_RST_PIN 23
|
||||||
|
|
||||||
|
// Enable if the MMU2 has 12V stepper motors (MMU2 Firmware 1.0.2 and up)
|
||||||
|
//#define MMU2_MODE_12V
|
||||||
|
|
||||||
|
// G-code to execute when MMU2 F.I.N.D.A. probe detects filament runout
|
||||||
|
#define MMU2_FILAMENT_RUNOUT_SCRIPT "M600"
|
||||||
|
|
||||||
|
// Add an LCD menu for MMU2
|
||||||
|
//#define MMU2_MENUS
|
||||||
|
#if ENABLED(MMU2_MENUS)
|
||||||
|
// Settings for filament load / unload from the LCD menu.
|
||||||
|
// This is for Prusa MK3-style extruders. Customize for your hardware.
|
||||||
|
#define MMU2_FILAMENTCHANGE_EJECT_FEED 80.0
|
||||||
|
#define MMU2_LOAD_TO_NOZZLE_SEQUENCE \
|
||||||
|
{ 7.2, 562 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 36.0, 1393 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 50.0, 198 }
|
||||||
|
|
||||||
|
#define MMU2_RAMMING_SEQUENCE \
|
||||||
|
{ 1.0, 1000 }, \
|
||||||
|
{ 1.0, 1500 }, \
|
||||||
|
{ 2.0, 2000 }, \
|
||||||
|
{ 1.5, 3000 }, \
|
||||||
|
{ 2.5, 4000 }, \
|
||||||
|
{ -15.0, 5000 }, \
|
||||||
|
{ -14.0, 1200 }, \
|
||||||
|
{ -6.0, 600 }, \
|
||||||
|
{ 10.0, 700 }, \
|
||||||
|
{ -10.0, 400 }, \
|
||||||
|
{ -50.0, 2000 }
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
//#define MMU2_DEBUG // Write debug info to serial output
|
||||||
|
|
||||||
|
#endif // PRUSA_MMU2
|
||||||
|
|
||||||
// @section develop
|
// @section develop
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -174,6 +174,16 @@
|
|||||||
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
*
|
||||||
|
* Requires NOZZLE_PARK_FEATURE to park print head in case MMU unit fails.
|
||||||
|
* Requires EXTRUDERS = 5
|
||||||
|
*
|
||||||
|
* For additional configuration see Configuration_adv.h
|
||||||
|
*/
|
||||||
|
//#define PRUSA_MMU2
|
||||||
|
|
||||||
// A dual extruder that uses a single stepper motor
|
// A dual extruder that uses a single stepper motor
|
||||||
//#define SWITCHING_EXTRUDER
|
//#define SWITCHING_EXTRUDER
|
||||||
#if ENABLED(SWITCHING_EXTRUDER)
|
#if ENABLED(SWITCHING_EXTRUDER)
|
||||||
|
@ -2103,6 +2103,59 @@
|
|||||||
#define WIFI_PWD "Wifi Password"
|
#define WIFI_PWD "Wifi Password"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
* Enable in Configuration.h
|
||||||
|
*/
|
||||||
|
#if ENABLED(PRUSA_MMU2)
|
||||||
|
|
||||||
|
// Serial port used for communication with MMU2.
|
||||||
|
// For AVR enable the UART port used for the MMU. (e.g., internalSerial)
|
||||||
|
// For 32-bit boards check your HAL for available serial ports. (e.g., Serial2)
|
||||||
|
#define INTERNAL_SERIAL_PORT 2
|
||||||
|
#define MMU2_SERIAL internalSerial
|
||||||
|
|
||||||
|
// Use hardware reset for MMU if a pin is defined for it
|
||||||
|
//#define MMU2_RST_PIN 23
|
||||||
|
|
||||||
|
// Enable if the MMU2 has 12V stepper motors (MMU2 Firmware 1.0.2 and up)
|
||||||
|
//#define MMU2_MODE_12V
|
||||||
|
|
||||||
|
// G-code to execute when MMU2 F.I.N.D.A. probe detects filament runout
|
||||||
|
#define MMU2_FILAMENT_RUNOUT_SCRIPT "M600"
|
||||||
|
|
||||||
|
// Add an LCD menu for MMU2
|
||||||
|
//#define MMU2_MENUS
|
||||||
|
#if ENABLED(MMU2_MENUS)
|
||||||
|
// Settings for filament load / unload from the LCD menu.
|
||||||
|
// This is for Prusa MK3-style extruders. Customize for your hardware.
|
||||||
|
#define MMU2_FILAMENTCHANGE_EJECT_FEED 80.0
|
||||||
|
#define MMU2_LOAD_TO_NOZZLE_SEQUENCE \
|
||||||
|
{ 7.2, 562 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 36.0, 1393 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 50.0, 198 }
|
||||||
|
|
||||||
|
#define MMU2_RAMMING_SEQUENCE \
|
||||||
|
{ 1.0, 1000 }, \
|
||||||
|
{ 1.0, 1500 }, \
|
||||||
|
{ 2.0, 2000 }, \
|
||||||
|
{ 1.5, 3000 }, \
|
||||||
|
{ 2.5, 4000 }, \
|
||||||
|
{ -15.0, 5000 }, \
|
||||||
|
{ -14.0, 1200 }, \
|
||||||
|
{ -6.0, 600 }, \
|
||||||
|
{ 10.0, 700 }, \
|
||||||
|
{ -10.0, 400 }, \
|
||||||
|
{ -50.0, 2000 }
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
//#define MMU2_DEBUG // Write debug info to serial output
|
||||||
|
|
||||||
|
#endif // PRUSA_MMU2
|
||||||
|
|
||||||
// @section develop
|
// @section develop
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -174,6 +174,16 @@
|
|||||||
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
*
|
||||||
|
* Requires NOZZLE_PARK_FEATURE to park print head in case MMU unit fails.
|
||||||
|
* Requires EXTRUDERS = 5
|
||||||
|
*
|
||||||
|
* For additional configuration see Configuration_adv.h
|
||||||
|
*/
|
||||||
|
//#define PRUSA_MMU2
|
||||||
|
|
||||||
// A dual extruder that uses a single stepper motor
|
// A dual extruder that uses a single stepper motor
|
||||||
//#define SWITCHING_EXTRUDER
|
//#define SWITCHING_EXTRUDER
|
||||||
#if ENABLED(SWITCHING_EXTRUDER)
|
#if ENABLED(SWITCHING_EXTRUDER)
|
||||||
|
@ -174,6 +174,16 @@
|
|||||||
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
*
|
||||||
|
* Requires NOZZLE_PARK_FEATURE to park print head in case MMU unit fails.
|
||||||
|
* Requires EXTRUDERS = 5
|
||||||
|
*
|
||||||
|
* For additional configuration see Configuration_adv.h
|
||||||
|
*/
|
||||||
|
//#define PRUSA_MMU2
|
||||||
|
|
||||||
// A dual extruder that uses a single stepper motor
|
// A dual extruder that uses a single stepper motor
|
||||||
//#define SWITCHING_EXTRUDER
|
//#define SWITCHING_EXTRUDER
|
||||||
#if ENABLED(SWITCHING_EXTRUDER)
|
#if ENABLED(SWITCHING_EXTRUDER)
|
||||||
|
@ -2103,6 +2103,59 @@
|
|||||||
#define WIFI_PWD "Wifi Password"
|
#define WIFI_PWD "Wifi Password"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
* Enable in Configuration.h
|
||||||
|
*/
|
||||||
|
#if ENABLED(PRUSA_MMU2)
|
||||||
|
|
||||||
|
// Serial port used for communication with MMU2.
|
||||||
|
// For AVR enable the UART port used for the MMU. (e.g., internalSerial)
|
||||||
|
// For 32-bit boards check your HAL for available serial ports. (e.g., Serial2)
|
||||||
|
#define INTERNAL_SERIAL_PORT 2
|
||||||
|
#define MMU2_SERIAL internalSerial
|
||||||
|
|
||||||
|
// Use hardware reset for MMU if a pin is defined for it
|
||||||
|
//#define MMU2_RST_PIN 23
|
||||||
|
|
||||||
|
// Enable if the MMU2 has 12V stepper motors (MMU2 Firmware 1.0.2 and up)
|
||||||
|
//#define MMU2_MODE_12V
|
||||||
|
|
||||||
|
// G-code to execute when MMU2 F.I.N.D.A. probe detects filament runout
|
||||||
|
#define MMU2_FILAMENT_RUNOUT_SCRIPT "M600"
|
||||||
|
|
||||||
|
// Add an LCD menu for MMU2
|
||||||
|
//#define MMU2_MENUS
|
||||||
|
#if ENABLED(MMU2_MENUS)
|
||||||
|
// Settings for filament load / unload from the LCD menu.
|
||||||
|
// This is for Prusa MK3-style extruders. Customize for your hardware.
|
||||||
|
#define MMU2_FILAMENTCHANGE_EJECT_FEED 80.0
|
||||||
|
#define MMU2_LOAD_TO_NOZZLE_SEQUENCE \
|
||||||
|
{ 7.2, 562 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 36.0, 1393 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 50.0, 198 }
|
||||||
|
|
||||||
|
#define MMU2_RAMMING_SEQUENCE \
|
||||||
|
{ 1.0, 1000 }, \
|
||||||
|
{ 1.0, 1500 }, \
|
||||||
|
{ 2.0, 2000 }, \
|
||||||
|
{ 1.5, 3000 }, \
|
||||||
|
{ 2.5, 4000 }, \
|
||||||
|
{ -15.0, 5000 }, \
|
||||||
|
{ -14.0, 1200 }, \
|
||||||
|
{ -6.0, 600 }, \
|
||||||
|
{ 10.0, 700 }, \
|
||||||
|
{ -10.0, 400 }, \
|
||||||
|
{ -50.0, 2000 }
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
//#define MMU2_DEBUG // Write debug info to serial output
|
||||||
|
|
||||||
|
#endif // PRUSA_MMU2
|
||||||
|
|
||||||
// @section develop
|
// @section develop
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -174,6 +174,16 @@
|
|||||||
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
*
|
||||||
|
* Requires NOZZLE_PARK_FEATURE to park print head in case MMU unit fails.
|
||||||
|
* Requires EXTRUDERS = 5
|
||||||
|
*
|
||||||
|
* For additional configuration see Configuration_adv.h
|
||||||
|
*/
|
||||||
|
//#define PRUSA_MMU2
|
||||||
|
|
||||||
// A dual extruder that uses a single stepper motor
|
// A dual extruder that uses a single stepper motor
|
||||||
//#define SWITCHING_EXTRUDER
|
//#define SWITCHING_EXTRUDER
|
||||||
#if ENABLED(SWITCHING_EXTRUDER)
|
#if ENABLED(SWITCHING_EXTRUDER)
|
||||||
|
@ -2103,6 +2103,59 @@
|
|||||||
#define WIFI_PWD "Wifi Password"
|
#define WIFI_PWD "Wifi Password"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
* Enable in Configuration.h
|
||||||
|
*/
|
||||||
|
#if ENABLED(PRUSA_MMU2)
|
||||||
|
|
||||||
|
// Serial port used for communication with MMU2.
|
||||||
|
// For AVR enable the UART port used for the MMU. (e.g., internalSerial)
|
||||||
|
// For 32-bit boards check your HAL for available serial ports. (e.g., Serial2)
|
||||||
|
#define INTERNAL_SERIAL_PORT 2
|
||||||
|
#define MMU2_SERIAL internalSerial
|
||||||
|
|
||||||
|
// Use hardware reset for MMU if a pin is defined for it
|
||||||
|
//#define MMU2_RST_PIN 23
|
||||||
|
|
||||||
|
// Enable if the MMU2 has 12V stepper motors (MMU2 Firmware 1.0.2 and up)
|
||||||
|
//#define MMU2_MODE_12V
|
||||||
|
|
||||||
|
// G-code to execute when MMU2 F.I.N.D.A. probe detects filament runout
|
||||||
|
#define MMU2_FILAMENT_RUNOUT_SCRIPT "M600"
|
||||||
|
|
||||||
|
// Add an LCD menu for MMU2
|
||||||
|
//#define MMU2_MENUS
|
||||||
|
#if ENABLED(MMU2_MENUS)
|
||||||
|
// Settings for filament load / unload from the LCD menu.
|
||||||
|
// This is for Prusa MK3-style extruders. Customize for your hardware.
|
||||||
|
#define MMU2_FILAMENTCHANGE_EJECT_FEED 80.0
|
||||||
|
#define MMU2_LOAD_TO_NOZZLE_SEQUENCE \
|
||||||
|
{ 7.2, 562 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 36.0, 1393 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 50.0, 198 }
|
||||||
|
|
||||||
|
#define MMU2_RAMMING_SEQUENCE \
|
||||||
|
{ 1.0, 1000 }, \
|
||||||
|
{ 1.0, 1500 }, \
|
||||||
|
{ 2.0, 2000 }, \
|
||||||
|
{ 1.5, 3000 }, \
|
||||||
|
{ 2.5, 4000 }, \
|
||||||
|
{ -15.0, 5000 }, \
|
||||||
|
{ -14.0, 1200 }, \
|
||||||
|
{ -6.0, 600 }, \
|
||||||
|
{ 10.0, 700 }, \
|
||||||
|
{ -10.0, 400 }, \
|
||||||
|
{ -50.0, 2000 }
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
//#define MMU2_DEBUG // Write debug info to serial output
|
||||||
|
|
||||||
|
#endif // PRUSA_MMU2
|
||||||
|
|
||||||
// @section develop
|
// @section develop
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -174,6 +174,16 @@
|
|||||||
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
*
|
||||||
|
* Requires NOZZLE_PARK_FEATURE to park print head in case MMU unit fails.
|
||||||
|
* Requires EXTRUDERS = 5
|
||||||
|
*
|
||||||
|
* For additional configuration see Configuration_adv.h
|
||||||
|
*/
|
||||||
|
//#define PRUSA_MMU2
|
||||||
|
|
||||||
// A dual extruder that uses a single stepper motor
|
// A dual extruder that uses a single stepper motor
|
||||||
//#define SWITCHING_EXTRUDER
|
//#define SWITCHING_EXTRUDER
|
||||||
#if ENABLED(SWITCHING_EXTRUDER)
|
#if ENABLED(SWITCHING_EXTRUDER)
|
||||||
|
@ -2102,6 +2102,59 @@
|
|||||||
#define WIFI_PWD "Wifi Password"
|
#define WIFI_PWD "Wifi Password"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
* Enable in Configuration.h
|
||||||
|
*/
|
||||||
|
#if ENABLED(PRUSA_MMU2)
|
||||||
|
|
||||||
|
// Serial port used for communication with MMU2.
|
||||||
|
// For AVR enable the UART port used for the MMU. (e.g., internalSerial)
|
||||||
|
// For 32-bit boards check your HAL for available serial ports. (e.g., Serial2)
|
||||||
|
#define INTERNAL_SERIAL_PORT 2
|
||||||
|
#define MMU2_SERIAL internalSerial
|
||||||
|
|
||||||
|
// Use hardware reset for MMU if a pin is defined for it
|
||||||
|
//#define MMU2_RST_PIN 23
|
||||||
|
|
||||||
|
// Enable if the MMU2 has 12V stepper motors (MMU2 Firmware 1.0.2 and up)
|
||||||
|
//#define MMU2_MODE_12V
|
||||||
|
|
||||||
|
// G-code to execute when MMU2 F.I.N.D.A. probe detects filament runout
|
||||||
|
#define MMU2_FILAMENT_RUNOUT_SCRIPT "M600"
|
||||||
|
|
||||||
|
// Add an LCD menu for MMU2
|
||||||
|
//#define MMU2_MENUS
|
||||||
|
#if ENABLED(MMU2_MENUS)
|
||||||
|
// Settings for filament load / unload from the LCD menu.
|
||||||
|
// This is for Prusa MK3-style extruders. Customize for your hardware.
|
||||||
|
#define MMU2_FILAMENTCHANGE_EJECT_FEED 80.0
|
||||||
|
#define MMU2_LOAD_TO_NOZZLE_SEQUENCE \
|
||||||
|
{ 7.2, 562 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 36.0, 1393 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 50.0, 198 }
|
||||||
|
|
||||||
|
#define MMU2_RAMMING_SEQUENCE \
|
||||||
|
{ 1.0, 1000 }, \
|
||||||
|
{ 1.0, 1500 }, \
|
||||||
|
{ 2.0, 2000 }, \
|
||||||
|
{ 1.5, 3000 }, \
|
||||||
|
{ 2.5, 4000 }, \
|
||||||
|
{ -15.0, 5000 }, \
|
||||||
|
{ -14.0, 1200 }, \
|
||||||
|
{ -6.0, 600 }, \
|
||||||
|
{ 10.0, 700 }, \
|
||||||
|
{ -10.0, 400 }, \
|
||||||
|
{ -50.0, 2000 }
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
//#define MMU2_DEBUG // Write debug info to serial output
|
||||||
|
|
||||||
|
#endif // PRUSA_MMU2
|
||||||
|
|
||||||
// @section develop
|
// @section develop
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -175,6 +175,16 @@
|
|||||||
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
*
|
||||||
|
* Requires NOZZLE_PARK_FEATURE to park print head in case MMU unit fails.
|
||||||
|
* Requires EXTRUDERS = 5
|
||||||
|
*
|
||||||
|
* For additional configuration see Configuration_adv.h
|
||||||
|
*/
|
||||||
|
//#define PRUSA_MMU2
|
||||||
|
|
||||||
// A dual extruder that uses a single stepper motor
|
// A dual extruder that uses a single stepper motor
|
||||||
//#define SWITCHING_EXTRUDER
|
//#define SWITCHING_EXTRUDER
|
||||||
#if ENABLED(SWITCHING_EXTRUDER)
|
#if ENABLED(SWITCHING_EXTRUDER)
|
||||||
|
@ -2103,6 +2103,59 @@
|
|||||||
#define WIFI_PWD "Wifi Password"
|
#define WIFI_PWD "Wifi Password"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
* Enable in Configuration.h
|
||||||
|
*/
|
||||||
|
#if ENABLED(PRUSA_MMU2)
|
||||||
|
|
||||||
|
// Serial port used for communication with MMU2.
|
||||||
|
// For AVR enable the UART port used for the MMU. (e.g., internalSerial)
|
||||||
|
// For 32-bit boards check your HAL for available serial ports. (e.g., Serial2)
|
||||||
|
#define INTERNAL_SERIAL_PORT 2
|
||||||
|
#define MMU2_SERIAL internalSerial
|
||||||
|
|
||||||
|
// Use hardware reset for MMU if a pin is defined for it
|
||||||
|
//#define MMU2_RST_PIN 23
|
||||||
|
|
||||||
|
// Enable if the MMU2 has 12V stepper motors (MMU2 Firmware 1.0.2 and up)
|
||||||
|
//#define MMU2_MODE_12V
|
||||||
|
|
||||||
|
// G-code to execute when MMU2 F.I.N.D.A. probe detects filament runout
|
||||||
|
#define MMU2_FILAMENT_RUNOUT_SCRIPT "M600"
|
||||||
|
|
||||||
|
// Add an LCD menu for MMU2
|
||||||
|
//#define MMU2_MENUS
|
||||||
|
#if ENABLED(MMU2_MENUS)
|
||||||
|
// Settings for filament load / unload from the LCD menu.
|
||||||
|
// This is for Prusa MK3-style extruders. Customize for your hardware.
|
||||||
|
#define MMU2_FILAMENTCHANGE_EJECT_FEED 80.0
|
||||||
|
#define MMU2_LOAD_TO_NOZZLE_SEQUENCE \
|
||||||
|
{ 7.2, 562 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 36.0, 1393 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 50.0, 198 }
|
||||||
|
|
||||||
|
#define MMU2_RAMMING_SEQUENCE \
|
||||||
|
{ 1.0, 1000 }, \
|
||||||
|
{ 1.0, 1500 }, \
|
||||||
|
{ 2.0, 2000 }, \
|
||||||
|
{ 1.5, 3000 }, \
|
||||||
|
{ 2.5, 4000 }, \
|
||||||
|
{ -15.0, 5000 }, \
|
||||||
|
{ -14.0, 1200 }, \
|
||||||
|
{ -6.0, 600 }, \
|
||||||
|
{ 10.0, 700 }, \
|
||||||
|
{ -10.0, 400 }, \
|
||||||
|
{ -50.0, 2000 }
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
//#define MMU2_DEBUG // Write debug info to serial output
|
||||||
|
|
||||||
|
#endif // PRUSA_MMU2
|
||||||
|
|
||||||
// @section develop
|
// @section develop
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -175,6 +175,16 @@
|
|||||||
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
*
|
||||||
|
* Requires NOZZLE_PARK_FEATURE to park print head in case MMU unit fails.
|
||||||
|
* Requires EXTRUDERS = 5
|
||||||
|
*
|
||||||
|
* For additional configuration see Configuration_adv.h
|
||||||
|
*/
|
||||||
|
//#define PRUSA_MMU2
|
||||||
|
|
||||||
// A dual extruder that uses a single stepper motor
|
// A dual extruder that uses a single stepper motor
|
||||||
//#define SWITCHING_EXTRUDER
|
//#define SWITCHING_EXTRUDER
|
||||||
#if ENABLED(SWITCHING_EXTRUDER)
|
#if ENABLED(SWITCHING_EXTRUDER)
|
||||||
|
@ -2104,6 +2104,59 @@
|
|||||||
#define WIFI_PWD "Wifi Password"
|
#define WIFI_PWD "Wifi Password"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
* Enable in Configuration.h
|
||||||
|
*/
|
||||||
|
#if ENABLED(PRUSA_MMU2)
|
||||||
|
|
||||||
|
// Serial port used for communication with MMU2.
|
||||||
|
// For AVR enable the UART port used for the MMU. (e.g., internalSerial)
|
||||||
|
// For 32-bit boards check your HAL for available serial ports. (e.g., Serial2)
|
||||||
|
#define INTERNAL_SERIAL_PORT 2
|
||||||
|
#define MMU2_SERIAL internalSerial
|
||||||
|
|
||||||
|
// Use hardware reset for MMU if a pin is defined for it
|
||||||
|
//#define MMU2_RST_PIN 23
|
||||||
|
|
||||||
|
// Enable if the MMU2 has 12V stepper motors (MMU2 Firmware 1.0.2 and up)
|
||||||
|
//#define MMU2_MODE_12V
|
||||||
|
|
||||||
|
// G-code to execute when MMU2 F.I.N.D.A. probe detects filament runout
|
||||||
|
#define MMU2_FILAMENT_RUNOUT_SCRIPT "M600"
|
||||||
|
|
||||||
|
// Add an LCD menu for MMU2
|
||||||
|
//#define MMU2_MENUS
|
||||||
|
#if ENABLED(MMU2_MENUS)
|
||||||
|
// Settings for filament load / unload from the LCD menu.
|
||||||
|
// This is for Prusa MK3-style extruders. Customize for your hardware.
|
||||||
|
#define MMU2_FILAMENTCHANGE_EJECT_FEED 80.0
|
||||||
|
#define MMU2_LOAD_TO_NOZZLE_SEQUENCE \
|
||||||
|
{ 7.2, 562 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 36.0, 1393 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 50.0, 198 }
|
||||||
|
|
||||||
|
#define MMU2_RAMMING_SEQUENCE \
|
||||||
|
{ 1.0, 1000 }, \
|
||||||
|
{ 1.0, 1500 }, \
|
||||||
|
{ 2.0, 2000 }, \
|
||||||
|
{ 1.5, 3000 }, \
|
||||||
|
{ 2.5, 4000 }, \
|
||||||
|
{ -15.0, 5000 }, \
|
||||||
|
{ -14.0, 1200 }, \
|
||||||
|
{ -6.0, 600 }, \
|
||||||
|
{ 10.0, 700 }, \
|
||||||
|
{ -10.0, 400 }, \
|
||||||
|
{ -50.0, 2000 }
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
//#define MMU2_DEBUG // Write debug info to serial output
|
||||||
|
|
||||||
|
#endif // PRUSA_MMU2
|
||||||
|
|
||||||
// @section develop
|
// @section develop
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -174,6 +174,16 @@
|
|||||||
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
*
|
||||||
|
* Requires NOZZLE_PARK_FEATURE to park print head in case MMU unit fails.
|
||||||
|
* Requires EXTRUDERS = 5
|
||||||
|
*
|
||||||
|
* For additional configuration see Configuration_adv.h
|
||||||
|
*/
|
||||||
|
//#define PRUSA_MMU2
|
||||||
|
|
||||||
// A dual extruder that uses a single stepper motor
|
// A dual extruder that uses a single stepper motor
|
||||||
//#define SWITCHING_EXTRUDER
|
//#define SWITCHING_EXTRUDER
|
||||||
#if ENABLED(SWITCHING_EXTRUDER)
|
#if ENABLED(SWITCHING_EXTRUDER)
|
||||||
|
@ -2108,6 +2108,59 @@
|
|||||||
#define WIFI_PWD "Wifi Password"
|
#define WIFI_PWD "Wifi Password"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
* Enable in Configuration.h
|
||||||
|
*/
|
||||||
|
#if ENABLED(PRUSA_MMU2)
|
||||||
|
|
||||||
|
// Serial port used for communication with MMU2.
|
||||||
|
// For AVR enable the UART port used for the MMU. (e.g., internalSerial)
|
||||||
|
// For 32-bit boards check your HAL for available serial ports. (e.g., Serial2)
|
||||||
|
#define INTERNAL_SERIAL_PORT 2
|
||||||
|
#define MMU2_SERIAL internalSerial
|
||||||
|
|
||||||
|
// Use hardware reset for MMU if a pin is defined for it
|
||||||
|
//#define MMU2_RST_PIN 23
|
||||||
|
|
||||||
|
// Enable if the MMU2 has 12V stepper motors (MMU2 Firmware 1.0.2 and up)
|
||||||
|
//#define MMU2_MODE_12V
|
||||||
|
|
||||||
|
// G-code to execute when MMU2 F.I.N.D.A. probe detects filament runout
|
||||||
|
#define MMU2_FILAMENT_RUNOUT_SCRIPT "M600"
|
||||||
|
|
||||||
|
// Add an LCD menu for MMU2
|
||||||
|
//#define MMU2_MENUS
|
||||||
|
#if ENABLED(MMU2_MENUS)
|
||||||
|
// Settings for filament load / unload from the LCD menu.
|
||||||
|
// This is for Prusa MK3-style extruders. Customize for your hardware.
|
||||||
|
#define MMU2_FILAMENTCHANGE_EJECT_FEED 80.0
|
||||||
|
#define MMU2_LOAD_TO_NOZZLE_SEQUENCE \
|
||||||
|
{ 7.2, 562 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 36.0, 1393 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 50.0, 198 }
|
||||||
|
|
||||||
|
#define MMU2_RAMMING_SEQUENCE \
|
||||||
|
{ 1.0, 1000 }, \
|
||||||
|
{ 1.0, 1500 }, \
|
||||||
|
{ 2.0, 2000 }, \
|
||||||
|
{ 1.5, 3000 }, \
|
||||||
|
{ 2.5, 4000 }, \
|
||||||
|
{ -15.0, 5000 }, \
|
||||||
|
{ -14.0, 1200 }, \
|
||||||
|
{ -6.0, 600 }, \
|
||||||
|
{ 10.0, 700 }, \
|
||||||
|
{ -10.0, 400 }, \
|
||||||
|
{ -50.0, 2000 }
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
//#define MMU2_DEBUG // Write debug info to serial output
|
||||||
|
|
||||||
|
#endif // PRUSA_MMU2
|
||||||
|
|
||||||
// @section develop
|
// @section develop
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -174,6 +174,16 @@
|
|||||||
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
*
|
||||||
|
* Requires NOZZLE_PARK_FEATURE to park print head in case MMU unit fails.
|
||||||
|
* Requires EXTRUDERS = 5
|
||||||
|
*
|
||||||
|
* For additional configuration see Configuration_adv.h
|
||||||
|
*/
|
||||||
|
//#define PRUSA_MMU2
|
||||||
|
|
||||||
// A dual extruder that uses a single stepper motor
|
// A dual extruder that uses a single stepper motor
|
||||||
//#define SWITCHING_EXTRUDER
|
//#define SWITCHING_EXTRUDER
|
||||||
#if ENABLED(SWITCHING_EXTRUDER)
|
#if ENABLED(SWITCHING_EXTRUDER)
|
||||||
|
@ -174,6 +174,16 @@
|
|||||||
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
*
|
||||||
|
* Requires NOZZLE_PARK_FEATURE to park print head in case MMU unit fails.
|
||||||
|
* Requires EXTRUDERS = 5
|
||||||
|
*
|
||||||
|
* For additional configuration see Configuration_adv.h
|
||||||
|
*/
|
||||||
|
//#define PRUSA_MMU2
|
||||||
|
|
||||||
// A dual extruder that uses a single stepper motor
|
// A dual extruder that uses a single stepper motor
|
||||||
//#define SWITCHING_EXTRUDER
|
//#define SWITCHING_EXTRUDER
|
||||||
#if ENABLED(SWITCHING_EXTRUDER)
|
#if ENABLED(SWITCHING_EXTRUDER)
|
||||||
|
@ -2102,6 +2102,59 @@
|
|||||||
#define WIFI_PWD "Wifi Password"
|
#define WIFI_PWD "Wifi Password"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
* Enable in Configuration.h
|
||||||
|
*/
|
||||||
|
#if ENABLED(PRUSA_MMU2)
|
||||||
|
|
||||||
|
// Serial port used for communication with MMU2.
|
||||||
|
// For AVR enable the UART port used for the MMU. (e.g., internalSerial)
|
||||||
|
// For 32-bit boards check your HAL for available serial ports. (e.g., Serial2)
|
||||||
|
#define INTERNAL_SERIAL_PORT 2
|
||||||
|
#define MMU2_SERIAL internalSerial
|
||||||
|
|
||||||
|
// Use hardware reset for MMU if a pin is defined for it
|
||||||
|
//#define MMU2_RST_PIN 23
|
||||||
|
|
||||||
|
// Enable if the MMU2 has 12V stepper motors (MMU2 Firmware 1.0.2 and up)
|
||||||
|
//#define MMU2_MODE_12V
|
||||||
|
|
||||||
|
// G-code to execute when MMU2 F.I.N.D.A. probe detects filament runout
|
||||||
|
#define MMU2_FILAMENT_RUNOUT_SCRIPT "M600"
|
||||||
|
|
||||||
|
// Add an LCD menu for MMU2
|
||||||
|
//#define MMU2_MENUS
|
||||||
|
#if ENABLED(MMU2_MENUS)
|
||||||
|
// Settings for filament load / unload from the LCD menu.
|
||||||
|
// This is for Prusa MK3-style extruders. Customize for your hardware.
|
||||||
|
#define MMU2_FILAMENTCHANGE_EJECT_FEED 80.0
|
||||||
|
#define MMU2_LOAD_TO_NOZZLE_SEQUENCE \
|
||||||
|
{ 7.2, 562 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 36.0, 1393 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 50.0, 198 }
|
||||||
|
|
||||||
|
#define MMU2_RAMMING_SEQUENCE \
|
||||||
|
{ 1.0, 1000 }, \
|
||||||
|
{ 1.0, 1500 }, \
|
||||||
|
{ 2.0, 2000 }, \
|
||||||
|
{ 1.5, 3000 }, \
|
||||||
|
{ 2.5, 4000 }, \
|
||||||
|
{ -15.0, 5000 }, \
|
||||||
|
{ -14.0, 1200 }, \
|
||||||
|
{ -6.0, 600 }, \
|
||||||
|
{ 10.0, 700 }, \
|
||||||
|
{ -10.0, 400 }, \
|
||||||
|
{ -50.0, 2000 }
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
//#define MMU2_DEBUG // Write debug info to serial output
|
||||||
|
|
||||||
|
#endif // PRUSA_MMU2
|
||||||
|
|
||||||
// @section develop
|
// @section develop
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -174,6 +174,16 @@
|
|||||||
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
*
|
||||||
|
* Requires NOZZLE_PARK_FEATURE to park print head in case MMU unit fails.
|
||||||
|
* Requires EXTRUDERS = 5
|
||||||
|
*
|
||||||
|
* For additional configuration see Configuration_adv.h
|
||||||
|
*/
|
||||||
|
//#define PRUSA_MMU2
|
||||||
|
|
||||||
// A dual extruder that uses a single stepper motor
|
// A dual extruder that uses a single stepper motor
|
||||||
//#define SWITCHING_EXTRUDER
|
//#define SWITCHING_EXTRUDER
|
||||||
#if ENABLED(SWITCHING_EXTRUDER)
|
#if ENABLED(SWITCHING_EXTRUDER)
|
||||||
|
@ -2103,6 +2103,59 @@
|
|||||||
#define WIFI_PWD "Wifi Password"
|
#define WIFI_PWD "Wifi Password"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
* Enable in Configuration.h
|
||||||
|
*/
|
||||||
|
#if ENABLED(PRUSA_MMU2)
|
||||||
|
|
||||||
|
// Serial port used for communication with MMU2.
|
||||||
|
// For AVR enable the UART port used for the MMU. (e.g., internalSerial)
|
||||||
|
// For 32-bit boards check your HAL for available serial ports. (e.g., Serial2)
|
||||||
|
#define INTERNAL_SERIAL_PORT 2
|
||||||
|
#define MMU2_SERIAL internalSerial
|
||||||
|
|
||||||
|
// Use hardware reset for MMU if a pin is defined for it
|
||||||
|
//#define MMU2_RST_PIN 23
|
||||||
|
|
||||||
|
// Enable if the MMU2 has 12V stepper motors (MMU2 Firmware 1.0.2 and up)
|
||||||
|
//#define MMU2_MODE_12V
|
||||||
|
|
||||||
|
// G-code to execute when MMU2 F.I.N.D.A. probe detects filament runout
|
||||||
|
#define MMU2_FILAMENT_RUNOUT_SCRIPT "M600"
|
||||||
|
|
||||||
|
// Add an LCD menu for MMU2
|
||||||
|
//#define MMU2_MENUS
|
||||||
|
#if ENABLED(MMU2_MENUS)
|
||||||
|
// Settings for filament load / unload from the LCD menu.
|
||||||
|
// This is for Prusa MK3-style extruders. Customize for your hardware.
|
||||||
|
#define MMU2_FILAMENTCHANGE_EJECT_FEED 80.0
|
||||||
|
#define MMU2_LOAD_TO_NOZZLE_SEQUENCE \
|
||||||
|
{ 7.2, 562 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 36.0, 1393 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 50.0, 198 }
|
||||||
|
|
||||||
|
#define MMU2_RAMMING_SEQUENCE \
|
||||||
|
{ 1.0, 1000 }, \
|
||||||
|
{ 1.0, 1500 }, \
|
||||||
|
{ 2.0, 2000 }, \
|
||||||
|
{ 1.5, 3000 }, \
|
||||||
|
{ 2.5, 4000 }, \
|
||||||
|
{ -15.0, 5000 }, \
|
||||||
|
{ -14.0, 1200 }, \
|
||||||
|
{ -6.0, 600 }, \
|
||||||
|
{ 10.0, 700 }, \
|
||||||
|
{ -10.0, 400 }, \
|
||||||
|
{ -50.0, 2000 }
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
//#define MMU2_DEBUG // Write debug info to serial output
|
||||||
|
|
||||||
|
#endif // PRUSA_MMU2
|
||||||
|
|
||||||
// @section develop
|
// @section develop
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -174,6 +174,16 @@
|
|||||||
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
*
|
||||||
|
* Requires NOZZLE_PARK_FEATURE to park print head in case MMU unit fails.
|
||||||
|
* Requires EXTRUDERS = 5
|
||||||
|
*
|
||||||
|
* For additional configuration see Configuration_adv.h
|
||||||
|
*/
|
||||||
|
//#define PRUSA_MMU2
|
||||||
|
|
||||||
// A dual extruder that uses a single stepper motor
|
// A dual extruder that uses a single stepper motor
|
||||||
//#define SWITCHING_EXTRUDER
|
//#define SWITCHING_EXTRUDER
|
||||||
#if ENABLED(SWITCHING_EXTRUDER)
|
#if ENABLED(SWITCHING_EXTRUDER)
|
||||||
|
@ -2103,6 +2103,59 @@
|
|||||||
#define WIFI_PWD "Wifi Password"
|
#define WIFI_PWD "Wifi Password"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
* Enable in Configuration.h
|
||||||
|
*/
|
||||||
|
#if ENABLED(PRUSA_MMU2)
|
||||||
|
|
||||||
|
// Serial port used for communication with MMU2.
|
||||||
|
// For AVR enable the UART port used for the MMU. (e.g., internalSerial)
|
||||||
|
// For 32-bit boards check your HAL for available serial ports. (e.g., Serial2)
|
||||||
|
#define INTERNAL_SERIAL_PORT 2
|
||||||
|
#define MMU2_SERIAL internalSerial
|
||||||
|
|
||||||
|
// Use hardware reset for MMU if a pin is defined for it
|
||||||
|
//#define MMU2_RST_PIN 23
|
||||||
|
|
||||||
|
// Enable if the MMU2 has 12V stepper motors (MMU2 Firmware 1.0.2 and up)
|
||||||
|
//#define MMU2_MODE_12V
|
||||||
|
|
||||||
|
// G-code to execute when MMU2 F.I.N.D.A. probe detects filament runout
|
||||||
|
#define MMU2_FILAMENT_RUNOUT_SCRIPT "M600"
|
||||||
|
|
||||||
|
// Add an LCD menu for MMU2
|
||||||
|
//#define MMU2_MENUS
|
||||||
|
#if ENABLED(MMU2_MENUS)
|
||||||
|
// Settings for filament load / unload from the LCD menu.
|
||||||
|
// This is for Prusa MK3-style extruders. Customize for your hardware.
|
||||||
|
#define MMU2_FILAMENTCHANGE_EJECT_FEED 80.0
|
||||||
|
#define MMU2_LOAD_TO_NOZZLE_SEQUENCE \
|
||||||
|
{ 7.2, 562 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 36.0, 1393 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 50.0, 198 }
|
||||||
|
|
||||||
|
#define MMU2_RAMMING_SEQUENCE \
|
||||||
|
{ 1.0, 1000 }, \
|
||||||
|
{ 1.0, 1500 }, \
|
||||||
|
{ 2.0, 2000 }, \
|
||||||
|
{ 1.5, 3000 }, \
|
||||||
|
{ 2.5, 4000 }, \
|
||||||
|
{ -15.0, 5000 }, \
|
||||||
|
{ -14.0, 1200 }, \
|
||||||
|
{ -6.0, 600 }, \
|
||||||
|
{ 10.0, 700 }, \
|
||||||
|
{ -10.0, 400 }, \
|
||||||
|
{ -50.0, 2000 }
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
//#define MMU2_DEBUG // Write debug info to serial output
|
||||||
|
|
||||||
|
#endif // PRUSA_MMU2
|
||||||
|
|
||||||
// @section develop
|
// @section develop
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -182,6 +182,16 @@
|
|||||||
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
*
|
||||||
|
* Requires NOZZLE_PARK_FEATURE to park print head in case MMU unit fails.
|
||||||
|
* Requires EXTRUDERS = 5
|
||||||
|
*
|
||||||
|
* For additional configuration see Configuration_adv.h
|
||||||
|
*/
|
||||||
|
//#define PRUSA_MMU2
|
||||||
|
|
||||||
// A dual extruder that uses a single stepper motor
|
// A dual extruder that uses a single stepper motor
|
||||||
//#define SWITCHING_EXTRUDER
|
//#define SWITCHING_EXTRUDER
|
||||||
#if ENABLED(SWITCHING_EXTRUDER)
|
#if ENABLED(SWITCHING_EXTRUDER)
|
||||||
|
@ -2111,6 +2111,59 @@
|
|||||||
#define WIFI_PWD "Wifi Password"
|
#define WIFI_PWD "Wifi Password"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
* Enable in Configuration.h
|
||||||
|
*/
|
||||||
|
#if ENABLED(PRUSA_MMU2)
|
||||||
|
|
||||||
|
// Serial port used for communication with MMU2.
|
||||||
|
// For AVR enable the UART port used for the MMU. (e.g., internalSerial)
|
||||||
|
// For 32-bit boards check your HAL for available serial ports. (e.g., Serial2)
|
||||||
|
#define INTERNAL_SERIAL_PORT 2
|
||||||
|
#define MMU2_SERIAL internalSerial
|
||||||
|
|
||||||
|
// Use hardware reset for MMU if a pin is defined for it
|
||||||
|
//#define MMU2_RST_PIN 23
|
||||||
|
|
||||||
|
// Enable if the MMU2 has 12V stepper motors (MMU2 Firmware 1.0.2 and up)
|
||||||
|
//#define MMU2_MODE_12V
|
||||||
|
|
||||||
|
// G-code to execute when MMU2 F.I.N.D.A. probe detects filament runout
|
||||||
|
#define MMU2_FILAMENT_RUNOUT_SCRIPT "M600"
|
||||||
|
|
||||||
|
// Add an LCD menu for MMU2
|
||||||
|
//#define MMU2_MENUS
|
||||||
|
#if ENABLED(MMU2_MENUS)
|
||||||
|
// Settings for filament load / unload from the LCD menu.
|
||||||
|
// This is for Prusa MK3-style extruders. Customize for your hardware.
|
||||||
|
#define MMU2_FILAMENTCHANGE_EJECT_FEED 80.0
|
||||||
|
#define MMU2_LOAD_TO_NOZZLE_SEQUENCE \
|
||||||
|
{ 7.2, 562 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 36.0, 1393 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 50.0, 198 }
|
||||||
|
|
||||||
|
#define MMU2_RAMMING_SEQUENCE \
|
||||||
|
{ 1.0, 1000 }, \
|
||||||
|
{ 1.0, 1500 }, \
|
||||||
|
{ 2.0, 2000 }, \
|
||||||
|
{ 1.5, 3000 }, \
|
||||||
|
{ 2.5, 4000 }, \
|
||||||
|
{ -15.0, 5000 }, \
|
||||||
|
{ -14.0, 1200 }, \
|
||||||
|
{ -6.0, 600 }, \
|
||||||
|
{ 10.0, 700 }, \
|
||||||
|
{ -10.0, 400 }, \
|
||||||
|
{ -50.0, 2000 }
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
//#define MMU2_DEBUG // Write debug info to serial output
|
||||||
|
|
||||||
|
#endif // PRUSA_MMU2
|
||||||
|
|
||||||
// @section develop
|
// @section develop
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -174,6 +174,16 @@
|
|||||||
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
*
|
||||||
|
* Requires NOZZLE_PARK_FEATURE to park print head in case MMU unit fails.
|
||||||
|
* Requires EXTRUDERS = 5
|
||||||
|
*
|
||||||
|
* For additional configuration see Configuration_adv.h
|
||||||
|
*/
|
||||||
|
//#define PRUSA_MMU2
|
||||||
|
|
||||||
// A dual extruder that uses a single stepper motor
|
// A dual extruder that uses a single stepper motor
|
||||||
//#define SWITCHING_EXTRUDER
|
//#define SWITCHING_EXTRUDER
|
||||||
#if ENABLED(SWITCHING_EXTRUDER)
|
#if ENABLED(SWITCHING_EXTRUDER)
|
||||||
|
@ -2103,6 +2103,59 @@
|
|||||||
#define WIFI_PWD "Wifi Password"
|
#define WIFI_PWD "Wifi Password"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
* Enable in Configuration.h
|
||||||
|
*/
|
||||||
|
#if ENABLED(PRUSA_MMU2)
|
||||||
|
|
||||||
|
// Serial port used for communication with MMU2.
|
||||||
|
// For AVR enable the UART port used for the MMU. (e.g., internalSerial)
|
||||||
|
// For 32-bit boards check your HAL for available serial ports. (e.g., Serial2)
|
||||||
|
#define INTERNAL_SERIAL_PORT 2
|
||||||
|
#define MMU2_SERIAL internalSerial
|
||||||
|
|
||||||
|
// Use hardware reset for MMU if a pin is defined for it
|
||||||
|
//#define MMU2_RST_PIN 23
|
||||||
|
|
||||||
|
// Enable if the MMU2 has 12V stepper motors (MMU2 Firmware 1.0.2 and up)
|
||||||
|
//#define MMU2_MODE_12V
|
||||||
|
|
||||||
|
// G-code to execute when MMU2 F.I.N.D.A. probe detects filament runout
|
||||||
|
#define MMU2_FILAMENT_RUNOUT_SCRIPT "M600"
|
||||||
|
|
||||||
|
// Add an LCD menu for MMU2
|
||||||
|
//#define MMU2_MENUS
|
||||||
|
#if ENABLED(MMU2_MENUS)
|
||||||
|
// Settings for filament load / unload from the LCD menu.
|
||||||
|
// This is for Prusa MK3-style extruders. Customize for your hardware.
|
||||||
|
#define MMU2_FILAMENTCHANGE_EJECT_FEED 80.0
|
||||||
|
#define MMU2_LOAD_TO_NOZZLE_SEQUENCE \
|
||||||
|
{ 7.2, 562 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 36.0, 1393 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 50.0, 198 }
|
||||||
|
|
||||||
|
#define MMU2_RAMMING_SEQUENCE \
|
||||||
|
{ 1.0, 1000 }, \
|
||||||
|
{ 1.0, 1500 }, \
|
||||||
|
{ 2.0, 2000 }, \
|
||||||
|
{ 1.5, 3000 }, \
|
||||||
|
{ 2.5, 4000 }, \
|
||||||
|
{ -15.0, 5000 }, \
|
||||||
|
{ -14.0, 1200 }, \
|
||||||
|
{ -6.0, 600 }, \
|
||||||
|
{ 10.0, 700 }, \
|
||||||
|
{ -10.0, 400 }, \
|
||||||
|
{ -50.0, 2000 }
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
//#define MMU2_DEBUG // Write debug info to serial output
|
||||||
|
|
||||||
|
#endif // PRUSA_MMU2
|
||||||
|
|
||||||
// @section develop
|
// @section develop
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -175,6 +175,16 @@
|
|||||||
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
*
|
||||||
|
* Requires NOZZLE_PARK_FEATURE to park print head in case MMU unit fails.
|
||||||
|
* Requires EXTRUDERS = 5
|
||||||
|
*
|
||||||
|
* For additional configuration see Configuration_adv.h
|
||||||
|
*/
|
||||||
|
//#define PRUSA_MMU2
|
||||||
|
|
||||||
// A dual extruder that uses a single stepper motor
|
// A dual extruder that uses a single stepper motor
|
||||||
//#define SWITCHING_EXTRUDER
|
//#define SWITCHING_EXTRUDER
|
||||||
#if ENABLED(SWITCHING_EXTRUDER)
|
#if ENABLED(SWITCHING_EXTRUDER)
|
||||||
|
@ -2103,6 +2103,59 @@
|
|||||||
#define WIFI_PWD "Wifi Password"
|
#define WIFI_PWD "Wifi Password"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
* Enable in Configuration.h
|
||||||
|
*/
|
||||||
|
#if ENABLED(PRUSA_MMU2)
|
||||||
|
|
||||||
|
// Serial port used for communication with MMU2.
|
||||||
|
// For AVR enable the UART port used for the MMU. (e.g., internalSerial)
|
||||||
|
// For 32-bit boards check your HAL for available serial ports. (e.g., Serial2)
|
||||||
|
#define INTERNAL_SERIAL_PORT 2
|
||||||
|
#define MMU2_SERIAL internalSerial
|
||||||
|
|
||||||
|
// Use hardware reset for MMU if a pin is defined for it
|
||||||
|
//#define MMU2_RST_PIN 23
|
||||||
|
|
||||||
|
// Enable if the MMU2 has 12V stepper motors (MMU2 Firmware 1.0.2 and up)
|
||||||
|
//#define MMU2_MODE_12V
|
||||||
|
|
||||||
|
// G-code to execute when MMU2 F.I.N.D.A. probe detects filament runout
|
||||||
|
#define MMU2_FILAMENT_RUNOUT_SCRIPT "M600"
|
||||||
|
|
||||||
|
// Add an LCD menu for MMU2
|
||||||
|
//#define MMU2_MENUS
|
||||||
|
#if ENABLED(MMU2_MENUS)
|
||||||
|
// Settings for filament load / unload from the LCD menu.
|
||||||
|
// This is for Prusa MK3-style extruders. Customize for your hardware.
|
||||||
|
#define MMU2_FILAMENTCHANGE_EJECT_FEED 80.0
|
||||||
|
#define MMU2_LOAD_TO_NOZZLE_SEQUENCE \
|
||||||
|
{ 7.2, 562 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 36.0, 1393 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 50.0, 198 }
|
||||||
|
|
||||||
|
#define MMU2_RAMMING_SEQUENCE \
|
||||||
|
{ 1.0, 1000 }, \
|
||||||
|
{ 1.0, 1500 }, \
|
||||||
|
{ 2.0, 2000 }, \
|
||||||
|
{ 1.5, 3000 }, \
|
||||||
|
{ 2.5, 4000 }, \
|
||||||
|
{ -15.0, 5000 }, \
|
||||||
|
{ -14.0, 1200 }, \
|
||||||
|
{ -6.0, 600 }, \
|
||||||
|
{ 10.0, 700 }, \
|
||||||
|
{ -10.0, 400 }, \
|
||||||
|
{ -50.0, 2000 }
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
//#define MMU2_DEBUG // Write debug info to serial output
|
||||||
|
|
||||||
|
#endif // PRUSA_MMU2
|
||||||
|
|
||||||
// @section develop
|
// @section develop
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -174,6 +174,16 @@
|
|||||||
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
*
|
||||||
|
* Requires NOZZLE_PARK_FEATURE to park print head in case MMU unit fails.
|
||||||
|
* Requires EXTRUDERS = 5
|
||||||
|
*
|
||||||
|
* For additional configuration see Configuration_adv.h
|
||||||
|
*/
|
||||||
|
//#define PRUSA_MMU2
|
||||||
|
|
||||||
// A dual extruder that uses a single stepper motor
|
// A dual extruder that uses a single stepper motor
|
||||||
//#define SWITCHING_EXTRUDER
|
//#define SWITCHING_EXTRUDER
|
||||||
#if ENABLED(SWITCHING_EXTRUDER)
|
#if ENABLED(SWITCHING_EXTRUDER)
|
||||||
|
53
Marlin/src/config/examples/Creality/CR-10/Configuration_adv.h
Executable file → Normal file
53
Marlin/src/config/examples/Creality/CR-10/Configuration_adv.h
Executable file → Normal file
@ -2106,6 +2106,59 @@
|
|||||||
#define WIFI_PWD "Wifi Password"
|
#define WIFI_PWD "Wifi Password"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
* Enable in Configuration.h
|
||||||
|
*/
|
||||||
|
#if ENABLED(PRUSA_MMU2)
|
||||||
|
|
||||||
|
// Serial port used for communication with MMU2.
|
||||||
|
// For AVR enable the UART port used for the MMU. (e.g., internalSerial)
|
||||||
|
// For 32-bit boards check your HAL for available serial ports. (e.g., Serial2)
|
||||||
|
#define INTERNAL_SERIAL_PORT 2
|
||||||
|
#define MMU2_SERIAL internalSerial
|
||||||
|
|
||||||
|
// Use hardware reset for MMU if a pin is defined for it
|
||||||
|
//#define MMU2_RST_PIN 23
|
||||||
|
|
||||||
|
// Enable if the MMU2 has 12V stepper motors (MMU2 Firmware 1.0.2 and up)
|
||||||
|
//#define MMU2_MODE_12V
|
||||||
|
|
||||||
|
// G-code to execute when MMU2 F.I.N.D.A. probe detects filament runout
|
||||||
|
#define MMU2_FILAMENT_RUNOUT_SCRIPT "M600"
|
||||||
|
|
||||||
|
// Add an LCD menu for MMU2
|
||||||
|
//#define MMU2_MENUS
|
||||||
|
#if ENABLED(MMU2_MENUS)
|
||||||
|
// Settings for filament load / unload from the LCD menu.
|
||||||
|
// This is for Prusa MK3-style extruders. Customize for your hardware.
|
||||||
|
#define MMU2_FILAMENTCHANGE_EJECT_FEED 80.0
|
||||||
|
#define MMU2_LOAD_TO_NOZZLE_SEQUENCE \
|
||||||
|
{ 7.2, 562 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 36.0, 1393 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 50.0, 198 }
|
||||||
|
|
||||||
|
#define MMU2_RAMMING_SEQUENCE \
|
||||||
|
{ 1.0, 1000 }, \
|
||||||
|
{ 1.0, 1500 }, \
|
||||||
|
{ 2.0, 2000 }, \
|
||||||
|
{ 1.5, 3000 }, \
|
||||||
|
{ 2.5, 4000 }, \
|
||||||
|
{ -15.0, 5000 }, \
|
||||||
|
{ -14.0, 1200 }, \
|
||||||
|
{ -6.0, 600 }, \
|
||||||
|
{ 10.0, 700 }, \
|
||||||
|
{ -10.0, 400 }, \
|
||||||
|
{ -50.0, 2000 }
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
//#define MMU2_DEBUG // Write debug info to serial output
|
||||||
|
|
||||||
|
#endif // PRUSA_MMU2
|
||||||
|
|
||||||
// @section develop
|
// @section develop
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -174,6 +174,16 @@
|
|||||||
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
*
|
||||||
|
* Requires NOZZLE_PARK_FEATURE to park print head in case MMU unit fails.
|
||||||
|
* Requires EXTRUDERS = 5
|
||||||
|
*
|
||||||
|
* For additional configuration see Configuration_adv.h
|
||||||
|
*/
|
||||||
|
//#define PRUSA_MMU2
|
||||||
|
|
||||||
// A dual extruder that uses a single stepper motor
|
// A dual extruder that uses a single stepper motor
|
||||||
//#define SWITCHING_EXTRUDER
|
//#define SWITCHING_EXTRUDER
|
||||||
#if ENABLED(SWITCHING_EXTRUDER)
|
#if ENABLED(SWITCHING_EXTRUDER)
|
||||||
|
@ -2103,6 +2103,59 @@
|
|||||||
#define WIFI_PWD "Wifi Password"
|
#define WIFI_PWD "Wifi Password"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
* Enable in Configuration.h
|
||||||
|
*/
|
||||||
|
#if ENABLED(PRUSA_MMU2)
|
||||||
|
|
||||||
|
// Serial port used for communication with MMU2.
|
||||||
|
// For AVR enable the UART port used for the MMU. (e.g., internalSerial)
|
||||||
|
// For 32-bit boards check your HAL for available serial ports. (e.g., Serial2)
|
||||||
|
#define INTERNAL_SERIAL_PORT 2
|
||||||
|
#define MMU2_SERIAL internalSerial
|
||||||
|
|
||||||
|
// Use hardware reset for MMU if a pin is defined for it
|
||||||
|
//#define MMU2_RST_PIN 23
|
||||||
|
|
||||||
|
// Enable if the MMU2 has 12V stepper motors (MMU2 Firmware 1.0.2 and up)
|
||||||
|
//#define MMU2_MODE_12V
|
||||||
|
|
||||||
|
// G-code to execute when MMU2 F.I.N.D.A. probe detects filament runout
|
||||||
|
#define MMU2_FILAMENT_RUNOUT_SCRIPT "M600"
|
||||||
|
|
||||||
|
// Add an LCD menu for MMU2
|
||||||
|
//#define MMU2_MENUS
|
||||||
|
#if ENABLED(MMU2_MENUS)
|
||||||
|
// Settings for filament load / unload from the LCD menu.
|
||||||
|
// This is for Prusa MK3-style extruders. Customize for your hardware.
|
||||||
|
#define MMU2_FILAMENTCHANGE_EJECT_FEED 80.0
|
||||||
|
#define MMU2_LOAD_TO_NOZZLE_SEQUENCE \
|
||||||
|
{ 7.2, 562 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 36.0, 1393 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 50.0, 198 }
|
||||||
|
|
||||||
|
#define MMU2_RAMMING_SEQUENCE \
|
||||||
|
{ 1.0, 1000 }, \
|
||||||
|
{ 1.0, 1500 }, \
|
||||||
|
{ 2.0, 2000 }, \
|
||||||
|
{ 1.5, 3000 }, \
|
||||||
|
{ 2.5, 4000 }, \
|
||||||
|
{ -15.0, 5000 }, \
|
||||||
|
{ -14.0, 1200 }, \
|
||||||
|
{ -6.0, 600 }, \
|
||||||
|
{ 10.0, 700 }, \
|
||||||
|
{ -10.0, 400 }, \
|
||||||
|
{ -50.0, 2000 }
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
//#define MMU2_DEBUG // Write debug info to serial output
|
||||||
|
|
||||||
|
#endif // PRUSA_MMU2
|
||||||
|
|
||||||
// @section develop
|
// @section develop
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -183,6 +183,16 @@
|
|||||||
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
*
|
||||||
|
* Requires NOZZLE_PARK_FEATURE to park print head in case MMU unit fails.
|
||||||
|
* Requires EXTRUDERS = 5
|
||||||
|
*
|
||||||
|
* For additional configuration see Configuration_adv.h
|
||||||
|
*/
|
||||||
|
//#define PRUSA_MMU2
|
||||||
|
|
||||||
// A dual extruder that uses a single stepper motor
|
// A dual extruder that uses a single stepper motor
|
||||||
//#define SWITCHING_EXTRUDER
|
//#define SWITCHING_EXTRUDER
|
||||||
#if ENABLED(SWITCHING_EXTRUDER)
|
#if ENABLED(SWITCHING_EXTRUDER)
|
||||||
|
@ -2103,6 +2103,59 @@
|
|||||||
#define WIFI_PWD "Wifi Password"
|
#define WIFI_PWD "Wifi Password"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
* Enable in Configuration.h
|
||||||
|
*/
|
||||||
|
#if ENABLED(PRUSA_MMU2)
|
||||||
|
|
||||||
|
// Serial port used for communication with MMU2.
|
||||||
|
// For AVR enable the UART port used for the MMU. (e.g., internalSerial)
|
||||||
|
// For 32-bit boards check your HAL for available serial ports. (e.g., Serial2)
|
||||||
|
#define INTERNAL_SERIAL_PORT 2
|
||||||
|
#define MMU2_SERIAL internalSerial
|
||||||
|
|
||||||
|
// Use hardware reset for MMU if a pin is defined for it
|
||||||
|
//#define MMU2_RST_PIN 23
|
||||||
|
|
||||||
|
// Enable if the MMU2 has 12V stepper motors (MMU2 Firmware 1.0.2 and up)
|
||||||
|
//#define MMU2_MODE_12V
|
||||||
|
|
||||||
|
// G-code to execute when MMU2 F.I.N.D.A. probe detects filament runout
|
||||||
|
#define MMU2_FILAMENT_RUNOUT_SCRIPT "M600"
|
||||||
|
|
||||||
|
// Add an LCD menu for MMU2
|
||||||
|
//#define MMU2_MENUS
|
||||||
|
#if ENABLED(MMU2_MENUS)
|
||||||
|
// Settings for filament load / unload from the LCD menu.
|
||||||
|
// This is for Prusa MK3-style extruders. Customize for your hardware.
|
||||||
|
#define MMU2_FILAMENTCHANGE_EJECT_FEED 80.0
|
||||||
|
#define MMU2_LOAD_TO_NOZZLE_SEQUENCE \
|
||||||
|
{ 7.2, 562 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 36.0, 1393 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 50.0, 198 }
|
||||||
|
|
||||||
|
#define MMU2_RAMMING_SEQUENCE \
|
||||||
|
{ 1.0, 1000 }, \
|
||||||
|
{ 1.0, 1500 }, \
|
||||||
|
{ 2.0, 2000 }, \
|
||||||
|
{ 1.5, 3000 }, \
|
||||||
|
{ 2.5, 4000 }, \
|
||||||
|
{ -15.0, 5000 }, \
|
||||||
|
{ -14.0, 1200 }, \
|
||||||
|
{ -6.0, 600 }, \
|
||||||
|
{ 10.0, 700 }, \
|
||||||
|
{ -10.0, 400 }, \
|
||||||
|
{ -50.0, 2000 }
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
//#define MMU2_DEBUG // Write debug info to serial output
|
||||||
|
|
||||||
|
#endif // PRUSA_MMU2
|
||||||
|
|
||||||
// @section develop
|
// @section develop
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -174,6 +174,16 @@
|
|||||||
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
*
|
||||||
|
* Requires NOZZLE_PARK_FEATURE to park print head in case MMU unit fails.
|
||||||
|
* Requires EXTRUDERS = 5
|
||||||
|
*
|
||||||
|
* For additional configuration see Configuration_adv.h
|
||||||
|
*/
|
||||||
|
//#define PRUSA_MMU2
|
||||||
|
|
||||||
// A dual extruder that uses a single stepper motor
|
// A dual extruder that uses a single stepper motor
|
||||||
//#define SWITCHING_EXTRUDER
|
//#define SWITCHING_EXTRUDER
|
||||||
#if ENABLED(SWITCHING_EXTRUDER)
|
#if ENABLED(SWITCHING_EXTRUDER)
|
||||||
|
@ -2103,6 +2103,59 @@
|
|||||||
#define WIFI_PWD "Wifi Password"
|
#define WIFI_PWD "Wifi Password"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
* Enable in Configuration.h
|
||||||
|
*/
|
||||||
|
#if ENABLED(PRUSA_MMU2)
|
||||||
|
|
||||||
|
// Serial port used for communication with MMU2.
|
||||||
|
// For AVR enable the UART port used for the MMU. (e.g., internalSerial)
|
||||||
|
// For 32-bit boards check your HAL for available serial ports. (e.g., Serial2)
|
||||||
|
#define INTERNAL_SERIAL_PORT 2
|
||||||
|
#define MMU2_SERIAL internalSerial
|
||||||
|
|
||||||
|
// Use hardware reset for MMU if a pin is defined for it
|
||||||
|
//#define MMU2_RST_PIN 23
|
||||||
|
|
||||||
|
// Enable if the MMU2 has 12V stepper motors (MMU2 Firmware 1.0.2 and up)
|
||||||
|
//#define MMU2_MODE_12V
|
||||||
|
|
||||||
|
// G-code to execute when MMU2 F.I.N.D.A. probe detects filament runout
|
||||||
|
#define MMU2_FILAMENT_RUNOUT_SCRIPT "M600"
|
||||||
|
|
||||||
|
// Add an LCD menu for MMU2
|
||||||
|
//#define MMU2_MENUS
|
||||||
|
#if ENABLED(MMU2_MENUS)
|
||||||
|
// Settings for filament load / unload from the LCD menu.
|
||||||
|
// This is for Prusa MK3-style extruders. Customize for your hardware.
|
||||||
|
#define MMU2_FILAMENTCHANGE_EJECT_FEED 80.0
|
||||||
|
#define MMU2_LOAD_TO_NOZZLE_SEQUENCE \
|
||||||
|
{ 7.2, 562 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 36.0, 1393 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 50.0, 198 }
|
||||||
|
|
||||||
|
#define MMU2_RAMMING_SEQUENCE \
|
||||||
|
{ 1.0, 1000 }, \
|
||||||
|
{ 1.0, 1500 }, \
|
||||||
|
{ 2.0, 2000 }, \
|
||||||
|
{ 1.5, 3000 }, \
|
||||||
|
{ 2.5, 4000 }, \
|
||||||
|
{ -15.0, 5000 }, \
|
||||||
|
{ -14.0, 1200 }, \
|
||||||
|
{ -6.0, 600 }, \
|
||||||
|
{ 10.0, 700 }, \
|
||||||
|
{ -10.0, 400 }, \
|
||||||
|
{ -50.0, 2000 }
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
//#define MMU2_DEBUG // Write debug info to serial output
|
||||||
|
|
||||||
|
#endif // PRUSA_MMU2
|
||||||
|
|
||||||
// @section develop
|
// @section develop
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -174,6 +174,16 @@
|
|||||||
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
*
|
||||||
|
* Requires NOZZLE_PARK_FEATURE to park print head in case MMU unit fails.
|
||||||
|
* Requires EXTRUDERS = 5
|
||||||
|
*
|
||||||
|
* For additional configuration see Configuration_adv.h
|
||||||
|
*/
|
||||||
|
//#define PRUSA_MMU2
|
||||||
|
|
||||||
// A dual extruder that uses a single stepper motor
|
// A dual extruder that uses a single stepper motor
|
||||||
//#define SWITCHING_EXTRUDER
|
//#define SWITCHING_EXTRUDER
|
||||||
#if ENABLED(SWITCHING_EXTRUDER)
|
#if ENABLED(SWITCHING_EXTRUDER)
|
||||||
|
@ -2103,6 +2103,59 @@
|
|||||||
#define WIFI_PWD "Wifi Password"
|
#define WIFI_PWD "Wifi Password"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
* Enable in Configuration.h
|
||||||
|
*/
|
||||||
|
#if ENABLED(PRUSA_MMU2)
|
||||||
|
|
||||||
|
// Serial port used for communication with MMU2.
|
||||||
|
// For AVR enable the UART port used for the MMU. (e.g., internalSerial)
|
||||||
|
// For 32-bit boards check your HAL for available serial ports. (e.g., Serial2)
|
||||||
|
#define INTERNAL_SERIAL_PORT 2
|
||||||
|
#define MMU2_SERIAL internalSerial
|
||||||
|
|
||||||
|
// Use hardware reset for MMU if a pin is defined for it
|
||||||
|
//#define MMU2_RST_PIN 23
|
||||||
|
|
||||||
|
// Enable if the MMU2 has 12V stepper motors (MMU2 Firmware 1.0.2 and up)
|
||||||
|
//#define MMU2_MODE_12V
|
||||||
|
|
||||||
|
// G-code to execute when MMU2 F.I.N.D.A. probe detects filament runout
|
||||||
|
#define MMU2_FILAMENT_RUNOUT_SCRIPT "M600"
|
||||||
|
|
||||||
|
// Add an LCD menu for MMU2
|
||||||
|
//#define MMU2_MENUS
|
||||||
|
#if ENABLED(MMU2_MENUS)
|
||||||
|
// Settings for filament load / unload from the LCD menu.
|
||||||
|
// This is for Prusa MK3-style extruders. Customize for your hardware.
|
||||||
|
#define MMU2_FILAMENTCHANGE_EJECT_FEED 80.0
|
||||||
|
#define MMU2_LOAD_TO_NOZZLE_SEQUENCE \
|
||||||
|
{ 7.2, 562 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 36.0, 1393 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 50.0, 198 }
|
||||||
|
|
||||||
|
#define MMU2_RAMMING_SEQUENCE \
|
||||||
|
{ 1.0, 1000 }, \
|
||||||
|
{ 1.0, 1500 }, \
|
||||||
|
{ 2.0, 2000 }, \
|
||||||
|
{ 1.5, 3000 }, \
|
||||||
|
{ 2.5, 4000 }, \
|
||||||
|
{ -15.0, 5000 }, \
|
||||||
|
{ -14.0, 1200 }, \
|
||||||
|
{ -6.0, 600 }, \
|
||||||
|
{ 10.0, 700 }, \
|
||||||
|
{ -10.0, 400 }, \
|
||||||
|
{ -50.0, 2000 }
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
//#define MMU2_DEBUG // Write debug info to serial output
|
||||||
|
|
||||||
|
#endif // PRUSA_MMU2
|
||||||
|
|
||||||
// @section develop
|
// @section develop
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -174,6 +174,16 @@
|
|||||||
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
*
|
||||||
|
* Requires NOZZLE_PARK_FEATURE to park print head in case MMU unit fails.
|
||||||
|
* Requires EXTRUDERS = 5
|
||||||
|
*
|
||||||
|
* For additional configuration see Configuration_adv.h
|
||||||
|
*/
|
||||||
|
//#define PRUSA_MMU2
|
||||||
|
|
||||||
// A dual extruder that uses a single stepper motor
|
// A dual extruder that uses a single stepper motor
|
||||||
//#define SWITCHING_EXTRUDER
|
//#define SWITCHING_EXTRUDER
|
||||||
#if ENABLED(SWITCHING_EXTRUDER)
|
#if ENABLED(SWITCHING_EXTRUDER)
|
||||||
|
@ -2103,6 +2103,59 @@
|
|||||||
#define WIFI_PWD "Wifi Password"
|
#define WIFI_PWD "Wifi Password"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
* Enable in Configuration.h
|
||||||
|
*/
|
||||||
|
#if ENABLED(PRUSA_MMU2)
|
||||||
|
|
||||||
|
// Serial port used for communication with MMU2.
|
||||||
|
// For AVR enable the UART port used for the MMU. (e.g., internalSerial)
|
||||||
|
// For 32-bit boards check your HAL for available serial ports. (e.g., Serial2)
|
||||||
|
#define INTERNAL_SERIAL_PORT 2
|
||||||
|
#define MMU2_SERIAL internalSerial
|
||||||
|
|
||||||
|
// Use hardware reset for MMU if a pin is defined for it
|
||||||
|
//#define MMU2_RST_PIN 23
|
||||||
|
|
||||||
|
// Enable if the MMU2 has 12V stepper motors (MMU2 Firmware 1.0.2 and up)
|
||||||
|
//#define MMU2_MODE_12V
|
||||||
|
|
||||||
|
// G-code to execute when MMU2 F.I.N.D.A. probe detects filament runout
|
||||||
|
#define MMU2_FILAMENT_RUNOUT_SCRIPT "M600"
|
||||||
|
|
||||||
|
// Add an LCD menu for MMU2
|
||||||
|
//#define MMU2_MENUS
|
||||||
|
#if ENABLED(MMU2_MENUS)
|
||||||
|
// Settings for filament load / unload from the LCD menu.
|
||||||
|
// This is for Prusa MK3-style extruders. Customize for your hardware.
|
||||||
|
#define MMU2_FILAMENTCHANGE_EJECT_FEED 80.0
|
||||||
|
#define MMU2_LOAD_TO_NOZZLE_SEQUENCE \
|
||||||
|
{ 7.2, 562 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 36.0, 1393 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 50.0, 198 }
|
||||||
|
|
||||||
|
#define MMU2_RAMMING_SEQUENCE \
|
||||||
|
{ 1.0, 1000 }, \
|
||||||
|
{ 1.0, 1500 }, \
|
||||||
|
{ 2.0, 2000 }, \
|
||||||
|
{ 1.5, 3000 }, \
|
||||||
|
{ 2.5, 4000 }, \
|
||||||
|
{ -15.0, 5000 }, \
|
||||||
|
{ -14.0, 1200 }, \
|
||||||
|
{ -6.0, 600 }, \
|
||||||
|
{ 10.0, 700 }, \
|
||||||
|
{ -10.0, 400 }, \
|
||||||
|
{ -50.0, 2000 }
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
//#define MMU2_DEBUG // Write debug info to serial output
|
||||||
|
|
||||||
|
#endif // PRUSA_MMU2
|
||||||
|
|
||||||
// @section develop
|
// @section develop
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -174,6 +174,16 @@
|
|||||||
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
*
|
||||||
|
* Requires NOZZLE_PARK_FEATURE to park print head in case MMU unit fails.
|
||||||
|
* Requires EXTRUDERS = 5
|
||||||
|
*
|
||||||
|
* For additional configuration see Configuration_adv.h
|
||||||
|
*/
|
||||||
|
//#define PRUSA_MMU2
|
||||||
|
|
||||||
// A dual extruder that uses a single stepper motor
|
// A dual extruder that uses a single stepper motor
|
||||||
//#define SWITCHING_EXTRUDER
|
//#define SWITCHING_EXTRUDER
|
||||||
#if ENABLED(SWITCHING_EXTRUDER)
|
#if ENABLED(SWITCHING_EXTRUDER)
|
||||||
|
@ -2103,6 +2103,59 @@
|
|||||||
#define WIFI_PWD "Wifi Password"
|
#define WIFI_PWD "Wifi Password"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
* Enable in Configuration.h
|
||||||
|
*/
|
||||||
|
#if ENABLED(PRUSA_MMU2)
|
||||||
|
|
||||||
|
// Serial port used for communication with MMU2.
|
||||||
|
// For AVR enable the UART port used for the MMU. (e.g., internalSerial)
|
||||||
|
// For 32-bit boards check your HAL for available serial ports. (e.g., Serial2)
|
||||||
|
#define INTERNAL_SERIAL_PORT 2
|
||||||
|
#define MMU2_SERIAL internalSerial
|
||||||
|
|
||||||
|
// Use hardware reset for MMU if a pin is defined for it
|
||||||
|
//#define MMU2_RST_PIN 23
|
||||||
|
|
||||||
|
// Enable if the MMU2 has 12V stepper motors (MMU2 Firmware 1.0.2 and up)
|
||||||
|
//#define MMU2_MODE_12V
|
||||||
|
|
||||||
|
// G-code to execute when MMU2 F.I.N.D.A. probe detects filament runout
|
||||||
|
#define MMU2_FILAMENT_RUNOUT_SCRIPT "M600"
|
||||||
|
|
||||||
|
// Add an LCD menu for MMU2
|
||||||
|
//#define MMU2_MENUS
|
||||||
|
#if ENABLED(MMU2_MENUS)
|
||||||
|
// Settings for filament load / unload from the LCD menu.
|
||||||
|
// This is for Prusa MK3-style extruders. Customize for your hardware.
|
||||||
|
#define MMU2_FILAMENTCHANGE_EJECT_FEED 80.0
|
||||||
|
#define MMU2_LOAD_TO_NOZZLE_SEQUENCE \
|
||||||
|
{ 7.2, 562 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 36.0, 1393 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 50.0, 198 }
|
||||||
|
|
||||||
|
#define MMU2_RAMMING_SEQUENCE \
|
||||||
|
{ 1.0, 1000 }, \
|
||||||
|
{ 1.0, 1500 }, \
|
||||||
|
{ 2.0, 2000 }, \
|
||||||
|
{ 1.5, 3000 }, \
|
||||||
|
{ 2.5, 4000 }, \
|
||||||
|
{ -15.0, 5000 }, \
|
||||||
|
{ -14.0, 1200 }, \
|
||||||
|
{ -6.0, 600 }, \
|
||||||
|
{ 10.0, 700 }, \
|
||||||
|
{ -10.0, 400 }, \
|
||||||
|
{ -50.0, 2000 }
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
//#define MMU2_DEBUG // Write debug info to serial output
|
||||||
|
|
||||||
|
#endif // PRUSA_MMU2
|
||||||
|
|
||||||
// @section develop
|
// @section develop
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -174,6 +174,16 @@
|
|||||||
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
*
|
||||||
|
* Requires NOZZLE_PARK_FEATURE to park print head in case MMU unit fails.
|
||||||
|
* Requires EXTRUDERS = 5
|
||||||
|
*
|
||||||
|
* For additional configuration see Configuration_adv.h
|
||||||
|
*/
|
||||||
|
//#define PRUSA_MMU2
|
||||||
|
|
||||||
// A dual extruder that uses a single stepper motor
|
// A dual extruder that uses a single stepper motor
|
||||||
//#define SWITCHING_EXTRUDER
|
//#define SWITCHING_EXTRUDER
|
||||||
#if ENABLED(SWITCHING_EXTRUDER)
|
#if ENABLED(SWITCHING_EXTRUDER)
|
||||||
|
@ -2103,6 +2103,59 @@
|
|||||||
#define WIFI_PWD "Wifi Password"
|
#define WIFI_PWD "Wifi Password"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
* Enable in Configuration.h
|
||||||
|
*/
|
||||||
|
#if ENABLED(PRUSA_MMU2)
|
||||||
|
|
||||||
|
// Serial port used for communication with MMU2.
|
||||||
|
// For AVR enable the UART port used for the MMU. (e.g., internalSerial)
|
||||||
|
// For 32-bit boards check your HAL for available serial ports. (e.g., Serial2)
|
||||||
|
#define INTERNAL_SERIAL_PORT 2
|
||||||
|
#define MMU2_SERIAL internalSerial
|
||||||
|
|
||||||
|
// Use hardware reset for MMU if a pin is defined for it
|
||||||
|
//#define MMU2_RST_PIN 23
|
||||||
|
|
||||||
|
// Enable if the MMU2 has 12V stepper motors (MMU2 Firmware 1.0.2 and up)
|
||||||
|
//#define MMU2_MODE_12V
|
||||||
|
|
||||||
|
// G-code to execute when MMU2 F.I.N.D.A. probe detects filament runout
|
||||||
|
#define MMU2_FILAMENT_RUNOUT_SCRIPT "M600"
|
||||||
|
|
||||||
|
// Add an LCD menu for MMU2
|
||||||
|
//#define MMU2_MENUS
|
||||||
|
#if ENABLED(MMU2_MENUS)
|
||||||
|
// Settings for filament load / unload from the LCD menu.
|
||||||
|
// This is for Prusa MK3-style extruders. Customize for your hardware.
|
||||||
|
#define MMU2_FILAMENTCHANGE_EJECT_FEED 80.0
|
||||||
|
#define MMU2_LOAD_TO_NOZZLE_SEQUENCE \
|
||||||
|
{ 7.2, 562 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 36.0, 1393 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 50.0, 198 }
|
||||||
|
|
||||||
|
#define MMU2_RAMMING_SEQUENCE \
|
||||||
|
{ 1.0, 1000 }, \
|
||||||
|
{ 1.0, 1500 }, \
|
||||||
|
{ 2.0, 2000 }, \
|
||||||
|
{ 1.5, 3000 }, \
|
||||||
|
{ 2.5, 4000 }, \
|
||||||
|
{ -15.0, 5000 }, \
|
||||||
|
{ -14.0, 1200 }, \
|
||||||
|
{ -6.0, 600 }, \
|
||||||
|
{ 10.0, 700 }, \
|
||||||
|
{ -10.0, 400 }, \
|
||||||
|
{ -50.0, 2000 }
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
//#define MMU2_DEBUG // Write debug info to serial output
|
||||||
|
|
||||||
|
#endif // PRUSA_MMU2
|
||||||
|
|
||||||
// @section develop
|
// @section develop
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -174,6 +174,16 @@
|
|||||||
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
*
|
||||||
|
* Requires NOZZLE_PARK_FEATURE to park print head in case MMU unit fails.
|
||||||
|
* Requires EXTRUDERS = 5
|
||||||
|
*
|
||||||
|
* For additional configuration see Configuration_adv.h
|
||||||
|
*/
|
||||||
|
//#define PRUSA_MMU2
|
||||||
|
|
||||||
// A dual extruder that uses a single stepper motor
|
// A dual extruder that uses a single stepper motor
|
||||||
//#define SWITCHING_EXTRUDER
|
//#define SWITCHING_EXTRUDER
|
||||||
#if ENABLED(SWITCHING_EXTRUDER)
|
#if ENABLED(SWITCHING_EXTRUDER)
|
||||||
|
@ -2103,6 +2103,59 @@
|
|||||||
#define WIFI_PWD "Wifi Password"
|
#define WIFI_PWD "Wifi Password"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
* Enable in Configuration.h
|
||||||
|
*/
|
||||||
|
#if ENABLED(PRUSA_MMU2)
|
||||||
|
|
||||||
|
// Serial port used for communication with MMU2.
|
||||||
|
// For AVR enable the UART port used for the MMU. (e.g., internalSerial)
|
||||||
|
// For 32-bit boards check your HAL for available serial ports. (e.g., Serial2)
|
||||||
|
#define INTERNAL_SERIAL_PORT 2
|
||||||
|
#define MMU2_SERIAL internalSerial
|
||||||
|
|
||||||
|
// Use hardware reset for MMU if a pin is defined for it
|
||||||
|
//#define MMU2_RST_PIN 23
|
||||||
|
|
||||||
|
// Enable if the MMU2 has 12V stepper motors (MMU2 Firmware 1.0.2 and up)
|
||||||
|
//#define MMU2_MODE_12V
|
||||||
|
|
||||||
|
// G-code to execute when MMU2 F.I.N.D.A. probe detects filament runout
|
||||||
|
#define MMU2_FILAMENT_RUNOUT_SCRIPT "M600"
|
||||||
|
|
||||||
|
// Add an LCD menu for MMU2
|
||||||
|
//#define MMU2_MENUS
|
||||||
|
#if ENABLED(MMU2_MENUS)
|
||||||
|
// Settings for filament load / unload from the LCD menu.
|
||||||
|
// This is for Prusa MK3-style extruders. Customize for your hardware.
|
||||||
|
#define MMU2_FILAMENTCHANGE_EJECT_FEED 80.0
|
||||||
|
#define MMU2_LOAD_TO_NOZZLE_SEQUENCE \
|
||||||
|
{ 7.2, 562 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 36.0, 1393 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 50.0, 198 }
|
||||||
|
|
||||||
|
#define MMU2_RAMMING_SEQUENCE \
|
||||||
|
{ 1.0, 1000 }, \
|
||||||
|
{ 1.0, 1500 }, \
|
||||||
|
{ 2.0, 2000 }, \
|
||||||
|
{ 1.5, 3000 }, \
|
||||||
|
{ 2.5, 4000 }, \
|
||||||
|
{ -15.0, 5000 }, \
|
||||||
|
{ -14.0, 1200 }, \
|
||||||
|
{ -6.0, 600 }, \
|
||||||
|
{ 10.0, 700 }, \
|
||||||
|
{ -10.0, 400 }, \
|
||||||
|
{ -50.0, 2000 }
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
//#define MMU2_DEBUG // Write debug info to serial output
|
||||||
|
|
||||||
|
#endif // PRUSA_MMU2
|
||||||
|
|
||||||
// @section develop
|
// @section develop
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -174,6 +174,16 @@
|
|||||||
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
*
|
||||||
|
* Requires NOZZLE_PARK_FEATURE to park print head in case MMU unit fails.
|
||||||
|
* Requires EXTRUDERS = 5
|
||||||
|
*
|
||||||
|
* For additional configuration see Configuration_adv.h
|
||||||
|
*/
|
||||||
|
//#define PRUSA_MMU2
|
||||||
|
|
||||||
// A dual extruder that uses a single stepper motor
|
// A dual extruder that uses a single stepper motor
|
||||||
//#define SWITCHING_EXTRUDER
|
//#define SWITCHING_EXTRUDER
|
||||||
#if ENABLED(SWITCHING_EXTRUDER)
|
#if ENABLED(SWITCHING_EXTRUDER)
|
||||||
|
@ -174,6 +174,16 @@
|
|||||||
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
*
|
||||||
|
* Requires NOZZLE_PARK_FEATURE to park print head in case MMU unit fails.
|
||||||
|
* Requires EXTRUDERS = 5
|
||||||
|
*
|
||||||
|
* For additional configuration see Configuration_adv.h
|
||||||
|
*/
|
||||||
|
//#define PRUSA_MMU2
|
||||||
|
|
||||||
// A dual extruder that uses a single stepper motor
|
// A dual extruder that uses a single stepper motor
|
||||||
//#define SWITCHING_EXTRUDER
|
//#define SWITCHING_EXTRUDER
|
||||||
#if ENABLED(SWITCHING_EXTRUDER)
|
#if ENABLED(SWITCHING_EXTRUDER)
|
||||||
|
@ -2102,6 +2102,59 @@
|
|||||||
#define WIFI_PWD "Wifi Password"
|
#define WIFI_PWD "Wifi Password"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
* Enable in Configuration.h
|
||||||
|
*/
|
||||||
|
#if ENABLED(PRUSA_MMU2)
|
||||||
|
|
||||||
|
// Serial port used for communication with MMU2.
|
||||||
|
// For AVR enable the UART port used for the MMU. (e.g., internalSerial)
|
||||||
|
// For 32-bit boards check your HAL for available serial ports. (e.g., Serial2)
|
||||||
|
#define INTERNAL_SERIAL_PORT 2
|
||||||
|
#define MMU2_SERIAL internalSerial
|
||||||
|
|
||||||
|
// Use hardware reset for MMU if a pin is defined for it
|
||||||
|
//#define MMU2_RST_PIN 23
|
||||||
|
|
||||||
|
// Enable if the MMU2 has 12V stepper motors (MMU2 Firmware 1.0.2 and up)
|
||||||
|
//#define MMU2_MODE_12V
|
||||||
|
|
||||||
|
// G-code to execute when MMU2 F.I.N.D.A. probe detects filament runout
|
||||||
|
#define MMU2_FILAMENT_RUNOUT_SCRIPT "M600"
|
||||||
|
|
||||||
|
// Add an LCD menu for MMU2
|
||||||
|
//#define MMU2_MENUS
|
||||||
|
#if ENABLED(MMU2_MENUS)
|
||||||
|
// Settings for filament load / unload from the LCD menu.
|
||||||
|
// This is for Prusa MK3-style extruders. Customize for your hardware.
|
||||||
|
#define MMU2_FILAMENTCHANGE_EJECT_FEED 80.0
|
||||||
|
#define MMU2_LOAD_TO_NOZZLE_SEQUENCE \
|
||||||
|
{ 7.2, 562 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 36.0, 1393 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 50.0, 198 }
|
||||||
|
|
||||||
|
#define MMU2_RAMMING_SEQUENCE \
|
||||||
|
{ 1.0, 1000 }, \
|
||||||
|
{ 1.0, 1500 }, \
|
||||||
|
{ 2.0, 2000 }, \
|
||||||
|
{ 1.5, 3000 }, \
|
||||||
|
{ 2.5, 4000 }, \
|
||||||
|
{ -15.0, 5000 }, \
|
||||||
|
{ -14.0, 1200 }, \
|
||||||
|
{ -6.0, 600 }, \
|
||||||
|
{ 10.0, 700 }, \
|
||||||
|
{ -10.0, 400 }, \
|
||||||
|
{ -50.0, 2000 }
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
//#define MMU2_DEBUG // Write debug info to serial output
|
||||||
|
|
||||||
|
#endif // PRUSA_MMU2
|
||||||
|
|
||||||
// @section develop
|
// @section develop
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -174,6 +174,16 @@
|
|||||||
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
*
|
||||||
|
* Requires NOZZLE_PARK_FEATURE to park print head in case MMU unit fails.
|
||||||
|
* Requires EXTRUDERS = 5
|
||||||
|
*
|
||||||
|
* For additional configuration see Configuration_adv.h
|
||||||
|
*/
|
||||||
|
//#define PRUSA_MMU2
|
||||||
|
|
||||||
// A dual extruder that uses a single stepper motor
|
// A dual extruder that uses a single stepper motor
|
||||||
//#define SWITCHING_EXTRUDER
|
//#define SWITCHING_EXTRUDER
|
||||||
#if ENABLED(SWITCHING_EXTRUDER)
|
#if ENABLED(SWITCHING_EXTRUDER)
|
||||||
|
@ -2111,12 +2111,65 @@
|
|||||||
#define WIFI_PWD "Wifi Password"
|
#define WIFI_PWD "Wifi Password"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
* Enable in Configuration.h
|
||||||
|
*/
|
||||||
|
#if ENABLED(PRUSA_MMU2)
|
||||||
|
|
||||||
|
// Serial port used for communication with MMU2.
|
||||||
|
// For AVR enable the UART port used for the MMU. (e.g., internalSerial)
|
||||||
|
// For 32-bit boards check your HAL for available serial ports. (e.g., Serial2)
|
||||||
|
#define INTERNAL_SERIAL_PORT 2
|
||||||
|
#define MMU2_SERIAL internalSerial
|
||||||
|
|
||||||
|
// Use hardware reset for MMU if a pin is defined for it
|
||||||
|
//#define MMU2_RST_PIN 23
|
||||||
|
|
||||||
|
// Enable if the MMU2 has 12V stepper motors (MMU2 Firmware 1.0.2 and up)
|
||||||
|
//#define MMU2_MODE_12V
|
||||||
|
|
||||||
|
// G-code to execute when MMU2 F.I.N.D.A. probe detects filament runout
|
||||||
|
#define MMU2_FILAMENT_RUNOUT_SCRIPT "M600"
|
||||||
|
|
||||||
|
// Add an LCD menu for MMU2
|
||||||
|
//#define MMU2_MENUS
|
||||||
|
#if ENABLED(MMU2_MENUS)
|
||||||
|
// Settings for filament load / unload from the LCD menu.
|
||||||
|
// This is for Prusa MK3-style extruders. Customize for your hardware.
|
||||||
|
#define MMU2_FILAMENTCHANGE_EJECT_FEED 80.0
|
||||||
|
#define MMU2_LOAD_TO_NOZZLE_SEQUENCE \
|
||||||
|
{ 7.2, 562 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 36.0, 1393 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 50.0, 198 }
|
||||||
|
|
||||||
|
#define MMU2_RAMMING_SEQUENCE \
|
||||||
|
{ 1.0, 1000 }, \
|
||||||
|
{ 1.0, 1500 }, \
|
||||||
|
{ 2.0, 2000 }, \
|
||||||
|
{ 1.5, 3000 }, \
|
||||||
|
{ 2.5, 4000 }, \
|
||||||
|
{ -15.0, 5000 }, \
|
||||||
|
{ -14.0, 1200 }, \
|
||||||
|
{ -6.0, 600 }, \
|
||||||
|
{ 10.0, 700 }, \
|
||||||
|
{ -10.0, 400 }, \
|
||||||
|
{ -50.0, 2000 }
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
//#define MMU2_DEBUG // Write debug info to serial output
|
||||||
|
|
||||||
|
#endif // PRUSA_MMU2
|
||||||
|
|
||||||
// @section develop
|
// @section develop
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
|
* M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
|
||||||
*/
|
*/
|
||||||
#define PINS_DEBUGGING
|
//#define PINS_DEBUGGING
|
||||||
|
|
||||||
// Enable Marlin dev mode which adds some special commands
|
// Enable Marlin dev mode which adds some special commands
|
||||||
//#define MARLIN_DEV_MODE
|
//#define MARLIN_DEV_MODE
|
||||||
|
@ -215,6 +215,16 @@
|
|||||||
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
*
|
||||||
|
* Requires NOZZLE_PARK_FEATURE to park print head in case MMU unit fails.
|
||||||
|
* Requires EXTRUDERS = 5
|
||||||
|
*
|
||||||
|
* For additional configuration see Configuration_adv.h
|
||||||
|
*/
|
||||||
|
//#define PRUSA_MMU2
|
||||||
|
|
||||||
// A dual extruder that uses a single stepper motor
|
// A dual extruder that uses a single stepper motor
|
||||||
//#define SWITCHING_EXTRUDER
|
//#define SWITCHING_EXTRUDER
|
||||||
#if ENABLED(SWITCHING_EXTRUDER)
|
#if ENABLED(SWITCHING_EXTRUDER)
|
||||||
|
@ -2107,12 +2107,65 @@
|
|||||||
#define WIFI_PWD "Wifi Password"
|
#define WIFI_PWD "Wifi Password"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
* Enable in Configuration.h
|
||||||
|
*/
|
||||||
|
#if ENABLED(PRUSA_MMU2)
|
||||||
|
|
||||||
|
// Serial port used for communication with MMU2.
|
||||||
|
// For AVR enable the UART port used for the MMU. (e.g., internalSerial)
|
||||||
|
// For 32-bit boards check your HAL for available serial ports. (e.g., Serial2)
|
||||||
|
#define INTERNAL_SERIAL_PORT 2
|
||||||
|
#define MMU2_SERIAL internalSerial
|
||||||
|
|
||||||
|
// Use hardware reset for MMU if a pin is defined for it
|
||||||
|
//#define MMU2_RST_PIN 23
|
||||||
|
|
||||||
|
// Enable if the MMU2 has 12V stepper motors (MMU2 Firmware 1.0.2 and up)
|
||||||
|
//#define MMU2_MODE_12V
|
||||||
|
|
||||||
|
// G-code to execute when MMU2 F.I.N.D.A. probe detects filament runout
|
||||||
|
#define MMU2_FILAMENT_RUNOUT_SCRIPT "M600"
|
||||||
|
|
||||||
|
// Add an LCD menu for MMU2
|
||||||
|
//#define MMU2_MENUS
|
||||||
|
#if ENABLED(MMU2_MENUS)
|
||||||
|
// Settings for filament load / unload from the LCD menu.
|
||||||
|
// This is for Prusa MK3-style extruders. Customize for your hardware.
|
||||||
|
#define MMU2_FILAMENTCHANGE_EJECT_FEED 80.0
|
||||||
|
#define MMU2_LOAD_TO_NOZZLE_SEQUENCE \
|
||||||
|
{ 7.2, 562 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 36.0, 1393 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 50.0, 198 }
|
||||||
|
|
||||||
|
#define MMU2_RAMMING_SEQUENCE \
|
||||||
|
{ 1.0, 1000 }, \
|
||||||
|
{ 1.0, 1500 }, \
|
||||||
|
{ 2.0, 2000 }, \
|
||||||
|
{ 1.5, 3000 }, \
|
||||||
|
{ 2.5, 4000 }, \
|
||||||
|
{ -15.0, 5000 }, \
|
||||||
|
{ -14.0, 1200 }, \
|
||||||
|
{ -6.0, 600 }, \
|
||||||
|
{ 10.0, 700 }, \
|
||||||
|
{ -10.0, 400 }, \
|
||||||
|
{ -50.0, 2000 }
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
//#define MMU2_DEBUG // Write debug info to serial output
|
||||||
|
|
||||||
|
#endif // PRUSA_MMU2
|
||||||
|
|
||||||
// @section develop
|
// @section develop
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
|
* M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
|
||||||
*/
|
*/
|
||||||
#define PINS_DEBUGGING
|
//#define PINS_DEBUGGING
|
||||||
|
|
||||||
// Enable Marlin dev mode which adds some special commands
|
// Enable Marlin dev mode which adds some special commands
|
||||||
//#define MARLIN_DEV_MODE
|
//#define MARLIN_DEV_MODE
|
||||||
|
@ -177,6 +177,16 @@
|
|||||||
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
*
|
||||||
|
* Requires NOZZLE_PARK_FEATURE to park print head in case MMU unit fails.
|
||||||
|
* Requires EXTRUDERS = 5
|
||||||
|
*
|
||||||
|
* For additional configuration see Configuration_adv.h
|
||||||
|
*/
|
||||||
|
//#define PRUSA_MMU2
|
||||||
|
|
||||||
// A dual extruder that uses a single stepper motor
|
// A dual extruder that uses a single stepper motor
|
||||||
//#define SWITCHING_EXTRUDER
|
//#define SWITCHING_EXTRUDER
|
||||||
#if ENABLED(SWITCHING_EXTRUDER)
|
#if ENABLED(SWITCHING_EXTRUDER)
|
||||||
|
@ -2118,6 +2118,59 @@
|
|||||||
#define WIFI_PWD "Wifi Password"
|
#define WIFI_PWD "Wifi Password"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
* Enable in Configuration.h
|
||||||
|
*/
|
||||||
|
#if ENABLED(PRUSA_MMU2)
|
||||||
|
|
||||||
|
// Serial port used for communication with MMU2.
|
||||||
|
// For AVR enable the UART port used for the MMU. (e.g., internalSerial)
|
||||||
|
// For 32-bit boards check your HAL for available serial ports. (e.g., Serial2)
|
||||||
|
#define INTERNAL_SERIAL_PORT 2
|
||||||
|
#define MMU2_SERIAL internalSerial
|
||||||
|
|
||||||
|
// Use hardware reset for MMU if a pin is defined for it
|
||||||
|
//#define MMU2_RST_PIN 23
|
||||||
|
|
||||||
|
// Enable if the MMU2 has 12V stepper motors (MMU2 Firmware 1.0.2 and up)
|
||||||
|
//#define MMU2_MODE_12V
|
||||||
|
|
||||||
|
// G-code to execute when MMU2 F.I.N.D.A. probe detects filament runout
|
||||||
|
#define MMU2_FILAMENT_RUNOUT_SCRIPT "M600"
|
||||||
|
|
||||||
|
// Add an LCD menu for MMU2
|
||||||
|
//#define MMU2_MENUS
|
||||||
|
#if ENABLED(MMU2_MENUS)
|
||||||
|
// Settings for filament load / unload from the LCD menu.
|
||||||
|
// This is for Prusa MK3-style extruders. Customize for your hardware.
|
||||||
|
#define MMU2_FILAMENTCHANGE_EJECT_FEED 80.0
|
||||||
|
#define MMU2_LOAD_TO_NOZZLE_SEQUENCE \
|
||||||
|
{ 7.2, 562 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 36.0, 1393 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 50.0, 198 }
|
||||||
|
|
||||||
|
#define MMU2_RAMMING_SEQUENCE \
|
||||||
|
{ 1.0, 1000 }, \
|
||||||
|
{ 1.0, 1500 }, \
|
||||||
|
{ 2.0, 2000 }, \
|
||||||
|
{ 1.5, 3000 }, \
|
||||||
|
{ 2.5, 4000 }, \
|
||||||
|
{ -15.0, 5000 }, \
|
||||||
|
{ -14.0, 1200 }, \
|
||||||
|
{ -6.0, 600 }, \
|
||||||
|
{ 10.0, 700 }, \
|
||||||
|
{ -10.0, 400 }, \
|
||||||
|
{ -50.0, 2000 }
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
//#define MMU2_DEBUG // Write debug info to serial output
|
||||||
|
|
||||||
|
#endif // PRUSA_MMU2
|
||||||
|
|
||||||
// @section develop
|
// @section develop
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -178,6 +178,16 @@
|
|||||||
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
*
|
||||||
|
* Requires NOZZLE_PARK_FEATURE to park print head in case MMU unit fails.
|
||||||
|
* Requires EXTRUDERS = 5
|
||||||
|
*
|
||||||
|
* For additional configuration see Configuration_adv.h
|
||||||
|
*/
|
||||||
|
//#define PRUSA_MMU2
|
||||||
|
|
||||||
// A dual extruder that uses a single stepper motor
|
// A dual extruder that uses a single stepper motor
|
||||||
//#define SWITCHING_EXTRUDER
|
//#define SWITCHING_EXTRUDER
|
||||||
#if ENABLED(SWITCHING_EXTRUDER)
|
#if ENABLED(SWITCHING_EXTRUDER)
|
||||||
|
@ -2113,6 +2113,59 @@
|
|||||||
#define WIFI_PWD "Wifi Password"
|
#define WIFI_PWD "Wifi Password"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
* Enable in Configuration.h
|
||||||
|
*/
|
||||||
|
#if ENABLED(PRUSA_MMU2)
|
||||||
|
|
||||||
|
// Serial port used for communication with MMU2.
|
||||||
|
// For AVR enable the UART port used for the MMU. (e.g., internalSerial)
|
||||||
|
// For 32-bit boards check your HAL for available serial ports. (e.g., Serial2)
|
||||||
|
#define INTERNAL_SERIAL_PORT 2
|
||||||
|
#define MMU2_SERIAL internalSerial
|
||||||
|
|
||||||
|
// Use hardware reset for MMU if a pin is defined for it
|
||||||
|
//#define MMU2_RST_PIN 23
|
||||||
|
|
||||||
|
// Enable if the MMU2 has 12V stepper motors (MMU2 Firmware 1.0.2 and up)
|
||||||
|
//#define MMU2_MODE_12V
|
||||||
|
|
||||||
|
// G-code to execute when MMU2 F.I.N.D.A. probe detects filament runout
|
||||||
|
#define MMU2_FILAMENT_RUNOUT_SCRIPT "M600"
|
||||||
|
|
||||||
|
// Add an LCD menu for MMU2
|
||||||
|
//#define MMU2_MENUS
|
||||||
|
#if ENABLED(MMU2_MENUS)
|
||||||
|
// Settings for filament load / unload from the LCD menu.
|
||||||
|
// This is for Prusa MK3-style extruders. Customize for your hardware.
|
||||||
|
#define MMU2_FILAMENTCHANGE_EJECT_FEED 80.0
|
||||||
|
#define MMU2_LOAD_TO_NOZZLE_SEQUENCE \
|
||||||
|
{ 7.2, 562 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 36.0, 1393 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 50.0, 198 }
|
||||||
|
|
||||||
|
#define MMU2_RAMMING_SEQUENCE \
|
||||||
|
{ 1.0, 1000 }, \
|
||||||
|
{ 1.0, 1500 }, \
|
||||||
|
{ 2.0, 2000 }, \
|
||||||
|
{ 1.5, 3000 }, \
|
||||||
|
{ 2.5, 4000 }, \
|
||||||
|
{ -15.0, 5000 }, \
|
||||||
|
{ -14.0, 1200 }, \
|
||||||
|
{ -6.0, 600 }, \
|
||||||
|
{ 10.0, 700 }, \
|
||||||
|
{ -10.0, 400 }, \
|
||||||
|
{ -50.0, 2000 }
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
//#define MMU2_DEBUG // Write debug info to serial output
|
||||||
|
|
||||||
|
#endif // PRUSA_MMU2
|
||||||
|
|
||||||
// @section develop
|
// @section develop
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -174,6 +174,16 @@
|
|||||||
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
*
|
||||||
|
* Requires NOZZLE_PARK_FEATURE to park print head in case MMU unit fails.
|
||||||
|
* Requires EXTRUDERS = 5
|
||||||
|
*
|
||||||
|
* For additional configuration see Configuration_adv.h
|
||||||
|
*/
|
||||||
|
//#define PRUSA_MMU2
|
||||||
|
|
||||||
// A dual extruder that uses a single stepper motor
|
// A dual extruder that uses a single stepper motor
|
||||||
//#define SWITCHING_EXTRUDER
|
//#define SWITCHING_EXTRUDER
|
||||||
#if ENABLED(SWITCHING_EXTRUDER)
|
#if ENABLED(SWITCHING_EXTRUDER)
|
||||||
|
@ -174,6 +174,16 @@
|
|||||||
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
*
|
||||||
|
* Requires NOZZLE_PARK_FEATURE to park print head in case MMU unit fails.
|
||||||
|
* Requires EXTRUDERS = 5
|
||||||
|
*
|
||||||
|
* For additional configuration see Configuration_adv.h
|
||||||
|
*/
|
||||||
|
//#define PRUSA_MMU2
|
||||||
|
|
||||||
// A dual extruder that uses a single stepper motor
|
// A dual extruder that uses a single stepper motor
|
||||||
//#define SWITCHING_EXTRUDER
|
//#define SWITCHING_EXTRUDER
|
||||||
#if ENABLED(SWITCHING_EXTRUDER)
|
#if ENABLED(SWITCHING_EXTRUDER)
|
||||||
|
@ -174,6 +174,16 @@
|
|||||||
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
*
|
||||||
|
* Requires NOZZLE_PARK_FEATURE to park print head in case MMU unit fails.
|
||||||
|
* Requires EXTRUDERS = 5
|
||||||
|
*
|
||||||
|
* For additional configuration see Configuration_adv.h
|
||||||
|
*/
|
||||||
|
//#define PRUSA_MMU2
|
||||||
|
|
||||||
// A dual extruder that uses a single stepper motor
|
// A dual extruder that uses a single stepper motor
|
||||||
//#define SWITCHING_EXTRUDER
|
//#define SWITCHING_EXTRUDER
|
||||||
#if ENABLED(SWITCHING_EXTRUDER)
|
#if ENABLED(SWITCHING_EXTRUDER)
|
||||||
|
@ -2089,6 +2089,59 @@
|
|||||||
#define WIFI_PWD "Wifi Password"
|
#define WIFI_PWD "Wifi Password"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
* Enable in Configuration.h
|
||||||
|
*/
|
||||||
|
#if ENABLED(PRUSA_MMU2)
|
||||||
|
|
||||||
|
// Serial port used for communication with MMU2.
|
||||||
|
// For AVR enable the UART port used for the MMU. (e.g., internalSerial)
|
||||||
|
// For 32-bit boards check your HAL for available serial ports. (e.g., Serial2)
|
||||||
|
#define INTERNAL_SERIAL_PORT 2
|
||||||
|
#define MMU2_SERIAL internalSerial
|
||||||
|
|
||||||
|
// Use hardware reset for MMU if a pin is defined for it
|
||||||
|
//#define MMU2_RST_PIN 23
|
||||||
|
|
||||||
|
// Enable if the MMU2 has 12V stepper motors (MMU2 Firmware 1.0.2 and up)
|
||||||
|
//#define MMU2_MODE_12V
|
||||||
|
|
||||||
|
// G-code to execute when MMU2 F.I.N.D.A. probe detects filament runout
|
||||||
|
#define MMU2_FILAMENT_RUNOUT_SCRIPT "M600"
|
||||||
|
|
||||||
|
// Add an LCD menu for MMU2
|
||||||
|
//#define MMU2_MENUS
|
||||||
|
#if ENABLED(MMU2_MENUS)
|
||||||
|
// Settings for filament load / unload from the LCD menu.
|
||||||
|
// This is for Prusa MK3-style extruders. Customize for your hardware.
|
||||||
|
#define MMU2_FILAMENTCHANGE_EJECT_FEED 80.0
|
||||||
|
#define MMU2_LOAD_TO_NOZZLE_SEQUENCE \
|
||||||
|
{ 7.2, 562 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 36.0, 1393 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 50.0, 198 }
|
||||||
|
|
||||||
|
#define MMU2_RAMMING_SEQUENCE \
|
||||||
|
{ 1.0, 1000 }, \
|
||||||
|
{ 1.0, 1500 }, \
|
||||||
|
{ 2.0, 2000 }, \
|
||||||
|
{ 1.5, 3000 }, \
|
||||||
|
{ 2.5, 4000 }, \
|
||||||
|
{ -15.0, 5000 }, \
|
||||||
|
{ -14.0, 1200 }, \
|
||||||
|
{ -6.0, 600 }, \
|
||||||
|
{ 10.0, 700 }, \
|
||||||
|
{ -10.0, 400 }, \
|
||||||
|
{ -50.0, 2000 }
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
//#define MMU2_DEBUG // Write debug info to serial output
|
||||||
|
|
||||||
|
#endif // PRUSA_MMU2
|
||||||
|
|
||||||
// @section develop
|
// @section develop
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -174,6 +174,16 @@
|
|||||||
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
*
|
||||||
|
* Requires NOZZLE_PARK_FEATURE to park print head in case MMU unit fails.
|
||||||
|
* Requires EXTRUDERS = 5
|
||||||
|
*
|
||||||
|
* For additional configuration see Configuration_adv.h
|
||||||
|
*/
|
||||||
|
//#define PRUSA_MMU2
|
||||||
|
|
||||||
// A dual extruder that uses a single stepper motor
|
// A dual extruder that uses a single stepper motor
|
||||||
//#define SWITCHING_EXTRUDER
|
//#define SWITCHING_EXTRUDER
|
||||||
#if ENABLED(SWITCHING_EXTRUDER)
|
#if ENABLED(SWITCHING_EXTRUDER)
|
||||||
|
@ -174,6 +174,16 @@
|
|||||||
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
*
|
||||||
|
* Requires NOZZLE_PARK_FEATURE to park print head in case MMU unit fails.
|
||||||
|
* Requires EXTRUDERS = 5
|
||||||
|
*
|
||||||
|
* For additional configuration see Configuration_adv.h
|
||||||
|
*/
|
||||||
|
//#define PRUSA_MMU2
|
||||||
|
|
||||||
// A dual extruder that uses a single stepper motor
|
// A dual extruder that uses a single stepper motor
|
||||||
//#define SWITCHING_EXTRUDER
|
//#define SWITCHING_EXTRUDER
|
||||||
#if ENABLED(SWITCHING_EXTRUDER)
|
#if ENABLED(SWITCHING_EXTRUDER)
|
||||||
|
@ -174,6 +174,16 @@
|
|||||||
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
*
|
||||||
|
* Requires NOZZLE_PARK_FEATURE to park print head in case MMU unit fails.
|
||||||
|
* Requires EXTRUDERS = 5
|
||||||
|
*
|
||||||
|
* For additional configuration see Configuration_adv.h
|
||||||
|
*/
|
||||||
|
//#define PRUSA_MMU2
|
||||||
|
|
||||||
// A dual extruder that uses a single stepper motor
|
// A dual extruder that uses a single stepper motor
|
||||||
//#define SWITCHING_EXTRUDER
|
//#define SWITCHING_EXTRUDER
|
||||||
#if ENABLED(SWITCHING_EXTRUDER)
|
#if ENABLED(SWITCHING_EXTRUDER)
|
||||||
|
@ -2103,6 +2103,59 @@
|
|||||||
#define WIFI_PWD "Wifi Password"
|
#define WIFI_PWD "Wifi Password"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
* Enable in Configuration.h
|
||||||
|
*/
|
||||||
|
#if ENABLED(PRUSA_MMU2)
|
||||||
|
|
||||||
|
// Serial port used for communication with MMU2.
|
||||||
|
// For AVR enable the UART port used for the MMU. (e.g., internalSerial)
|
||||||
|
// For 32-bit boards check your HAL for available serial ports. (e.g., Serial2)
|
||||||
|
#define INTERNAL_SERIAL_PORT 2
|
||||||
|
#define MMU2_SERIAL internalSerial
|
||||||
|
|
||||||
|
// Use hardware reset for MMU if a pin is defined for it
|
||||||
|
//#define MMU2_RST_PIN 23
|
||||||
|
|
||||||
|
// Enable if the MMU2 has 12V stepper motors (MMU2 Firmware 1.0.2 and up)
|
||||||
|
//#define MMU2_MODE_12V
|
||||||
|
|
||||||
|
// G-code to execute when MMU2 F.I.N.D.A. probe detects filament runout
|
||||||
|
#define MMU2_FILAMENT_RUNOUT_SCRIPT "M600"
|
||||||
|
|
||||||
|
// Add an LCD menu for MMU2
|
||||||
|
//#define MMU2_MENUS
|
||||||
|
#if ENABLED(MMU2_MENUS)
|
||||||
|
// Settings for filament load / unload from the LCD menu.
|
||||||
|
// This is for Prusa MK3-style extruders. Customize for your hardware.
|
||||||
|
#define MMU2_FILAMENTCHANGE_EJECT_FEED 80.0
|
||||||
|
#define MMU2_LOAD_TO_NOZZLE_SEQUENCE \
|
||||||
|
{ 7.2, 562 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 36.0, 1393 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 50.0, 198 }
|
||||||
|
|
||||||
|
#define MMU2_RAMMING_SEQUENCE \
|
||||||
|
{ 1.0, 1000 }, \
|
||||||
|
{ 1.0, 1500 }, \
|
||||||
|
{ 2.0, 2000 }, \
|
||||||
|
{ 1.5, 3000 }, \
|
||||||
|
{ 2.5, 4000 }, \
|
||||||
|
{ -15.0, 5000 }, \
|
||||||
|
{ -14.0, 1200 }, \
|
||||||
|
{ -6.0, 600 }, \
|
||||||
|
{ 10.0, 700 }, \
|
||||||
|
{ -10.0, 400 }, \
|
||||||
|
{ -50.0, 2000 }
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
//#define MMU2_DEBUG // Write debug info to serial output
|
||||||
|
|
||||||
|
#endif // PRUSA_MMU2
|
||||||
|
|
||||||
// @section develop
|
// @section develop
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -174,6 +174,16 @@
|
|||||||
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
*
|
||||||
|
* Requires NOZZLE_PARK_FEATURE to park print head in case MMU unit fails.
|
||||||
|
* Requires EXTRUDERS = 5
|
||||||
|
*
|
||||||
|
* For additional configuration see Configuration_adv.h
|
||||||
|
*/
|
||||||
|
//#define PRUSA_MMU2
|
||||||
|
|
||||||
// A dual extruder that uses a single stepper motor
|
// A dual extruder that uses a single stepper motor
|
||||||
//#define SWITCHING_EXTRUDER
|
//#define SWITCHING_EXTRUDER
|
||||||
#if ENABLED(SWITCHING_EXTRUDER)
|
#if ENABLED(SWITCHING_EXTRUDER)
|
||||||
|
@ -2103,6 +2103,59 @@
|
|||||||
#define WIFI_PWD "Wifi Password"
|
#define WIFI_PWD "Wifi Password"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
* Enable in Configuration.h
|
||||||
|
*/
|
||||||
|
#if ENABLED(PRUSA_MMU2)
|
||||||
|
|
||||||
|
// Serial port used for communication with MMU2.
|
||||||
|
// For AVR enable the UART port used for the MMU. (e.g., internalSerial)
|
||||||
|
// For 32-bit boards check your HAL for available serial ports. (e.g., Serial2)
|
||||||
|
#define INTERNAL_SERIAL_PORT 2
|
||||||
|
#define MMU2_SERIAL internalSerial
|
||||||
|
|
||||||
|
// Use hardware reset for MMU if a pin is defined for it
|
||||||
|
//#define MMU2_RST_PIN 23
|
||||||
|
|
||||||
|
// Enable if the MMU2 has 12V stepper motors (MMU2 Firmware 1.0.2 and up)
|
||||||
|
//#define MMU2_MODE_12V
|
||||||
|
|
||||||
|
// G-code to execute when MMU2 F.I.N.D.A. probe detects filament runout
|
||||||
|
#define MMU2_FILAMENT_RUNOUT_SCRIPT "M600"
|
||||||
|
|
||||||
|
// Add an LCD menu for MMU2
|
||||||
|
//#define MMU2_MENUS
|
||||||
|
#if ENABLED(MMU2_MENUS)
|
||||||
|
// Settings for filament load / unload from the LCD menu.
|
||||||
|
// This is for Prusa MK3-style extruders. Customize for your hardware.
|
||||||
|
#define MMU2_FILAMENTCHANGE_EJECT_FEED 80.0
|
||||||
|
#define MMU2_LOAD_TO_NOZZLE_SEQUENCE \
|
||||||
|
{ 7.2, 562 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 36.0, 1393 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 50.0, 198 }
|
||||||
|
|
||||||
|
#define MMU2_RAMMING_SEQUENCE \
|
||||||
|
{ 1.0, 1000 }, \
|
||||||
|
{ 1.0, 1500 }, \
|
||||||
|
{ 2.0, 2000 }, \
|
||||||
|
{ 1.5, 3000 }, \
|
||||||
|
{ 2.5, 4000 }, \
|
||||||
|
{ -15.0, 5000 }, \
|
||||||
|
{ -14.0, 1200 }, \
|
||||||
|
{ -6.0, 600 }, \
|
||||||
|
{ 10.0, 700 }, \
|
||||||
|
{ -10.0, 400 }, \
|
||||||
|
{ -50.0, 2000 }
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
//#define MMU2_DEBUG // Write debug info to serial output
|
||||||
|
|
||||||
|
#endif // PRUSA_MMU2
|
||||||
|
|
||||||
// @section develop
|
// @section develop
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -174,6 +174,16 @@
|
|||||||
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
*
|
||||||
|
* Requires NOZZLE_PARK_FEATURE to park print head in case MMU unit fails.
|
||||||
|
* Requires EXTRUDERS = 5
|
||||||
|
*
|
||||||
|
* For additional configuration see Configuration_adv.h
|
||||||
|
*/
|
||||||
|
//#define PRUSA_MMU2
|
||||||
|
|
||||||
// A dual extruder that uses a single stepper motor
|
// A dual extruder that uses a single stepper motor
|
||||||
//#define SWITCHING_EXTRUDER
|
//#define SWITCHING_EXTRUDER
|
||||||
#if ENABLED(SWITCHING_EXTRUDER)
|
#if ENABLED(SWITCHING_EXTRUDER)
|
||||||
|
@ -2103,6 +2103,59 @@
|
|||||||
#define WIFI_PWD "Wifi Password"
|
#define WIFI_PWD "Wifi Password"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
* Enable in Configuration.h
|
||||||
|
*/
|
||||||
|
#if ENABLED(PRUSA_MMU2)
|
||||||
|
|
||||||
|
// Serial port used for communication with MMU2.
|
||||||
|
// For AVR enable the UART port used for the MMU. (e.g., internalSerial)
|
||||||
|
// For 32-bit boards check your HAL for available serial ports. (e.g., Serial2)
|
||||||
|
#define INTERNAL_SERIAL_PORT 2
|
||||||
|
#define MMU2_SERIAL internalSerial
|
||||||
|
|
||||||
|
// Use hardware reset for MMU if a pin is defined for it
|
||||||
|
//#define MMU2_RST_PIN 23
|
||||||
|
|
||||||
|
// Enable if the MMU2 has 12V stepper motors (MMU2 Firmware 1.0.2 and up)
|
||||||
|
//#define MMU2_MODE_12V
|
||||||
|
|
||||||
|
// G-code to execute when MMU2 F.I.N.D.A. probe detects filament runout
|
||||||
|
#define MMU2_FILAMENT_RUNOUT_SCRIPT "M600"
|
||||||
|
|
||||||
|
// Add an LCD menu for MMU2
|
||||||
|
//#define MMU2_MENUS
|
||||||
|
#if ENABLED(MMU2_MENUS)
|
||||||
|
// Settings for filament load / unload from the LCD menu.
|
||||||
|
// This is for Prusa MK3-style extruders. Customize for your hardware.
|
||||||
|
#define MMU2_FILAMENTCHANGE_EJECT_FEED 80.0
|
||||||
|
#define MMU2_LOAD_TO_NOZZLE_SEQUENCE \
|
||||||
|
{ 7.2, 562 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 36.0, 1393 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 50.0, 198 }
|
||||||
|
|
||||||
|
#define MMU2_RAMMING_SEQUENCE \
|
||||||
|
{ 1.0, 1000 }, \
|
||||||
|
{ 1.0, 1500 }, \
|
||||||
|
{ 2.0, 2000 }, \
|
||||||
|
{ 1.5, 3000 }, \
|
||||||
|
{ 2.5, 4000 }, \
|
||||||
|
{ -15.0, 5000 }, \
|
||||||
|
{ -14.0, 1200 }, \
|
||||||
|
{ -6.0, 600 }, \
|
||||||
|
{ 10.0, 700 }, \
|
||||||
|
{ -10.0, 400 }, \
|
||||||
|
{ -50.0, 2000 }
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
//#define MMU2_DEBUG // Write debug info to serial output
|
||||||
|
|
||||||
|
#endif // PRUSA_MMU2
|
||||||
|
|
||||||
// @section develop
|
// @section develop
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -179,6 +179,16 @@
|
|||||||
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
*
|
||||||
|
* Requires NOZZLE_PARK_FEATURE to park print head in case MMU unit fails.
|
||||||
|
* Requires EXTRUDERS = 5
|
||||||
|
*
|
||||||
|
* For additional configuration see Configuration_adv.h
|
||||||
|
*/
|
||||||
|
//#define PRUSA_MMU2
|
||||||
|
|
||||||
// A dual extruder that uses a single stepper motor
|
// A dual extruder that uses a single stepper motor
|
||||||
//#define SWITCHING_EXTRUDER
|
//#define SWITCHING_EXTRUDER
|
||||||
#if ENABLED(SWITCHING_EXTRUDER)
|
#if ENABLED(SWITCHING_EXTRUDER)
|
||||||
|
@ -2103,6 +2103,59 @@
|
|||||||
#define WIFI_PWD "Wifi Password"
|
#define WIFI_PWD "Wifi Password"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
* Enable in Configuration.h
|
||||||
|
*/
|
||||||
|
#if ENABLED(PRUSA_MMU2)
|
||||||
|
|
||||||
|
// Serial port used for communication with MMU2.
|
||||||
|
// For AVR enable the UART port used for the MMU. (e.g., internalSerial)
|
||||||
|
// For 32-bit boards check your HAL for available serial ports. (e.g., Serial2)
|
||||||
|
#define INTERNAL_SERIAL_PORT 2
|
||||||
|
#define MMU2_SERIAL internalSerial
|
||||||
|
|
||||||
|
// Use hardware reset for MMU if a pin is defined for it
|
||||||
|
//#define MMU2_RST_PIN 23
|
||||||
|
|
||||||
|
// Enable if the MMU2 has 12V stepper motors (MMU2 Firmware 1.0.2 and up)
|
||||||
|
//#define MMU2_MODE_12V
|
||||||
|
|
||||||
|
// G-code to execute when MMU2 F.I.N.D.A. probe detects filament runout
|
||||||
|
#define MMU2_FILAMENT_RUNOUT_SCRIPT "M600"
|
||||||
|
|
||||||
|
// Add an LCD menu for MMU2
|
||||||
|
//#define MMU2_MENUS
|
||||||
|
#if ENABLED(MMU2_MENUS)
|
||||||
|
// Settings for filament load / unload from the LCD menu.
|
||||||
|
// This is for Prusa MK3-style extruders. Customize for your hardware.
|
||||||
|
#define MMU2_FILAMENTCHANGE_EJECT_FEED 80.0
|
||||||
|
#define MMU2_LOAD_TO_NOZZLE_SEQUENCE \
|
||||||
|
{ 7.2, 562 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 36.0, 1393 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 50.0, 198 }
|
||||||
|
|
||||||
|
#define MMU2_RAMMING_SEQUENCE \
|
||||||
|
{ 1.0, 1000 }, \
|
||||||
|
{ 1.0, 1500 }, \
|
||||||
|
{ 2.0, 2000 }, \
|
||||||
|
{ 1.5, 3000 }, \
|
||||||
|
{ 2.5, 4000 }, \
|
||||||
|
{ -15.0, 5000 }, \
|
||||||
|
{ -14.0, 1200 }, \
|
||||||
|
{ -6.0, 600 }, \
|
||||||
|
{ 10.0, 700 }, \
|
||||||
|
{ -10.0, 400 }, \
|
||||||
|
{ -50.0, 2000 }
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
//#define MMU2_DEBUG // Write debug info to serial output
|
||||||
|
|
||||||
|
#endif // PRUSA_MMU2
|
||||||
|
|
||||||
// @section develop
|
// @section develop
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -194,6 +194,16 @@
|
|||||||
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
*
|
||||||
|
* Requires NOZZLE_PARK_FEATURE to park print head in case MMU unit fails.
|
||||||
|
* Requires EXTRUDERS = 5
|
||||||
|
*
|
||||||
|
* For additional configuration see Configuration_adv.h
|
||||||
|
*/
|
||||||
|
//#define PRUSA_MMU2
|
||||||
|
|
||||||
// A dual extruder that uses a single stepper motor
|
// A dual extruder that uses a single stepper motor
|
||||||
//#define SWITCHING_EXTRUDER
|
//#define SWITCHING_EXTRUDER
|
||||||
#if ENABLED(SWITCHING_EXTRUDER)
|
#if ENABLED(SWITCHING_EXTRUDER)
|
||||||
|
@ -2103,6 +2103,59 @@
|
|||||||
#define WIFI_PWD "Wifi Password"
|
#define WIFI_PWD "Wifi Password"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
* Enable in Configuration.h
|
||||||
|
*/
|
||||||
|
#if ENABLED(PRUSA_MMU2)
|
||||||
|
|
||||||
|
// Serial port used for communication with MMU2.
|
||||||
|
// For AVR enable the UART port used for the MMU. (e.g., internalSerial)
|
||||||
|
// For 32-bit boards check your HAL for available serial ports. (e.g., Serial2)
|
||||||
|
#define INTERNAL_SERIAL_PORT 2
|
||||||
|
#define MMU2_SERIAL internalSerial
|
||||||
|
|
||||||
|
// Use hardware reset for MMU if a pin is defined for it
|
||||||
|
//#define MMU2_RST_PIN 23
|
||||||
|
|
||||||
|
// Enable if the MMU2 has 12V stepper motors (MMU2 Firmware 1.0.2 and up)
|
||||||
|
//#define MMU2_MODE_12V
|
||||||
|
|
||||||
|
// G-code to execute when MMU2 F.I.N.D.A. probe detects filament runout
|
||||||
|
#define MMU2_FILAMENT_RUNOUT_SCRIPT "M600"
|
||||||
|
|
||||||
|
// Add an LCD menu for MMU2
|
||||||
|
//#define MMU2_MENUS
|
||||||
|
#if ENABLED(MMU2_MENUS)
|
||||||
|
// Settings for filament load / unload from the LCD menu.
|
||||||
|
// This is for Prusa MK3-style extruders. Customize for your hardware.
|
||||||
|
#define MMU2_FILAMENTCHANGE_EJECT_FEED 80.0
|
||||||
|
#define MMU2_LOAD_TO_NOZZLE_SEQUENCE \
|
||||||
|
{ 7.2, 562 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 36.0, 1393 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 50.0, 198 }
|
||||||
|
|
||||||
|
#define MMU2_RAMMING_SEQUENCE \
|
||||||
|
{ 1.0, 1000 }, \
|
||||||
|
{ 1.0, 1500 }, \
|
||||||
|
{ 2.0, 2000 }, \
|
||||||
|
{ 1.5, 3000 }, \
|
||||||
|
{ 2.5, 4000 }, \
|
||||||
|
{ -15.0, 5000 }, \
|
||||||
|
{ -14.0, 1200 }, \
|
||||||
|
{ -6.0, 600 }, \
|
||||||
|
{ 10.0, 700 }, \
|
||||||
|
{ -10.0, 400 }, \
|
||||||
|
{ -50.0, 2000 }
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
//#define MMU2_DEBUG // Write debug info to serial output
|
||||||
|
|
||||||
|
#endif // PRUSA_MMU2
|
||||||
|
|
||||||
// @section develop
|
// @section develop
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -179,6 +179,16 @@
|
|||||||
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
*
|
||||||
|
* Requires NOZZLE_PARK_FEATURE to park print head in case MMU unit fails.
|
||||||
|
* Requires EXTRUDERS = 5
|
||||||
|
*
|
||||||
|
* For additional configuration see Configuration_adv.h
|
||||||
|
*/
|
||||||
|
//#define PRUSA_MMU2
|
||||||
|
|
||||||
// A dual extruder that uses a single stepper motor
|
// A dual extruder that uses a single stepper motor
|
||||||
//#define SWITCHING_EXTRUDER
|
//#define SWITCHING_EXTRUDER
|
||||||
#if ENABLED(SWITCHING_EXTRUDER)
|
#if ENABLED(SWITCHING_EXTRUDER)
|
||||||
|
@ -2103,6 +2103,59 @@
|
|||||||
#define WIFI_PWD "Wifi Password"
|
#define WIFI_PWD "Wifi Password"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
* Enable in Configuration.h
|
||||||
|
*/
|
||||||
|
#if ENABLED(PRUSA_MMU2)
|
||||||
|
|
||||||
|
// Serial port used for communication with MMU2.
|
||||||
|
// For AVR enable the UART port used for the MMU. (e.g., internalSerial)
|
||||||
|
// For 32-bit boards check your HAL for available serial ports. (e.g., Serial2)
|
||||||
|
#define INTERNAL_SERIAL_PORT 2
|
||||||
|
#define MMU2_SERIAL internalSerial
|
||||||
|
|
||||||
|
// Use hardware reset for MMU if a pin is defined for it
|
||||||
|
//#define MMU2_RST_PIN 23
|
||||||
|
|
||||||
|
// Enable if the MMU2 has 12V stepper motors (MMU2 Firmware 1.0.2 and up)
|
||||||
|
//#define MMU2_MODE_12V
|
||||||
|
|
||||||
|
// G-code to execute when MMU2 F.I.N.D.A. probe detects filament runout
|
||||||
|
#define MMU2_FILAMENT_RUNOUT_SCRIPT "M600"
|
||||||
|
|
||||||
|
// Add an LCD menu for MMU2
|
||||||
|
//#define MMU2_MENUS
|
||||||
|
#if ENABLED(MMU2_MENUS)
|
||||||
|
// Settings for filament load / unload from the LCD menu.
|
||||||
|
// This is for Prusa MK3-style extruders. Customize for your hardware.
|
||||||
|
#define MMU2_FILAMENTCHANGE_EJECT_FEED 80.0
|
||||||
|
#define MMU2_LOAD_TO_NOZZLE_SEQUENCE \
|
||||||
|
{ 7.2, 562 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 36.0, 1393 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 50.0, 198 }
|
||||||
|
|
||||||
|
#define MMU2_RAMMING_SEQUENCE \
|
||||||
|
{ 1.0, 1000 }, \
|
||||||
|
{ 1.0, 1500 }, \
|
||||||
|
{ 2.0, 2000 }, \
|
||||||
|
{ 1.5, 3000 }, \
|
||||||
|
{ 2.5, 4000 }, \
|
||||||
|
{ -15.0, 5000 }, \
|
||||||
|
{ -14.0, 1200 }, \
|
||||||
|
{ -6.0, 600 }, \
|
||||||
|
{ 10.0, 700 }, \
|
||||||
|
{ -10.0, 400 }, \
|
||||||
|
{ -50.0, 2000 }
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
//#define MMU2_DEBUG // Write debug info to serial output
|
||||||
|
|
||||||
|
#endif // PRUSA_MMU2
|
||||||
|
|
||||||
// @section develop
|
// @section develop
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -174,6 +174,16 @@
|
|||||||
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
*
|
||||||
|
* Requires NOZZLE_PARK_FEATURE to park print head in case MMU unit fails.
|
||||||
|
* Requires EXTRUDERS = 5
|
||||||
|
*
|
||||||
|
* For additional configuration see Configuration_adv.h
|
||||||
|
*/
|
||||||
|
//#define PRUSA_MMU2
|
||||||
|
|
||||||
// A dual extruder that uses a single stepper motor
|
// A dual extruder that uses a single stepper motor
|
||||||
//#define SWITCHING_EXTRUDER
|
//#define SWITCHING_EXTRUDER
|
||||||
#if ENABLED(SWITCHING_EXTRUDER)
|
#if ENABLED(SWITCHING_EXTRUDER)
|
||||||
|
@ -2103,6 +2103,59 @@
|
|||||||
#define WIFI_PWD "Wifi Password"
|
#define WIFI_PWD "Wifi Password"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
* Enable in Configuration.h
|
||||||
|
*/
|
||||||
|
#if ENABLED(PRUSA_MMU2)
|
||||||
|
|
||||||
|
// Serial port used for communication with MMU2.
|
||||||
|
// For AVR enable the UART port used for the MMU. (e.g., internalSerial)
|
||||||
|
// For 32-bit boards check your HAL for available serial ports. (e.g., Serial2)
|
||||||
|
#define INTERNAL_SERIAL_PORT 2
|
||||||
|
#define MMU2_SERIAL internalSerial
|
||||||
|
|
||||||
|
// Use hardware reset for MMU if a pin is defined for it
|
||||||
|
//#define MMU2_RST_PIN 23
|
||||||
|
|
||||||
|
// Enable if the MMU2 has 12V stepper motors (MMU2 Firmware 1.0.2 and up)
|
||||||
|
//#define MMU2_MODE_12V
|
||||||
|
|
||||||
|
// G-code to execute when MMU2 F.I.N.D.A. probe detects filament runout
|
||||||
|
#define MMU2_FILAMENT_RUNOUT_SCRIPT "M600"
|
||||||
|
|
||||||
|
// Add an LCD menu for MMU2
|
||||||
|
//#define MMU2_MENUS
|
||||||
|
#if ENABLED(MMU2_MENUS)
|
||||||
|
// Settings for filament load / unload from the LCD menu.
|
||||||
|
// This is for Prusa MK3-style extruders. Customize for your hardware.
|
||||||
|
#define MMU2_FILAMENTCHANGE_EJECT_FEED 80.0
|
||||||
|
#define MMU2_LOAD_TO_NOZZLE_SEQUENCE \
|
||||||
|
{ 7.2, 562 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 36.0, 1393 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 50.0, 198 }
|
||||||
|
|
||||||
|
#define MMU2_RAMMING_SEQUENCE \
|
||||||
|
{ 1.0, 1000 }, \
|
||||||
|
{ 1.0, 1500 }, \
|
||||||
|
{ 2.0, 2000 }, \
|
||||||
|
{ 1.5, 3000 }, \
|
||||||
|
{ 2.5, 4000 }, \
|
||||||
|
{ -15.0, 5000 }, \
|
||||||
|
{ -14.0, 1200 }, \
|
||||||
|
{ -6.0, 600 }, \
|
||||||
|
{ 10.0, 700 }, \
|
||||||
|
{ -10.0, 400 }, \
|
||||||
|
{ -50.0, 2000 }
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
//#define MMU2_DEBUG // Write debug info to serial output
|
||||||
|
|
||||||
|
#endif // PRUSA_MMU2
|
||||||
|
|
||||||
// @section develop
|
// @section develop
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -174,6 +174,16 @@
|
|||||||
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
*
|
||||||
|
* Requires NOZZLE_PARK_FEATURE to park print head in case MMU unit fails.
|
||||||
|
* Requires EXTRUDERS = 5
|
||||||
|
*
|
||||||
|
* For additional configuration see Configuration_adv.h
|
||||||
|
*/
|
||||||
|
//#define PRUSA_MMU2
|
||||||
|
|
||||||
// A dual extruder that uses a single stepper motor
|
// A dual extruder that uses a single stepper motor
|
||||||
//#define SWITCHING_EXTRUDER
|
//#define SWITCHING_EXTRUDER
|
||||||
#if ENABLED(SWITCHING_EXTRUDER)
|
#if ENABLED(SWITCHING_EXTRUDER)
|
||||||
|
@ -174,6 +174,16 @@
|
|||||||
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
*
|
||||||
|
* Requires NOZZLE_PARK_FEATURE to park print head in case MMU unit fails.
|
||||||
|
* Requires EXTRUDERS = 5
|
||||||
|
*
|
||||||
|
* For additional configuration see Configuration_adv.h
|
||||||
|
*/
|
||||||
|
//#define PRUSA_MMU2
|
||||||
|
|
||||||
// A dual extruder that uses a single stepper motor
|
// A dual extruder that uses a single stepper motor
|
||||||
//#define SWITCHING_EXTRUDER
|
//#define SWITCHING_EXTRUDER
|
||||||
#if ENABLED(SWITCHING_EXTRUDER)
|
#if ENABLED(SWITCHING_EXTRUDER)
|
||||||
|
@ -2103,6 +2103,59 @@
|
|||||||
#define WIFI_PWD "Wifi Password"
|
#define WIFI_PWD "Wifi Password"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
* Enable in Configuration.h
|
||||||
|
*/
|
||||||
|
#if ENABLED(PRUSA_MMU2)
|
||||||
|
|
||||||
|
// Serial port used for communication with MMU2.
|
||||||
|
// For AVR enable the UART port used for the MMU. (e.g., internalSerial)
|
||||||
|
// For 32-bit boards check your HAL for available serial ports. (e.g., Serial2)
|
||||||
|
#define INTERNAL_SERIAL_PORT 2
|
||||||
|
#define MMU2_SERIAL internalSerial
|
||||||
|
|
||||||
|
// Use hardware reset for MMU if a pin is defined for it
|
||||||
|
//#define MMU2_RST_PIN 23
|
||||||
|
|
||||||
|
// Enable if the MMU2 has 12V stepper motors (MMU2 Firmware 1.0.2 and up)
|
||||||
|
//#define MMU2_MODE_12V
|
||||||
|
|
||||||
|
// G-code to execute when MMU2 F.I.N.D.A. probe detects filament runout
|
||||||
|
#define MMU2_FILAMENT_RUNOUT_SCRIPT "M600"
|
||||||
|
|
||||||
|
// Add an LCD menu for MMU2
|
||||||
|
//#define MMU2_MENUS
|
||||||
|
#if ENABLED(MMU2_MENUS)
|
||||||
|
// Settings for filament load / unload from the LCD menu.
|
||||||
|
// This is for Prusa MK3-style extruders. Customize for your hardware.
|
||||||
|
#define MMU2_FILAMENTCHANGE_EJECT_FEED 80.0
|
||||||
|
#define MMU2_LOAD_TO_NOZZLE_SEQUENCE \
|
||||||
|
{ 7.2, 562 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 36.0, 1393 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 50.0, 198 }
|
||||||
|
|
||||||
|
#define MMU2_RAMMING_SEQUENCE \
|
||||||
|
{ 1.0, 1000 }, \
|
||||||
|
{ 1.0, 1500 }, \
|
||||||
|
{ 2.0, 2000 }, \
|
||||||
|
{ 1.5, 3000 }, \
|
||||||
|
{ 2.5, 4000 }, \
|
||||||
|
{ -15.0, 5000 }, \
|
||||||
|
{ -14.0, 1200 }, \
|
||||||
|
{ -6.0, 600 }, \
|
||||||
|
{ 10.0, 700 }, \
|
||||||
|
{ -10.0, 400 }, \
|
||||||
|
{ -50.0, 2000 }
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
//#define MMU2_DEBUG // Write debug info to serial output
|
||||||
|
|
||||||
|
#endif // PRUSA_MMU2
|
||||||
|
|
||||||
// @section develop
|
// @section develop
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -175,6 +175,16 @@
|
|||||||
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
*
|
||||||
|
* Requires NOZZLE_PARK_FEATURE to park print head in case MMU unit fails.
|
||||||
|
* Requires EXTRUDERS = 5
|
||||||
|
*
|
||||||
|
* For additional configuration see Configuration_adv.h
|
||||||
|
*/
|
||||||
|
//#define PRUSA_MMU2
|
||||||
|
|
||||||
// A dual extruder that uses a single stepper motor
|
// A dual extruder that uses a single stepper motor
|
||||||
//#define SWITCHING_EXTRUDER
|
//#define SWITCHING_EXTRUDER
|
||||||
#if ENABLED(SWITCHING_EXTRUDER)
|
#if ENABLED(SWITCHING_EXTRUDER)
|
||||||
|
@ -2104,6 +2104,59 @@
|
|||||||
#define WIFI_PWD "Wifi Password"
|
#define WIFI_PWD "Wifi Password"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
* Enable in Configuration.h
|
||||||
|
*/
|
||||||
|
#if ENABLED(PRUSA_MMU2)
|
||||||
|
|
||||||
|
// Serial port used for communication with MMU2.
|
||||||
|
// For AVR enable the UART port used for the MMU. (e.g., internalSerial)
|
||||||
|
// For 32-bit boards check your HAL for available serial ports. (e.g., Serial2)
|
||||||
|
#define INTERNAL_SERIAL_PORT 2
|
||||||
|
#define MMU2_SERIAL internalSerial
|
||||||
|
|
||||||
|
// Use hardware reset for MMU if a pin is defined for it
|
||||||
|
//#define MMU2_RST_PIN 23
|
||||||
|
|
||||||
|
// Enable if the MMU2 has 12V stepper motors (MMU2 Firmware 1.0.2 and up)
|
||||||
|
//#define MMU2_MODE_12V
|
||||||
|
|
||||||
|
// G-code to execute when MMU2 F.I.N.D.A. probe detects filament runout
|
||||||
|
#define MMU2_FILAMENT_RUNOUT_SCRIPT "M600"
|
||||||
|
|
||||||
|
// Add an LCD menu for MMU2
|
||||||
|
//#define MMU2_MENUS
|
||||||
|
#if ENABLED(MMU2_MENUS)
|
||||||
|
// Settings for filament load / unload from the LCD menu.
|
||||||
|
// This is for Prusa MK3-style extruders. Customize for your hardware.
|
||||||
|
#define MMU2_FILAMENTCHANGE_EJECT_FEED 80.0
|
||||||
|
#define MMU2_LOAD_TO_NOZZLE_SEQUENCE \
|
||||||
|
{ 7.2, 562 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 36.0, 1393 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 50.0, 198 }
|
||||||
|
|
||||||
|
#define MMU2_RAMMING_SEQUENCE \
|
||||||
|
{ 1.0, 1000 }, \
|
||||||
|
{ 1.0, 1500 }, \
|
||||||
|
{ 2.0, 2000 }, \
|
||||||
|
{ 1.5, 3000 }, \
|
||||||
|
{ 2.5, 4000 }, \
|
||||||
|
{ -15.0, 5000 }, \
|
||||||
|
{ -14.0, 1200 }, \
|
||||||
|
{ -6.0, 600 }, \
|
||||||
|
{ 10.0, 700 }, \
|
||||||
|
{ -10.0, 400 }, \
|
||||||
|
{ -50.0, 2000 }
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
//#define MMU2_DEBUG // Write debug info to serial output
|
||||||
|
|
||||||
|
#endif // PRUSA_MMU2
|
||||||
|
|
||||||
// @section develop
|
// @section develop
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -174,6 +174,16 @@
|
|||||||
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
*
|
||||||
|
* Requires NOZZLE_PARK_FEATURE to park print head in case MMU unit fails.
|
||||||
|
* Requires EXTRUDERS = 5
|
||||||
|
*
|
||||||
|
* For additional configuration see Configuration_adv.h
|
||||||
|
*/
|
||||||
|
//#define PRUSA_MMU2
|
||||||
|
|
||||||
// A dual extruder that uses a single stepper motor
|
// A dual extruder that uses a single stepper motor
|
||||||
//#define SWITCHING_EXTRUDER
|
//#define SWITCHING_EXTRUDER
|
||||||
#if ENABLED(SWITCHING_EXTRUDER)
|
#if ENABLED(SWITCHING_EXTRUDER)
|
||||||
|
@ -2111,6 +2111,59 @@
|
|||||||
#define WIFI_PWD "Wifi Password"
|
#define WIFI_PWD "Wifi Password"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
* Enable in Configuration.h
|
||||||
|
*/
|
||||||
|
#if ENABLED(PRUSA_MMU2)
|
||||||
|
|
||||||
|
// Serial port used for communication with MMU2.
|
||||||
|
// For AVR enable the UART port used for the MMU. (e.g., internalSerial)
|
||||||
|
// For 32-bit boards check your HAL for available serial ports. (e.g., Serial2)
|
||||||
|
#define INTERNAL_SERIAL_PORT 2
|
||||||
|
#define MMU2_SERIAL internalSerial
|
||||||
|
|
||||||
|
// Use hardware reset for MMU if a pin is defined for it
|
||||||
|
//#define MMU2_RST_PIN 23
|
||||||
|
|
||||||
|
// Enable if the MMU2 has 12V stepper motors (MMU2 Firmware 1.0.2 and up)
|
||||||
|
//#define MMU2_MODE_12V
|
||||||
|
|
||||||
|
// G-code to execute when MMU2 F.I.N.D.A. probe detects filament runout
|
||||||
|
#define MMU2_FILAMENT_RUNOUT_SCRIPT "M600"
|
||||||
|
|
||||||
|
// Add an LCD menu for MMU2
|
||||||
|
//#define MMU2_MENUS
|
||||||
|
#if ENABLED(MMU2_MENUS)
|
||||||
|
// Settings for filament load / unload from the LCD menu.
|
||||||
|
// This is for Prusa MK3-style extruders. Customize for your hardware.
|
||||||
|
#define MMU2_FILAMENTCHANGE_EJECT_FEED 80.0
|
||||||
|
#define MMU2_LOAD_TO_NOZZLE_SEQUENCE \
|
||||||
|
{ 7.2, 562 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 36.0, 1393 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 50.0, 198 }
|
||||||
|
|
||||||
|
#define MMU2_RAMMING_SEQUENCE \
|
||||||
|
{ 1.0, 1000 }, \
|
||||||
|
{ 1.0, 1500 }, \
|
||||||
|
{ 2.0, 2000 }, \
|
||||||
|
{ 1.5, 3000 }, \
|
||||||
|
{ 2.5, 4000 }, \
|
||||||
|
{ -15.0, 5000 }, \
|
||||||
|
{ -14.0, 1200 }, \
|
||||||
|
{ -6.0, 600 }, \
|
||||||
|
{ 10.0, 700 }, \
|
||||||
|
{ -10.0, 400 }, \
|
||||||
|
{ -50.0, 2000 }
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
//#define MMU2_DEBUG // Write debug info to serial output
|
||||||
|
|
||||||
|
#endif // PRUSA_MMU2
|
||||||
|
|
||||||
// @section develop
|
// @section develop
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -174,6 +174,16 @@
|
|||||||
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
*
|
||||||
|
* Requires NOZZLE_PARK_FEATURE to park print head in case MMU unit fails.
|
||||||
|
* Requires EXTRUDERS = 5
|
||||||
|
*
|
||||||
|
* For additional configuration see Configuration_adv.h
|
||||||
|
*/
|
||||||
|
//#define PRUSA_MMU2
|
||||||
|
|
||||||
// A dual extruder that uses a single stepper motor
|
// A dual extruder that uses a single stepper motor
|
||||||
//#define SWITCHING_EXTRUDER
|
//#define SWITCHING_EXTRUDER
|
||||||
#if ENABLED(SWITCHING_EXTRUDER)
|
#if ENABLED(SWITCHING_EXTRUDER)
|
||||||
|
@ -2104,6 +2104,59 @@
|
|||||||
#define WIFI_PWD "Wifi Password"
|
#define WIFI_PWD "Wifi Password"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
* Enable in Configuration.h
|
||||||
|
*/
|
||||||
|
#if ENABLED(PRUSA_MMU2)
|
||||||
|
|
||||||
|
// Serial port used for communication with MMU2.
|
||||||
|
// For AVR enable the UART port used for the MMU. (e.g., internalSerial)
|
||||||
|
// For 32-bit boards check your HAL for available serial ports. (e.g., Serial2)
|
||||||
|
#define INTERNAL_SERIAL_PORT 2
|
||||||
|
#define MMU2_SERIAL internalSerial
|
||||||
|
|
||||||
|
// Use hardware reset for MMU if a pin is defined for it
|
||||||
|
//#define MMU2_RST_PIN 23
|
||||||
|
|
||||||
|
// Enable if the MMU2 has 12V stepper motors (MMU2 Firmware 1.0.2 and up)
|
||||||
|
//#define MMU2_MODE_12V
|
||||||
|
|
||||||
|
// G-code to execute when MMU2 F.I.N.D.A. probe detects filament runout
|
||||||
|
#define MMU2_FILAMENT_RUNOUT_SCRIPT "M600"
|
||||||
|
|
||||||
|
// Add an LCD menu for MMU2
|
||||||
|
//#define MMU2_MENUS
|
||||||
|
#if ENABLED(MMU2_MENUS)
|
||||||
|
// Settings for filament load / unload from the LCD menu.
|
||||||
|
// This is for Prusa MK3-style extruders. Customize for your hardware.
|
||||||
|
#define MMU2_FILAMENTCHANGE_EJECT_FEED 80.0
|
||||||
|
#define MMU2_LOAD_TO_NOZZLE_SEQUENCE \
|
||||||
|
{ 7.2, 562 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 36.0, 1393 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 50.0, 198 }
|
||||||
|
|
||||||
|
#define MMU2_RAMMING_SEQUENCE \
|
||||||
|
{ 1.0, 1000 }, \
|
||||||
|
{ 1.0, 1500 }, \
|
||||||
|
{ 2.0, 2000 }, \
|
||||||
|
{ 1.5, 3000 }, \
|
||||||
|
{ 2.5, 4000 }, \
|
||||||
|
{ -15.0, 5000 }, \
|
||||||
|
{ -14.0, 1200 }, \
|
||||||
|
{ -6.0, 600 }, \
|
||||||
|
{ 10.0, 700 }, \
|
||||||
|
{ -10.0, 400 }, \
|
||||||
|
{ -50.0, 2000 }
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
//#define MMU2_DEBUG // Write debug info to serial output
|
||||||
|
|
||||||
|
#endif // PRUSA_MMU2
|
||||||
|
|
||||||
// @section develop
|
// @section develop
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -174,6 +174,16 @@
|
|||||||
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
*
|
||||||
|
* Requires NOZZLE_PARK_FEATURE to park print head in case MMU unit fails.
|
||||||
|
* Requires EXTRUDERS = 5
|
||||||
|
*
|
||||||
|
* For additional configuration see Configuration_adv.h
|
||||||
|
*/
|
||||||
|
//#define PRUSA_MMU2
|
||||||
|
|
||||||
// A dual extruder that uses a single stepper motor
|
// A dual extruder that uses a single stepper motor
|
||||||
//#define SWITCHING_EXTRUDER
|
//#define SWITCHING_EXTRUDER
|
||||||
#if ENABLED(SWITCHING_EXTRUDER)
|
#if ENABLED(SWITCHING_EXTRUDER)
|
||||||
|
@ -174,6 +174,16 @@
|
|||||||
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
*
|
||||||
|
* Requires NOZZLE_PARK_FEATURE to park print head in case MMU unit fails.
|
||||||
|
* Requires EXTRUDERS = 5
|
||||||
|
*
|
||||||
|
* For additional configuration see Configuration_adv.h
|
||||||
|
*/
|
||||||
|
//#define PRUSA_MMU2
|
||||||
|
|
||||||
// A dual extruder that uses a single stepper motor
|
// A dual extruder that uses a single stepper motor
|
||||||
//#define SWITCHING_EXTRUDER
|
//#define SWITCHING_EXTRUDER
|
||||||
#if ENABLED(SWITCHING_EXTRUDER)
|
#if ENABLED(SWITCHING_EXTRUDER)
|
||||||
|
@ -177,6 +177,16 @@
|
|||||||
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
*
|
||||||
|
* Requires NOZZLE_PARK_FEATURE to park print head in case MMU unit fails.
|
||||||
|
* Requires EXTRUDERS = 5
|
||||||
|
*
|
||||||
|
* For additional configuration see Configuration_adv.h
|
||||||
|
*/
|
||||||
|
//#define PRUSA_MMU2
|
||||||
|
|
||||||
// A dual extruder that uses a single stepper motor
|
// A dual extruder that uses a single stepper motor
|
||||||
//#define SWITCHING_EXTRUDER
|
//#define SWITCHING_EXTRUDER
|
||||||
#if ENABLED(SWITCHING_EXTRUDER)
|
#if ENABLED(SWITCHING_EXTRUDER)
|
||||||
|
@ -2103,6 +2103,59 @@
|
|||||||
#define WIFI_PWD "Wifi Password"
|
#define WIFI_PWD "Wifi Password"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
* Enable in Configuration.h
|
||||||
|
*/
|
||||||
|
#if ENABLED(PRUSA_MMU2)
|
||||||
|
|
||||||
|
// Serial port used for communication with MMU2.
|
||||||
|
// For AVR enable the UART port used for the MMU. (e.g., internalSerial)
|
||||||
|
// For 32-bit boards check your HAL for available serial ports. (e.g., Serial2)
|
||||||
|
#define INTERNAL_SERIAL_PORT 2
|
||||||
|
#define MMU2_SERIAL internalSerial
|
||||||
|
|
||||||
|
// Use hardware reset for MMU if a pin is defined for it
|
||||||
|
//#define MMU2_RST_PIN 23
|
||||||
|
|
||||||
|
// Enable if the MMU2 has 12V stepper motors (MMU2 Firmware 1.0.2 and up)
|
||||||
|
//#define MMU2_MODE_12V
|
||||||
|
|
||||||
|
// G-code to execute when MMU2 F.I.N.D.A. probe detects filament runout
|
||||||
|
#define MMU2_FILAMENT_RUNOUT_SCRIPT "M600"
|
||||||
|
|
||||||
|
// Add an LCD menu for MMU2
|
||||||
|
//#define MMU2_MENUS
|
||||||
|
#if ENABLED(MMU2_MENUS)
|
||||||
|
// Settings for filament load / unload from the LCD menu.
|
||||||
|
// This is for Prusa MK3-style extruders. Customize for your hardware.
|
||||||
|
#define MMU2_FILAMENTCHANGE_EJECT_FEED 80.0
|
||||||
|
#define MMU2_LOAD_TO_NOZZLE_SEQUENCE \
|
||||||
|
{ 7.2, 562 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 36.0, 1393 }, \
|
||||||
|
{ 14.4, 871 }, \
|
||||||
|
{ 50.0, 198 }
|
||||||
|
|
||||||
|
#define MMU2_RAMMING_SEQUENCE \
|
||||||
|
{ 1.0, 1000 }, \
|
||||||
|
{ 1.0, 1500 }, \
|
||||||
|
{ 2.0, 2000 }, \
|
||||||
|
{ 1.5, 3000 }, \
|
||||||
|
{ 2.5, 4000 }, \
|
||||||
|
{ -15.0, 5000 }, \
|
||||||
|
{ -14.0, 1200 }, \
|
||||||
|
{ -6.0, 600 }, \
|
||||||
|
{ 10.0, 700 }, \
|
||||||
|
{ -10.0, 400 }, \
|
||||||
|
{ -50.0, 2000 }
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
//#define MMU2_DEBUG // Write debug info to serial output
|
||||||
|
|
||||||
|
#endif // PRUSA_MMU2
|
||||||
|
|
||||||
// @section develop
|
// @section develop
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -205,6 +205,16 @@
|
|||||||
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
//#define E_MUX2_PIN 44 // Needed for 5 to 8 inputs
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prusa Multi-Material Unit v2
|
||||||
|
*
|
||||||
|
* Requires NOZZLE_PARK_FEATURE to park print head in case MMU unit fails.
|
||||||
|
* Requires EXTRUDERS = 5
|
||||||
|
*
|
||||||
|
* For additional configuration see Configuration_adv.h
|
||||||
|
*/
|
||||||
|
//#define PRUSA_MMU2
|
||||||
|
|
||||||
// A dual extruder that uses a single stepper motor
|
// A dual extruder that uses a single stepper motor
|
||||||
//#define SWITCHING_EXTRUDER
|
//#define SWITCHING_EXTRUDER
|
||||||
#if ENABLED(SWITCHING_EXTRUDER)
|
#if ENABLED(SWITCHING_EXTRUDER)
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user