settings for probe rotary

This commit is contained in:
sanjayk03-dev
2024-11-04 22:26:03 +05:30
parent 9bb22b0698
commit 213cfc7d70
3 changed files with 67 additions and 0 deletions

View File

@@ -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": { "gcode": {
"program-start": { "program-start": {
"type": "text", "type": "text",

View File

@@ -257,6 +257,14 @@
"probe-zdim": 15.4, "probe-zdim": 15.4,
"probe-xdim": 53.975 "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": { "outputs": {
"load-1": "disabled", "load-1": "disabled",
"fault": "disabled", "fault": "disabled",

View File

@@ -65,11 +65,25 @@
<br /> <br />
<h3>Probe Block</h3>
<br />
{#each Object.keys(configTemplate.probe) as key} {#each Object.keys(configTemplate.probe) as key}
{#if key !== "probe-diameter"} {#if key !== "probe-diameter"}
<ConfigTemplatedInput key={`probe.${key}`} /> <ConfigTemplatedInput key={`probe.${key}`} />
{/if} {/if}
{/each} {/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>
<fieldset> <fieldset>