🎲 Adds all gait planners for internal kinematics

This commit is contained in:
Rune Harlyk
2024-08-01 20:45:20 +02:00
committed by Rune Harlyk
parent 46a7dbd8f2
commit 215bfdf582
3 changed files with 34 additions and 8 deletions
+2 -1
View File
@@ -8,7 +8,7 @@ export const jointNames = persistentStore('joint_names', []);
export const model = writable();
export const modes = ['idle', 'rest', 'stand', 'walk'] as const;
export const modes = ['idle', 'rest', 'stand', 'Crawl', 'walk'] as const;
export type Modes = (typeof modes)[number];
@@ -16,6 +16,7 @@ export enum ModesEnum {
Idle,
Rest,
Stand,
Crawl,
Walk
}