0
0
3D Printingknowledge~10 mins

Stepper motors and motion system 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 identify the main function of a stepper motor in a 3D printer.

3D Printing
The stepper motor is used to control the [1] of the print head precisely.
Drag options to blanks, or click blank then click option'
Amovement
Btemperature
Ccolor
Dpower
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing movement with temperature control.
Thinking stepper motors control power supply.
2fill in blank
medium

Complete the code to explain how stepper motors move in a 3D printer.

3D Printing
Stepper motors move in small steps by energizing coils in a specific [1].
Drag options to blanks, or click blank then click option'
Atemperature
Bspeed
Csequence
Ddirection
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing speed instead of sequence.
Confusing direction with the order of coil activation.
3fill in blank
hard

Fix the error in the statement about stepper motor control.

3D Printing
The stepper motor moves continuously without stopping because it uses [1] control.
Drag options to blanks, or click blank then click option'
Aclosed-loop
Bopen-loop
Crandom
Dmanual
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing closed-loop control which uses feedback.
Selecting random or manual which are incorrect terms here.
4fill in blank
hard

Fill both blanks to describe the role of the motion system in a 3D printer.

3D Printing
The motion system uses [1] motors to move the [2] along the X, Y, and Z axes.
Drag options to blanks, or click blank then click option'
Astepper
Blaser
Cprint head
Dextruder
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing laser with stepper motor.
Mixing up extruder and print head.
5fill in blank
hard

Fill all three blanks to complete the dictionary comprehension describing motor steps.

3D Printing
steps = [1]: [1] for [2] in range(1, 6) if [3] % 2 == 0}
Drag options to blanks, or click blank then click option'
Amotor_step
Bangle
Dstep
Attempts:
3 left
💡 Hint
Common Mistakes
Using the same variable name for key and loop variable incorrectly.
Confusing motor_step with step variable.