Merge pull request #300 from tcurdt/master

added PrintNC profile
This commit is contained in:
Stewart Allen 2024-09-03 10:43:20 -07:00 committed by GitHub
commit 8ab4aa8e21
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,30 @@
{
"file-ext": "nc",
"token-space": " ",
"strip-comments": true,
"pre":[
"G21 ; set units to MM (required)",
"G90 ; absolute position mode (required)"
],
"post":[
"M5 ; spindle off",
"M9 ; coolant off",
"M30 ; program end"
],
"tool-change":[
"M6 T{tool} ; change tool to '{tool_name}'"
],
"dwell":[
"G4 P{time} ; dwell for {time}ms"
],
"spindle":[
"M3 S{speed}"
],
"settings": {
"origin_center":false,
"bed_width": 950,
"bed_depth": 600,
"build_height": 180,
"spindle_max": 24000
}
}