first commit

This commit is contained in:
Dana Markova
2025-07-28 13:21:36 +03:00
commit 0de214c9a1
547 changed files with 287132 additions and 0 deletions

15
dev/imu.h Normal file
View File

@ -0,0 +1,15 @@
#pragma once
struct IMU_Data
{
short Temp;
struct { short X, Y, Z; } Acc;
struct { short X, Y, Z; } Gyr;
struct { short X, Y, Z; } Mag;
float Bar;
float Tmp;
};
void IMU_Init();
void IMU_Get(IMU_Data& Data);