0
0
3D Printingknowledge~30 mins

Dual extruder printing in 3D Printing - Mini Project: Build & Apply

Choose your learning style9 modes available
Dual Extruder 3D Printing Setup
📖 Scenario: You have a 3D printer with two extruders. You want to prepare a simple print job that uses both extruders to print two different colors or materials in one object.
🎯 Goal: Build a step-by-step setup for a dual extruder 3D print job, including defining the print materials, setting the temperature for each extruder, assigning parts of the model to each extruder, and finalizing the print configuration.
📋 What You'll Learn
Create a dictionary with two extruders and their materials
Add temperature settings for each extruder
Assign model parts to each extruder using a dictionary
Complete the print job configuration with all settings
💡 Why This Matters
🌍 Real World
Dual extruder 3D printers allow printing with two colors or materials in one object, improving design possibilities and functionality.
💼 Career
Understanding dual extruder setup is important for 3D printing technicians, designers, and engineers working with advanced 3D printers.
Progress0 / 4 steps
1
Define extruders and materials
Create a dictionary called extruders with two keys: extruder_1 and extruder_2. Assign the value 'PLA Red' to extruder_1 and 'PLA Blue' to extruder_2.
3D Printing
Need a hint?

Use a Python dictionary with keys 'extruder_1' and 'extruder_2' and assign the exact material names as values.

2
Set temperature for each extruder
Create a dictionary called temperatures with keys extruder_1 and extruder_2. Set the temperature to 210 for extruder_1 and 215 for extruder_2.
3D Printing
Need a hint?

Use a dictionary with the exact temperature values for each extruder.

3
Assign model parts to extruders
Create a dictionary called model_parts with keys base and details. Assign 'extruder_1' to base and 'extruder_2' to details.
3D Printing
Need a hint?

Assign the base part to extruder_1 and the details part to extruder_2 using a dictionary.

4
Complete print job configuration
Create a dictionary called print_job that includes the keys extruders, temperatures, and model_parts. Assign the previously created dictionaries to these keys.
3D Printing
Need a hint?

Combine all previous dictionaries into one print_job dictionary with the exact keys.