Merge pull request #350 from bakedPotatoLord/tormach_24R
Add new machine for CAM
This commit is contained in:
commit
80c40237ae
1 changed files with 32 additions and 0 deletions
32
src/kiri-dev/cam/Tormach.24R
Normal file
32
src/kiri-dev/cam/Tormach.24R
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"file-ext": "nc",
|
||||
"token-space": " ",
|
||||
"strip-comments": false,
|
||||
"pre":[
|
||||
"G20 ; set units to inches (required)",
|
||||
"G90 ; absolute position mode (required)"
|
||||
],
|
||||
"post":[
|
||||
"M05 ; spindle off",
|
||||
"M30 ; program end"
|
||||
],
|
||||
"tool-change":[
|
||||
"M05 ; spindle off",
|
||||
"M6 T{tool} ; change tool to '{tool_name}'",
|
||||
"G37; get tool offset with ETS"
|
||||
],
|
||||
"spindle": [
|
||||
"M3 S{speed} ; spindle on at {spindle} rpm"
|
||||
],
|
||||
"dwell":[
|
||||
"G4 P{time} ; dwell for {time}ms"
|
||||
],
|
||||
"settings": {
|
||||
"origin_center":false,
|
||||
"bed_width": 678.18,
|
||||
"bed_depth": 1524,
|
||||
"build_height":150,
|
||||
"spindle_max": 24000
|
||||
},
|
||||
"deviceName": "Tormach 24R with ETS"
|
||||
}
|
||||
Loading…
Reference in a new issue