# HG changeset patch # User Michiel Broek # Date 1456490324 -3600 # Node ID 9cb274b7e027f2ecada52097984dd357cce5c875 # Parent bee1f70fb42b9029c0e4a536e6bdb74a20678414 Swapped heat/cool symbols. diff -r bee1f70fb42b -r 9cb274b7e027 thermferm/thermferm.c --- a/thermferm/thermferm.c Thu Feb 25 23:24:50 2016 +0100 +++ b/thermferm/thermferm.c Fri Feb 26 13:38:44 2016 +0100 @@ -1672,15 +1672,15 @@ LCDstatC = LCDstatH = 'x'; if (unit->heater_address) { if (unit->heater_state) - LCDstatH = '\5'; + LCDstatH = '\6'; else - LCDstatH = '\6'; + LCDstatH = '\5'; } if (unit->cooler_address) { if (unit->cooler_state) - LCDstatC = '\3'; + LCDstatC = '\4'; else - LCDstatC = '\4'; + LCDstatC = '\3'; } LCDspH = LCDspL = 0.0; if (unit->mode == UNITMODE_BEER)