[docs]classValueCls:"""Value commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("value",core,parent)
[docs]defget(self)->float:"""SCPI: INPut:UPORt[:VALue] \n Snippet: value: float = driver.inputPy.uport.value.get() \n Queries the control lines of the user ports. For details see method RsFsw.Output.Uport.Value.set. \n :return: level: bit values in hexadecimal format TTL type voltage levels (max. 5V) Range: #B00000000 to #B00111111"""response=self._core.io.query_str(f'INPut:UPORt:VALue?')returnConversions.str_to_float(response)