fix RC300 summertemp, mode

This commit is contained in:
MichaelDvP
2023-11-13 18:01:14 +01:00
parent f34be2a884
commit 84fab951ba
5 changed files with 18 additions and 7 deletions

View File

@@ -347,6 +347,16 @@ bool EMSdevice::is_fetch(uint16_t telegram_id) const {
return false;
}
// get received status of telegramID
bool EMSdevice::is_received(uint16_t telegram_id) const {
for (const auto & tf : telegram_functions_) {
if (tf.telegram_type_id_ == telegram_id) {
return tf.received_;
}
}
return false;
}
// check for a tag to create a nest
bool EMSdevice::has_tags(const uint8_t tag) const {
for (const auto & dv : devicevalues_) {