RPiPico-Holonome2023/gyro_data.h
2023-04-28 23:51:43 +02:00

14 lines
199 B
C

#include "pico/stdlib.h"
#ifndef GYRO_DATA_H
#define GYRO_DATA_H
struct t_angle_gyro_float{
float rot_x, rot_y, rot_z;
};
struct t_angle_gyro{
int32_t rot_x, rot_y, rot_z, temp;
};
#endif