MySensor: Add description on current temperature option (#1484)

* Add description on current temperature option for MySensor.
This commit is contained in:
dpressle 2016-11-23 15:26:13 +02:00 committed by Fredrik Lindqvist
parent 2b5d3c0c10
commit 2fc0b02136

View File

@ -21,9 +21,9 @@ The following actuator types are supported:
S_TYPE | V_TYPE
-------|-----------------------------------------------------------------------------
S_HVAC | V_HVAC_FLOW_STATE*, V_HVAC_SETPOINT_HEAT, V_HVAC_SETPOINT_COOL, V_HVAC_SPEED
S_HVAC | V_HVAC_FLOW_STATE*, V_HVAC_SETPOINT_HEAT, V_HVAC_SETPOINT_COOL, V_HVAC_SPEED, V_TEMP
V_HVAC_FLOW_STATE is mapped to the state of the Climate component in HA as follows:
V_HVAC_FLOW_STATE is mapped to the state of the Climate component in Home Assistant as follows:
Home Assistant State | MySensors State
---------------------|----------------
@ -38,6 +38,8 @@ Set the target temperature using V_HVAC_SETPOINT_HEAT in Heat mode, and V_HVAC_S
You can use V_HVAC_SPEED to control the Speed setting of the Fan in the HVAC.
You can use V_TEMP to send the current temperature from the node to Home Assistant.
For more information, visit the [serial api] of MySensors.
### {% linkable_title Example sketch %}