cut and lower program keys

This commit is contained in:
Andre Basche 2023-03-11 01:10:27 +01:00
parent fe4f6e766e
commit fc8c92d538
3 changed files with 8 additions and 7 deletions

View File

@ -2,12 +2,12 @@ from pyhon.parameter import HonParameterFixed, HonParameterEnum, HonParameterRan
class HonCommand:
def __init__(self, name, attributes, connector, device, multi=None, category=""):
def __init__(self, name, attributes, connector, device, multi=None, program=""):
self._connector = connector
self._device = device
self._name = name
self._multi = multi or {}
self._category = category
self._program = program
self._description = attributes.get("description", "")
self._parameters = self._create_parameters(attributes.get("parameters", {}))
self._ancillary_parameters = self._create_parameters(attributes.get("ancillaryParameters", {}))

View File

@ -92,9 +92,10 @@ class HonDevice:
commands[command] = HonCommand(command, attr, self._connector, self)
elif "parameters" in attr[list(attr)[0]]:
multi = {}
for category, attr2 in attr.items():
cmd = HonCommand(command, attr2, self._connector, self, multi=multi, category=category)
multi[category] = cmd
for program, attr2 in attr.items():
program = program.split(".")[-1].lower()
cmd = HonCommand(command, attr2, self._connector, self, multi=multi, program=program)
multi[program] = cmd
commands[command] = cmd
self._commands = commands

View File

@ -93,7 +93,7 @@ class HonParameterEnum(HonParameter):
@property
def values(self):
return [str(value) for value in self._values]
return sorted([str(value) for value in self._values])
@property
def value(self):
@ -111,7 +111,7 @@ class HonParameterProgram(HonParameterEnum):
def __init__(self, key, command):
super().__init__(key, {})
self._command = command
self._value = command._category
self._value = command._program
self._values = command._multi
self._typology = "enum"