Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
3c81c46c8b | |||
0d92d037a5 | |||
5e32dd76c0 |
10
pyhon/appliances/td.py
Normal file
10
pyhon/appliances/td.py
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
class Appliance:
|
||||||
|
def __init__(self, data):
|
||||||
|
self._data = data
|
||||||
|
|
||||||
|
def get(self):
|
||||||
|
if self._data["attributes"]["lastConnEvent"]["category"] == "DISCONNECTED":
|
||||||
|
self._data["attributes"]["parameters"]["machMode"] = "0"
|
||||||
|
self._data["active"] = bool(self._data.get("activity"))
|
||||||
|
self._data["pause"] = self._data["attributes"]["parameters"]["machMode"] == "3"
|
||||||
|
return self._data
|
2
setup.py
2
setup.py
@ -7,7 +7,7 @@ with open("README.md", "r") as f:
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="pyhOn",
|
name="pyhOn",
|
||||||
version="0.4.0",
|
version="0.4.1",
|
||||||
author="Andre Basche",
|
author="Andre Basche",
|
||||||
description="Control hOn devices with python",
|
description="Control hOn devices with python",
|
||||||
long_description=long_description,
|
long_description=long_description,
|
||||||
|
Reference in New Issue
Block a user