def get_setpoint(self): return self._protocol.execute( Command( 164, [], [Output(Parameter.Setpoint(), Output(Parameter.Regulation())) ]))
def set_regulation_mode(self, mode): mode_input = Input(mode, Parameter.Regulation()) return self._protocol.execute(Command(3, [mode_input], []))
def get_regulation_mode(self): return self._protocol.execute( Command(154, [], [Output(Parameter.Regulation())]))