Skip to content

Commit 34ace0b

Browse files
committed
Fix spelling error on setpoint cool
1 parent 5bab725 commit 34ace0b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

libraries/MySensors/MyMessage.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,8 @@ typedef enum {
8686
typedef enum {
8787
V_TEMP, // S_TEMP
8888
V_HUM, // S_HUM
89-
V_STATUS, // S_LIGHT, S_DIMMER, S_SPRINKLER, Used for setting binary (on/off) status. 1=on, 0=off
90-
V_LIGHT=2, // S_LIGHT, S_DIMMER. Same as V_STATUS
89+
V_STATUS, // S_LIGHT, S_DIMMER, S_SPRINKLER, S_HVAC, S_HEATER. Used for setting binary (on/off) status. 1=on, 0=off
90+
V_LIGHT=2, // Same as V_STATUS
9191
V_PERCENTAGE, // S_DIMMER. Used for sending a percentage value (0-100).
9292
V_DIMMER=3, // S_DIMMER. Same as V_PERCENTAGE.
9393
V_PRESSURE, // S_BARO
@@ -110,7 +110,7 @@ typedef enum {
110110
V_HEATER, // Deprecated. Use V_HVAC_FLOW_STATE instead.
111111
V_HVAC_FLOW_STATE=21, // HVAC flow state ("Off", "HeatOn", "CoolOn", or "AutoChangeOver"). S_HEATER, S_HVAC
112112
V_HVAC_SPEED, // HVAC/Heater fan speed ("Min", "Normal", "Max", "Auto")
113-
V_LIGHT_LEVEL, // S_LIGHT_LEVEL (light level in uncalibrated percentage) or S_LEVEL (light level in lux)
113+
V_LIGHT_LEVEL, // Used for sending light level in uncalibrated percentage. See also V_LEVEL (light level in lux). S_LIGHT_LEVEL
114114
V_VAR1, V_VAR2, V_VAR3, V_VAR4, V_VAR5,
115115
V_UP, // S_COVER
116116
V_DOWN, // S_COVER
@@ -134,7 +134,7 @@ typedef enum {
134134
V_UNIT_PREFIX, // Allows sensors to send in a string representing the
135135
// unit prefix to be displayed in GUI, not parsed by controller! E.g. cm, m, km, inch.
136136
// Can be used for S_DISTANCE or gas concentration (S_DUST, S_AIR_QUALITY)
137-
V_HVAC_SETPOINT_COLD, // HVAC cold setpoint (Integer between 0-100). S_HVAC
137+
V_HVAC_SETPOINT_COOL, // HVAC cool setpoint (Integer between 0-100). S_HVAC
138138
V_HVAC_SETPOINT_HEAT, // HVAC/Heater setpoint (Integer between 0-100). S_HEATER, S_HVAC
139139
V_HVAC_FLOW_MODE, // Flow mode for HVAC ("Auto", "ContinuousOn", "PeriodicOn"). S_HVAC
140140

0 commit comments

Comments
 (0)