Room humidity is float
This commit is contained in:
2
room.go
2
room.go
@@ -26,7 +26,7 @@ type Room struct {
|
|||||||
Heaters int `json:"heaters"`
|
Heaters int `json:"heaters"`
|
||||||
CurrentTemperature float64 `json:"currentTemperatureDegrees"`
|
CurrentTemperature float64 `json:"currentTemperatureDegrees"`
|
||||||
TargetTemperature float64 `json:"targetTemperatureDegrees"`
|
TargetTemperature float64 `json:"targetTemperatureDegrees"`
|
||||||
Humidity *int `json:"humidity"`
|
Humidity float64 `json:"humidity"`
|
||||||
Sensors int `json:"sensors"`
|
Sensors int `json:"sensors"`
|
||||||
Mode struct {
|
Mode struct {
|
||||||
Boost bool `json:"boost"`
|
Boost bool `json:"boost"`
|
||||||
|
Reference in New Issue
Block a user