We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ebe12dd + 7aee568 commit 7283271Copy full SHA for 7283271
RELEASE_NOTES.md
@@ -1,5 +1,9 @@
1
# Frequenz Common API Release Notes
2
3
+## New Features
4
+
5
+- Added message linking microgrid and sensor IDs.
6
7
## Bug Fixes
8
9
- Fix a dependency issue by pinning the `grpcio` version and related libraries.
proto/frequenz/api/common/v1/microgrid/microgrid.proto
@@ -71,3 +71,12 @@ message MicrogridComponentIDs {
71
// List of component IDs belonging to this microgrid.
72
repeated uint64 component_ids = 2;
73
}
74
75
+/// A message to link sensor IDs with their respective microgrid ID.
76
+message MicrogridSensorIDs {
77
+ // The ID of the microgrid.
78
+ uint64 microgrid_id = 1;
79
80
+ // List of sensor IDs belonging to this microgrid.
81
+ repeated uint64 sensor_ids = 2;
82
+}
0 commit comments