mqqt topic name changed to status for feedback channel

This commit is contained in:
Dirk Alders 2022-07-24 09:23:48 +02:00
父節點 404455ab1c
當前提交 c796d1d47a

查看文件

@ -49,7 +49,7 @@ class sispmctl(object):
self.send_state(output)
def send_state(self, output):
topic = config.MQTT_TOPIC + "/get/" + str(output)
topic = config.MQTT_TOPIC + "/status/" + str(output)
logger.info("Sending Powerplug status information of plug %d to mqtt %s = %s", output, topic, str(self.get_out_state(output)))
self.__mqtt_client__.publish(topic, "true" if self.get_out_state(output) else "false")