add laser filters, origin bounds
This commit is contained in:
parent
a0e1efca1b
commit
8cf7ccb336
10 changed files with 85 additions and 27 deletions
16
web/kiri/filter/LASER/Any.Generic.Laser
Normal file
16
web/kiri/filter/LASER/Any.Generic.Laser
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"file-ext": "gcode",
|
||||
"token-space": " ",
|
||||
"strip-comments": false,
|
||||
"pre":[
|
||||
"G21 ; set units to MM (required)",
|
||||
"G90 ; absolute position mode (required)"
|
||||
],
|
||||
"post":[
|
||||
"M30 ; program end"
|
||||
],
|
||||
"settings": {
|
||||
"bed_width": 300,
|
||||
"bed_depth": 300
|
||||
}
|
||||
}
|
||||
16
web/kiri/filter/LASER/Glowforge
Normal file
16
web/kiri/filter/LASER/Glowforge
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"file-ext": "gcode",
|
||||
"token-space": " ",
|
||||
"strip-comments": false,
|
||||
"pre":[
|
||||
"G21 ; set units to MM (required)",
|
||||
"G90 ; absolute position mode (required)"
|
||||
],
|
||||
"post":[
|
||||
"M30 ; program end"
|
||||
],
|
||||
"settings": {
|
||||
"bed_width": 500,
|
||||
"bed_depth": 300
|
||||
}
|
||||
}
|
||||
|
|
@ -526,8 +526,16 @@ button.selected {
|
|||
#device-list option[favorite="1"] {
|
||||
font-weight: bold;
|
||||
}
|
||||
#device > div {
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
#device label {
|
||||
white-space: nowrap;
|
||||
padding: 2px;
|
||||
}
|
||||
#device input {
|
||||
margin: 2px;
|
||||
}
|
||||
#device textarea {
|
||||
overflow: hidden;
|
||||
|
|
|
|||
Loading…
Reference in a new issue