JS: vgm_sensor tutorial

This commit is contained in:
Derek Jamison
2024-04-12 15:00:38 -05:00
parent 6b1cc1013e
commit c70c4fb65e
12 changed files with 1290 additions and 0 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);