Skip to content

Commit 9276650

Browse files
committed
Expose motion sensor temperature
Add temp sensor for the motion sensor. This can re-use the heating API to query the device state, but has a different name to avoid creating an extra entity on the heating devices
1 parent 62ade10 commit 9276650

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

pyhiveapi/apyhiveapi/helper/const.py

+2
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@
6060
"DOG_BARK": "self.session.hub.getDogBarkStatus(device)",
6161
"GLASS_BREAK": "self.session.hub.getGlassBreakStatus(device)",
6262
"Camera_Temp": "self.session.camera.getCameraTemperature(device)",
63+
"Current_Temperature": "self.session.heating.getCurrentTemperature(device)",
6364
"Heating_Current_Temperature": "self.session.heating.getCurrentTemperature(device)",
6465
"Heating_Target_Temperature": "self.session.heating.getTargetTemperature(device)",
6566
"Heating_State": "self.session.heating.getState(device)",
@@ -133,6 +134,7 @@
133134
# ],
134135
"motionsensor": [
135136
'addList("binary_sensor", p)',
137+
'addList("sensor", p, haName=" Current Temperature", hiveType="Current_Temperature", category="diagnostic")',
136138
],
137139
"contactsensor": ['addList("binary_sensor", p)'],
138140
}

0 commit comments

Comments
 (0)