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