We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a441b8c commit 0645a21Copy full SHA for 0645a21
plugwise/constants.py
@@ -106,6 +106,11 @@
106
UOM = namedtuple("UOM", "unit_of_measurement")
107
DATA = namedtuple("DATA", "name unit_of_measurement")
108
109
+GROUP_MEASUREMENTS: Final[dict[str, UOM]] = {
110
+ "electricity_consumed": UOM(POWER_WATT),
111
+ "electricity_produced": UOM(POWER_WATT),
112
+ "temperature": UOM(TEMP_CELSIUS),
113
+}
114
# P1 related measurements:
115
P1_MEASUREMENTS: Final[dict[str, UOM]] = {
116
"electricity_consumed": UOM(POWER_WATT),
0 commit comments