Attempt at implementing PB sending for ESP32

This commit is contained in:
Niklas Jensen
2025-12-29 13:39:56 +01:00
committed by nikguin04
parent 356ccda4ae
commit 3015c13da8
5 changed files with 56 additions and 6 deletions
+11
View File
@@ -0,0 +1,11 @@
syntax = "proto3";
message IMUReport {
float x = 1;
float y = 2;
float z = 3;
float temp = 4;
bool success = 5;
}