add laser filters, origin bounds

This commit is contained in:
Stewart Allen 2020-03-12 17:09:44 -04:00
commit 8cf7ccb336
10 changed files with 85 additions and 27 deletions

View 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
}
}

View 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
}
}

View file

@ -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;