💄 Simplify calibration UX

This commit is contained in:
Rune Harlyk
2025-06-27 22:39:18 +02:00
parent 98262b2efc
commit 40025a55c3
4 changed files with 150 additions and 128 deletions
@@ -1,9 +1,12 @@
<script lang="ts">
import Servos from './servos.svelte';
import ServoTable from './ServoTable.svelte';
import Servos from './servos.svelte'
import ServoTable from './ServoTable.svelte'
let servoId = $state(0)
let pwm = $state(306)
</script>
<div class="mx-0 my-1 flex flex-col space-y-4 sm:mx-8 sm:my-8">
<Servos />
<ServoTable />
<Servos bind:servoId bind:pwm />
<ServoTable {servoId} {pwm} />
</div>