🫁 Adds rest mode

This commit is contained in:
Rune Harlyk
2024-02-25 01:52:34 +01:00
committed by Rune Harlyk
parent 3e7918208a
commit 2d8137772a
2 changed files with 8 additions and 6 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ export const jointNames = persistentStore('joint_names', []);
export const model = writable();
export const modes = ['idle', 'stand', 'walk'] as const;
export const modes = ['idle', 'rest', 'stand', 'walk'] as const;
export type Modes = (typeof modes)[number];