Compare rule with HVAC setpoint heat.
-
I'm trying to create a simple rule which needs to compare with HVAC setpoint heat.
The problem is that this variable is not appearing on combo box. Seems to only use "inbound" variables (Temperature and Humidity in my case which I send separately from a mysensors thing I've made)
There's any special reason for that? I'm doing something wrong?I will revert to use a script instead, but seems too much for a simple compare rule.
-
There's any special reason for that? I'm doing something wrong?
I believe you are using
Threshold
orThreshold range
condition type. In that case, yes, These conditions only works withNumbers
, MyController takes only the Double metric type as numbers.But still, you have an option to change metric type. Change your
HVAC setpoint heat
variable metric type toDouble
, as shown here. Now you can see it on threshold conditions. -
@jkandasa
I was using Compare, but yeah that solved the issue!!!
Thanks!