From 293a2a38871a47500f74bd304fd654b39fc277f9 Mon Sep 17 00:00:00 2001 From: Jochen Vothknecht <jochen3120@gmail.com> Date: Tue, 23 Nov 2021 21:38:06 +0100 Subject: [PATCH] Topic unification --- CLC-qthing/Controller.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CLC-qthing/Controller.cpp b/CLC-qthing/Controller.cpp index 6c3a9d2..9ec844a 100644 --- a/CLC-qthing/Controller.cpp +++ b/CLC-qthing/Controller.cpp @@ -132,7 +132,7 @@ CyanLight::Controller::Controller(uint16_t baseChannel, uint8_t channelsConfigur add_message_callback(DEVICE_NAMESPACE "CyanLight/resolution/get", getRes); add_message_callback(DEVICE_NAMESPACE "CyanLight/frqres/get", getFrqRes); add_message_callback(DEVICE_NAMESPACE "CyanLight/channel/get", getBCh); - add_message_callback(DEVICE_NAMESPACE "CyanLight/channels/get", getChs); + add_message_callback(DEVICE_NAMESPACE "CyanLight/channelCnt/get", getChs); // global setters add_message_callback("service/CyanLight/frqres/set", setFrqRes); @@ -145,7 +145,7 @@ CyanLight::Controller::Controller(uint16_t baseChannel, uint8_t channelsConfigur add_message_callback("service/CyanLight/resolution/get", getRes); add_message_callback("service/CyanLight/frqres/get", getFrqRes); add_message_callback("service/CyanLight/channel/get", getBCh); - add_message_callback("service/CyanLight/channels/get", getChs); + add_message_callback("service/CyanLight/channelCnt/get", getChs); } -- GitLab