Merge pull request #12 from MiguelAngelLV/main

Oven overwrite
This commit is contained in:
Andre Basche 2023-04-19 20:18:32 +02:00 committed by GitHub
commit 3ec0f5a006
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 1 deletions

14
pyhon/appliances/ov.py Normal file
View File

@ -0,0 +1,14 @@
class Appliance:
def data(self, data):
if data["attributes"]["lastConnEvent"]["category"] == "DISCONNECTED":
data["attributes"]["parameters"]["temp"] = "0"
data["attributes"]["parameters"]["onOffStatus"] = "0"
data["attributes"]["parameters"]["remoteCtrValid"] = "0"
data["attributes"]["parameters"]["remainingTimeMM"] = "0"
data["active"] = data["attributes"]["parameters"]["onOffStatus"] == "1"
return data
def settings(self, settings):
return settings

View File

@ -7,7 +7,7 @@ with open("README.md", "r") as f:
setup(
name="pyhOn",
version="0.8.0",
version="0.8.1",
author="Andre Basche",
description="Control hOn devices with python",
long_description=long_description,