Skip to content
This repository has been archived by the owner on Oct 4, 2021. It is now read-only.

Commit

Permalink
* merge upstream changes
Browse files Browse the repository at this point in the history
  • Loading branch information
joanwa committed Mar 1, 2021
2 parents 863c98d + 7c98337 commit e0016b5
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG_LATEST.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@
- Thermostat ES72/RC20, device 66 to RC20_2 command-set
- recognize sending devices which are not in telegram 0x07
- MQTT payloads not adding to queue when MQTT is re-connecting (fixes #369)

- fix mixerTemp and tankMiddleTemp (PR #714 @joanwa)
- icon update for pumps
- add mixer wiring naming from documentation

### Changed
- split `show values` in smaller packages and separate heating circuits
Expand Down
2 changes: 1 addition & 1 deletion src/devices/mixer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -298,12 +298,12 @@ void Mixer::process_IPMStatusMessage(std::shared_ptr<const Telegram> telegram) {

// do we have a mixed circuit
if (ismixed == 2) {
changed_ |= telegram->read_value(flowTempLowLoss_, 5); // T0
changed_ |= telegram->read_value(flowTempHc_, 3); // TC1, is * 10
changed_ |= telegram->read_value(status_, 2); // valve status
}

changed_ |= telegram->read_bitvalue(pumpStatus_, 1, 0); // pump is also in unmixed circuits
changed_ |= telegram->read_value(flowTempLowLoss_, 5); // T0, flowTempLowLoss_ is also in unmixed circuits, see #711
}

// Mixer on a MM10 - 0xAB
Expand Down
2 changes: 1 addition & 1 deletion src/devices/thermostat.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ void Thermostat::device_info_web(JsonArray & root, uint8_t & part) {
create_value_json(root, F("minflowtemp"), FPSTR(prefix_str), F_(minflowtemp), F_(degrees), json);
create_value_json(root, F("maxflowtemp"), FPSTR(prefix_str), F_(maxflowtemp), F_(degrees), json);
create_value_json(root, F("summertemp"), FPSTR(prefix_str), F_(summertemp), F_(degrees), json);
create_value_json(root, F("summermode"), FPSTR(prefix_str), F_(summermode), F_(degrees), json);
create_value_json(root, F("summermode"), FPSTR(prefix_str), F_(summermode), nullptr, json);
create_value_json(root, F("reducemode"), FPSTR(prefix_str), F_(reducemode), nullptr, json);
create_value_json(root, F("program"), FPSTR(prefix_str), F_(program), nullptr, json);
create_value_json(root, F("controlmode"), FPSTR(prefix_str), F_(controlmode), nullptr, json);
Expand Down
2 changes: 1 addition & 1 deletion src/system.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ void System::show_mem(const char * note) {

// send periodic MQTT message with system information
void System::send_heartbeat() {
// don't send heartbeat if WiFi or MQTT is connected
// don't send heartbeat if WiFi or MQTT is not connected
if (!Mqtt::connected()) {
return;
}
Expand Down

0 comments on commit e0016b5

Please sign in to comment.