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

11 lines
140 B
Protocol Buffer

syntax = "proto3";
message IMUReport {
float x = 1;
float y = 2;
float z = 3;
float temp = 4;
bool success = 5;
}