Merge branch 'master' into rel-4.0
This commit is contained in:
commit
259e87e121
4 changed files with 79 additions and 14 deletions
30
src/kiri-dev/cam/Sienci.AltMill
Normal file
30
src/kiri-dev/cam/Sienci.AltMill
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
{
|
||||
"file-ext": "nc",
|
||||
"token-space": " ",
|
||||
"strip-comments": false,
|
||||
"pre":[
|
||||
"G21 ; set units to MM (required)",
|
||||
"G90 ; absolute position mode (required)",
|
||||
"G0 F15000 ; default rapid move speed",
|
||||
"G1 F4000 ; default cutting speed"
|
||||
],
|
||||
"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": {
|
||||
"bed_width": 1260,
|
||||
"bed_depth": 1248,
|
||||
"build_height": 170
|
||||
}
|
||||
}
|
||||
|
|
@ -1,14 +1,16 @@
|
|||
{
|
||||
"file-ext": "nc",
|
||||
"token-space": " ",
|
||||
"strip-comments": true,
|
||||
"strip-comments": false,
|
||||
"pre":[
|
||||
"G21 ; set units to MM (required)",
|
||||
"G90 ; absolute position mode (required)",
|
||||
"G0 F6000 ; default rapid move speed",
|
||||
"G0 F4000 ; default rapid move speed",
|
||||
"G1 F1500 ; default cutting speed"
|
||||
],
|
||||
"post":[
|
||||
"M5 ; spindle off",
|
||||
"M9 ; coolant off",
|
||||
"M30 ; program end"
|
||||
],
|
||||
"tool-change":[
|
||||
|
|
@ -21,7 +23,8 @@
|
|||
"image_url": "/decal/longmill.png",
|
||||
"image_scale": 200,
|
||||
"image_anchor": 8,
|
||||
"bed_width": 760,
|
||||
"bed_depth": 760
|
||||
"bed_width": 770,
|
||||
"bed_depth": 820,
|
||||
"build_height": 110
|
||||
}
|
||||
}
|
||||
|
|
|
|||
27
src/kiri-dev/cam/Sienci.LongMill.MK2
Normal file
27
src/kiri-dev/cam/Sienci.LongMill.MK2
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
"file-ext": "nc",
|
||||
"token-space": " ",
|
||||
"strip-comments": false,
|
||||
"pre":[
|
||||
"G21 ; set units to MM (required)",
|
||||
"G90 ; absolute position mode (required)",
|
||||
"G0 F5500 ; default rapid move speed",
|
||||
"G1 F2000 ; default cutting speed"
|
||||
],
|
||||
"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"
|
||||
],
|
||||
"settings": {
|
||||
"bed_width": 810,
|
||||
"bed_depth": 855,
|
||||
"build_height": 120
|
||||
}
|
||||
}
|
||||
|
|
@ -1,22 +1,27 @@
|
|||
{
|
||||
"file-ext": "nc",
|
||||
"token-space": " ",
|
||||
"strip-comments": true,
|
||||
"strip-comments": false,
|
||||
"pre":[
|
||||
"G21 ; set units to MM (required)",
|
||||
"G90 ; absolute position mode (required)"
|
||||
"G90 ; absolute position mode (required)",
|
||||
"G0 F1800 ; default rapid move speed",
|
||||
"G1 F800 ; default cutting speed"
|
||||
],
|
||||
"post":[
|
||||
"M30 ; program end"
|
||||
"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"
|
||||
],
|
||||
"settings": {
|
||||
"bed_width": 235,
|
||||
"bed_depth": 185
|
||||
}
|
||||
"dwell":[
|
||||
"G4 P{time} ; dwell for {time}ms"
|
||||
],
|
||||
"settings": {
|
||||
"bed_width": 235,
|
||||
"bed_depth": 185,
|
||||
"build_height": 100
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue