From ac25739aaf0538289b3c72704247ff02e670d84e Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Tue, 14 Aug 2018 11:27:06 +0200 Subject: [PATCH] Bugfix --- ssr/host/burrow-ssrd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ssr/host/burrow-ssrd.c b/ssr/host/burrow-ssrd.c index 2a46b62..d999bc5 100644 --- a/ssr/host/burrow-ssrd.c +++ b/ssr/host/burrow-ssrd.c @@ -238,6 +238,6 @@ int main(int argc UNUSED, char **argv) int t = get_u32_be(resp+4); msg(L_DEBUG, "Measured raw temperature %d", t); - mqtt_publish("burrow/loft/temperature", "%.3f %llu", t / 1000., (unsigned long long) now); + mqtt_publish("burrow/temp/loft", "%.3f %llu", t / 1000., (unsigned long long) now); } } -- 2.39.5