mirror of
https://github.com/Andre0512/pyhOn.git
synced 2025-05-21 02:15:09 -04:00
Get program name by prcode
This commit is contained in:
parent
d4c6ccdce3
commit
9ee5dbc956
7 changed files with 27 additions and 1 deletions
|
@ -2,11 +2,16 @@ from pyhon.parameter.fixed import HonParameterFixed
|
|||
|
||||
|
||||
class Appliance:
|
||||
def __init__(self, appliance):
|
||||
self.parent = appliance
|
||||
|
||||
def data(self, data):
|
||||
if data["attributes"]["lastConnEvent"]["category"] == "DISCONNECTED":
|
||||
data["attributes"]["parameters"]["machMode"] = "0"
|
||||
data["active"] = bool(data.get("attributes", {}).get("activity"))
|
||||
data["pause"] = data["attributes"]["parameters"]["machMode"] == "3"
|
||||
program = int(data["attributes"]["parameters"]["prCode"])
|
||||
data["programName"] = self.parent.settings["startProgram.program"].ids[program]
|
||||
return data
|
||||
|
||||
def settings(self, settings):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue