Complete the code to move the machine to its home position.
G28 [1]The command G28 X0 Y0 Z0 moves the machine to its home position on all axes.
Complete the code to set the current position as the reference point.
G92 [1]The G92 X0 Y0 Z0 command sets the current position as the reference point at zero for all axes.
Fix the error in the code to correctly move the machine to the reference point.
G00 [1]The command G00 X0 Y0 Z0 moves the machine rapidly to the reference point coordinates.
Fill both blanks to set the machine home and then move to the reference point.
G28 [1] G00 [2]
First, G28 X0 Y0 Z0 sends the machine to home. Then, G00 X10 Y10 Z10 moves it rapidly to the reference point at coordinates 10,10,10.
Fill both blanks to define a new reference point and move the machine there.
G92 [1] G00 [2] M30
G92 X5 Y5 Z5 sets the current position as reference at 5,5,5. G00 X5 Y5 Z5 moves the machine there. M30 ends the program; no extra code needed after it.
