2 Commits

Author SHA1 Message Date
Proddy
cfbcaa6fce Merge pull request #3149 from Cali1205/dev
update water.cpp: modify set_wwCircTc to use new command values
2026-07-05 22:02:16 +02:00
Rainer
ebd6d15c48 update water.cpp: modify set_wwCircTc to use new command values 2026-07-05 17:34:20 +02:00

View File

@@ -361,7 +361,7 @@ bool Water::set_wwCircTc(const char * value, const int8_t id) {
if (!Helpers::value2bool(value, b)) {
return false;
}
write_command(0x33B + dhw_, 4, b ? 0x01 : 0x00, 0x33B + dhw_);
write_command(0x7A5, 4, b ? 0xFF : 0x00, 0x7A5);
return true;
}