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