Files
SpotMicroESP32-Leika/platform_shared/example.proto
T
2026-01-03 22:15:00 +01:00

13 lines
159 B
Protocol Buffer

syntax = "proto3";
enum IMUType {
IMU_NONE = 0;
IMU_ACCEL = 1;
IMU_GYRO = 2;
}
message IMUReport {
IMUType type = 1;
double x_val = 2;
}