Update device.py trying to set fixed value from history

This commit is contained in:
Alexandre Leites 2023-03-14 14:29:25 +01:00 committed by GitHub
parent fde41ac456
commit 318e60e91e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,7 @@
import importlib
from pyhon.commands import HonCommand
from pyhon.parameter import HonParameterFixed
class HonDevice:
@ -93,7 +94,7 @@ class HonDevice:
command.set_program(parameters.pop("program").split(".")[-1].lower())
command = self.commands[name]
for key, data in command.settings.items():
if parameters.get(key) is not None:
if not isinstance(data, HonParameterFixed) and parameters.get(key) is not None:
data.value = parameters.get(key)
async def load_commands(self):