Example #1
0
 def get_reflected_power_limit(self):
     return self._protocol.execute(
         Command(170, [], [Output(Parameter.ReflectedPower())]))
Example #2
0
 def set_reflected_power_limit(self, power_limit):
     power_input = Input(power_limit, Parameter.ReflectedPower())
     return self._protocol.execute(Command(5, [power_input], []))
Example #3
0
 def get_delivered_power(self):
     return self._protocol.execute(
         Command(167, [], [Output(Parameter.ReflectedPower())]))