mirror of
https://github.com/esphome/esphome.git
synced 2026-02-18 23:45:40 -07:00
[Modbus Controller] Added on_online and on_offline automation (#7417)
This commit is contained in:
@@ -32,8 +32,10 @@ bool ModbusController::send_next_command_() {
|
||||
r.skip_updates_counter = this->offline_skip_updates_;
|
||||
}
|
||||
}
|
||||
|
||||
this->module_offline_ = true;
|
||||
this->offline_callback_.call((int) command->function_code, command->register_address);
|
||||
}
|
||||
this->module_offline_ = true;
|
||||
ESP_LOGD(TAG, "Modbus command to device=%d register=0x%02X no response received - removed from send queue",
|
||||
this->address_, command->register_address);
|
||||
this->command_queue_.pop_front();
|
||||
@@ -68,8 +70,10 @@ void ModbusController::on_modbus_data(const std::vector<uint8_t> &data) {
|
||||
r.skip_updates_counter = 0;
|
||||
}
|
||||
}
|
||||
// Restore module online state
|
||||
this->module_offline_ = false;
|
||||
this->online_callback_.call((int) current_command->function_code, current_command->register_address);
|
||||
}
|
||||
this->module_offline_ = false;
|
||||
|
||||
// Move the commandItem to the response queue
|
||||
current_command->payload = data;
|
||||
@@ -670,5 +674,13 @@ void ModbusController::add_on_command_sent_callback(std::function<void(int, int)
|
||||
this->command_sent_callback_.add(std::move(callback));
|
||||
}
|
||||
|
||||
void ModbusController::add_on_online_callback(std::function<void(int, int)> &&callback) {
|
||||
this->online_callback_.add(std::move(callback));
|
||||
}
|
||||
|
||||
void ModbusController::add_on_offline_callback(std::function<void(int, int)> &&callback) {
|
||||
this->offline_callback_.add(std::move(callback));
|
||||
}
|
||||
|
||||
} // namespace modbus_controller
|
||||
} // namespace esphome
|
||||
|
||||
Reference in New Issue
Block a user