From 82012604a07a4468d95b6107d0ed2fc53afa0a0d Mon Sep 17 00:00:00 2001 From: SylvanArnold <89144178+SylvanArnold@users.noreply.github.com> Date: Tue, 20 May 2025 12:18:23 +0200 Subject: [PATCH] fix(pico-sensor): changed default send measurement topic name --- pico-sensor/src/mqtt_client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pico-sensor/src/mqtt_client.c b/pico-sensor/src/mqtt_client.c index ce035a8..6556e5a 100644 --- a/pico-sensor/src/mqtt_client.c +++ b/pico-sensor/src/mqtt_client.c @@ -46,7 +46,7 @@ #define MQTT_DEFAULT_PASS "password" #define MQTT_DEFAULT_PUBLISH true #define DEFAULT_TOPIC_NAME_SENSORS_UPDATE "user/room/device/update" -#define DEFAULT_TOPIC_NAME_SEND_MEASUREMENT "user/room/device/command/new_measurement" +#define DEFAULT_TOPIC_NAME_SEND_MEASUREMENT "user/room/device/cmd/measure" typedef struct mqtt_t { mqtt_client_t *mqtt_client; /* lwIP MQTT client handle */