From d96ada276d8a2cbc05d47044c4fc42580ad3e99a Mon Sep 17 00:00:00 2001 From: Travis Shears Date: Thu, 25 Dec 2025 14:01:40 +0100 Subject: [PATCH] temperature -> temp --- event_proxy/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/event_proxy/main.go b/event_proxy/main.go index 050cb2e..26d4843 100644 --- a/event_proxy/main.go +++ b/event_proxy/main.go @@ -79,7 +79,7 @@ func ParseMsg(msg string) (*Message, error) { } type Message1DTO struct { - Temperature float32 `json:"temperature"` + Temperature float32 `json:"temp"` Humidity float32 `json:"humidity"` Pressure float32 `json:"pressure"` }