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