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 1cc2915 commit 87361eeCopy full SHA for 87361ee
plugwise/__init__.py
@@ -823,6 +823,14 @@ async def set_dhw_mode(self, mode: str) -> None:
823
824
await self._request(uri, method="put", data=data)
825
826
+ async def set_temperature_offset(self, offset: float) -> None:
827
+ """Set the temperature offset for thermostats that support this feature."""
828
+
829
+ uri = f"{APPLIANCES}???????????"
830
+ data = f"<offset_functionality><offset>{offset}</offset></offset_functionality>"
831
832
+ await self._request(uri, method="put", data=data)
833
834
async def delete_notification(self) -> None:
835
"""Delete the active Plugwise Notification."""
836
await self._request(NOTIFICATIONS, method="delete")
0 commit comments