Skip to content

Commit

Permalink
[RFXCOM] Fix chill temperature (openhab#2362)
Browse files Browse the repository at this point in the history
Fix to PR#2329: Chill temperature for wind sensors should be on the
chillTemperature channel not the temperature channel.

Signed-off-by: Mike Jagdis <[email protected]> (github: mjagdis)
  • Loading branch information
mjagdis authored and reyem committed Jul 3, 2017
1 parent cf48ac3 commit c13df2d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ public void onDeviceMessageReceived(ThingUID bridge, RFXComMessage message) {
updateState(CHANNEL_TEMPERATURE, message.convertToState(valueSelector));
break;
case CHILL_TEMPERATURE:
updateState(CHANNEL_TEMPERATURE, message.convertToState(valueSelector));
updateState(CHANNEL_CHILL_TEMPERATURE, message.convertToState(valueSelector));
break;
case TOTAL_AMP_HOUR:
updateState(CHANNEL_TOTAL_AMP_HOUR, message.convertToState(valueSelector));
Expand Down

0 comments on commit c13df2d

Please sign in to comment.