Enable logging for thermostat states

This commit is contained in:
Michael Zanetti 2022-12-24 21:09:10 +01:00
parent d43b9dc737
commit 8e0c8eda41

View File

@ -7,28 +7,33 @@
"unit": "DegreeCelsius",
"minValue": "any",
"maxValue": "any",
"writable": true
"writable": true,
"logged": true
},
{
"name": "temperature",
"type": "double",
"unit": "DegreeCelsius",
"optional": true
"optional": true,
"logged": true
},
{
"name": "heatingOn",
"type": "bool",
"optional": true
"optional": true,
"logged": true
},
{
"name": "coolingOn",
"type": "bool",
"optional": true
"optional": true,
"logged": true
},
{
"name": "boost",
"type": "bool",
"optional": true
"optional": true,
"logged": true
}
]
}