add the identification ID for a telemetry field

we will use this so the serial device knows where to send the data
This commit is contained in:
2026-03-11 21:20:17 +00:00
parent 15ab85dbe1
commit 05af404db1
5 changed files with 33 additions and 17 deletions
+1 -1
View File
@@ -3,5 +3,5 @@ package telemetry
type TelemetryProvider interface {
Stream() (<-chan TelemetryData, error)
Subscribe([]FieldID)
Subscribe(map[int16]FieldID)
}