settings for probe rotary
This commit is contained in:
@@ -518,6 +518,51 @@
|
||||
}
|
||||
},
|
||||
|
||||
"probe-rotary": {
|
||||
"probe-diameter": {
|
||||
"type": "float",
|
||||
"min": 0,
|
||||
"max": 25.4,
|
||||
"unit": "mm",
|
||||
"default": 6.35
|
||||
},
|
||||
"probe-xdim": {
|
||||
"type": "float",
|
||||
"unit": "mm",
|
||||
"min": 0,
|
||||
"max": 1000,
|
||||
"default": 53.975
|
||||
},
|
||||
"probe-ydim": {
|
||||
"type": "float",
|
||||
"unit": "mm",
|
||||
"min": 0,
|
||||
"max": 1000,
|
||||
"default": 53.975
|
||||
},
|
||||
"probe-zdim": {
|
||||
"type": "float",
|
||||
"unit": "mm",
|
||||
"min": 0,
|
||||
"max": 1000,
|
||||
"default": 15.4
|
||||
},
|
||||
"probe-fast-seek": {
|
||||
"type": "float",
|
||||
"unit": "mm/m",
|
||||
"min": 0,
|
||||
"max": 1000,
|
||||
"default": 200
|
||||
},
|
||||
"probe-slow-seek": {
|
||||
"type": "float",
|
||||
"unit": "mm/m",
|
||||
"min": 0,
|
||||
"max": 1000,
|
||||
"default": 25
|
||||
}
|
||||
},
|
||||
|
||||
"gcode": {
|
||||
"program-start": {
|
||||
"type": "text",
|
||||
|
||||
@@ -257,6 +257,14 @@
|
||||
"probe-zdim": 15.4,
|
||||
"probe-xdim": 53.975
|
||||
},
|
||||
"probe-rotary": {
|
||||
"probe-diameter": 6.35,
|
||||
"probe-ydim": 53.975,
|
||||
"probe-slow-seek": 25,
|
||||
"probe-fast-seek": 75,
|
||||
"probe-zdim": 15.4,
|
||||
"probe-xdim": 53.975
|
||||
},
|
||||
"outputs": {
|
||||
"load-1": "disabled",
|
||||
"fault": "disabled",
|
||||
|
||||
@@ -65,11 +65,25 @@
|
||||
|
||||
<br />
|
||||
|
||||
<h3>Probe Block</h3>
|
||||
|
||||
<br />
|
||||
|
||||
{#each Object.keys(configTemplate.probe) as key}
|
||||
{#if key !== "probe-diameter"}
|
||||
<ConfigTemplatedInput key={`probe.${key}`} />
|
||||
{/if}
|
||||
{/each}
|
||||
|
||||
<h3>Probe Rotary</h3>
|
||||
|
||||
<br />
|
||||
|
||||
{#each Object.keys(configTemplate["probe-rotary"]) as key}
|
||||
{#if key !== "probe-diameter"}
|
||||
<ConfigTemplatedInput key={`probe.${key}`} />
|
||||
{/if}
|
||||
{/each}
|
||||
</fieldset>
|
||||
|
||||
<fieldset>
|
||||
|
||||
Reference in New Issue
Block a user