Complete the code to start the 3D printer with a home command.
G28 [1]The G28 command homes all axes. Using X Y Z specifies all axes to home.
Complete the code to set the nozzle temperature to 200°C before printing.
M104 [1]200
The M104 command sets the nozzle temperature. The S parameter specifies the temperature value.
Fix the error in the end G-code to turn off the heated bed.
M140 [1]0
The M140 command controls the heated bed temperature. The S parameter sets the temperature, so S0 turns it off.
Fill both blanks to move the print head to the front-left corner at 150 mm/s.
G1 X[1] Y[2] F9000
The front-left corner is at coordinates X0 Y0. The feedrate F9000 sets the speed to 150 mm/s.
Fill all three blanks to create a dictionary that maps each axis to its home position.
{'X': [1], 'Y': [2], 'Z': [3]Home positions for all axes are usually at 0. This dictionary maps each axis to zero.