🎨 Format and simplify controls

This commit is contained in:
Rune Harlyk
2026-01-02 22:35:04 +01:00
committed by nikguin04
parent a6b5b0881a
commit 0ef55bcc7e
25 changed files with 6424 additions and 5981 deletions
+1 -2
View File
@@ -1,10 +1,9 @@
import { writable } from 'svelte/store'
import { IMUData } from '$lib/platform_shared/websocket_message'
const imu_data: IMUData[] = [];
const imu_data: IMUData[] = []
const maxIMUData = 100
export const imu = (() => {
const { subscribe, update } = writable(imu_data)