js vgm module and widget fix

VGM js module by jamisonderek
Js fixes by jamisonderek
This commit is contained in:
MX
2024-04-23 12:24:07 +03:00
parent f88a916ccc
commit 3269f751cd
9 changed files with 1114 additions and 2 deletions

View File

@@ -0,0 +1,15 @@
#pragma once
typedef struct Imu Imu;
Imu* imu_alloc(void);
void imu_free(Imu* imu);
bool imu_present(Imu* imu);
float imu_pitch_get(Imu* imu);
float imu_roll_get(Imu* imu);
float imu_yaw_get(Imu* imu);