Bird
0
0
CNC Programmingscripting~10 mins

CNC machine coordinate system in CNC Programming - 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 machine to the absolute coordinate system.

CNC Programming
G[1] ; Set to absolute positioning
Drag options to blanks, or click blank then click option'
A91
B90
C92
D93
Attempts:
3 left
💡 Hint
Common Mistakes
Using G91 instead of G90 for absolute positioning
Confusing G92 with coordinate system setting
2fill in blank
medium

Complete the code to set the work coordinate system to G54.

CNC Programming
G[1] ; Select work coordinate system G54
Drag options to blanks, or click blank then click option'
A54
B90
C91
D92
Attempts:
3 left
💡 Hint
Common Mistakes
Using G90 which is for absolute positioning
Using G92 which sets the coordinate offset
3fill in blank
hard

Fix the error in the code to set the coordinate offset at X=10, Y=20.

CNC Programming
G92 [1]10 Y20 ; Set coordinate offset
Drag options to blanks, or click blank then click option'
AZ
BY
CA
DX
Attempts:
3 left
💡 Hint
Common Mistakes
Using Y before 10 instead of X
Omitting axis letters
4fill in blank
hard

Fill both blanks to set coordinate offset at X=10 and Y=20 correctly.

CNC Programming
G92 [1]10 [2]20 ; Set coordinate offset
Drag options to blanks, or click blank then click option'
AX
BY
CZ
DA
Attempts:
3 left
💡 Hint
Common Mistakes
Swapping X and Y
Using Z or A instead of X or Y
5fill in blank
hard

Fill all three blanks to create a coordinate system offset dictionary in Python for X=10, Y=20, Z=5.

CNC Programming
offsets = { [1]: [2], [3]: 20, 'Z': 5 }
Drag options to blanks, or click blank then click option'
A'X'
B10
C'Y'
D15
Attempts:
3 left
💡 Hint
Common Mistakes
Using numbers as keys without quotes
Wrong values for offsets