minor cleanup

This commit is contained in:
proddy
2020-07-30 21:17:57 +02:00
parent 2923fae1a6
commit c48e5bd518
2 changed files with 1 additions and 6 deletions

View File

@@ -712,8 +712,7 @@ void Boiler::process_UBAMaintenanceData(std::shared_ptr<const Telegram> telegram
void Boiler::set_warmwater_temp(const uint8_t temperature) {
LOG_INFO(F("Setting boiler warm water temperature to %d C"), temperature);
write_command(EMS_TYPE_UBAParameterWW, 2, temperature);
// for i9000, see #397
write_command(EMS_TYPE_UBAFlags, 3, temperature);
write_command(EMS_TYPE_UBAFlags, 3, temperature); // for i9000, see #397
}
// flow temp

View File

@@ -135,10 +135,6 @@ class EMSbus {
return (ems_mask_ == EMS_MASK_HT3);
}
static uint8_t protocol() {
return ems_mask_;
}
static uint8_t ems_mask() {
return ems_mask_;
}