0
0
3D Printingknowledge~10 mins

Printer profile configuration in 3D Printing - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to set the printer's nozzle temperature.

3D Printing
printer.set_nozzle_temperature([1])
Drag options to blanks, or click blank then click option'
Aspeed
Bbed_temperature
C200
Dlayer_height
Attempts:
3 left
💡 Hint
Common Mistakes
Using bed temperature instead of nozzle temperature
Using speed or layer height values here
2fill in blank
medium

Complete the code to set the print speed in the profile.

3D Printing
profile['print_speed'] = [1]
Drag options to blanks, or click blank then click option'
A'layer_height'
B'nozzle_temp'
Cbed_temp
D60
Attempts:
3 left
💡 Hint
Common Mistakes
Using string keys instead of numeric values
Confusing print speed with temperature settings
3fill in blank
hard

Fix the error in setting the bed temperature value.

3D Printing
profile['bed_temperature'] = [1]
Drag options to blanks, or click blank then click option'
A60
B'bed_temp'
Cbed_temperature
D'60C'
Attempts:
3 left
💡 Hint
Common Mistakes
Including units like 'C' in the value
Using string keys instead of numeric values
4fill in blank
hard

Fill both blanks to create a profile dictionary with layer height and infill percentage.

3D Printing
profile = {'layer_height': [1], 'infill': [2]
Drag options to blanks, or click blank then click option'
A0.2
B20
C0.3
D50
Attempts:
3 left
💡 Hint
Common Mistakes
Swapping layer height and infill values
Using percentages as decimals for layer height
5fill in blank
hard

Fill all three blanks to define a printer profile with nozzle temp, bed temp, and print speed.

3D Printing
profile = {'nozzle_temp': [1], 'bed_temp': [2], 'print_speed': [3]
Drag options to blanks, or click blank then click option'
A210
B60
C50
D0.2
Attempts:
3 left
💡 Hint
Common Mistakes
Using layer height value for temperature or speed
Mixing units or using strings instead of numbers