From 44b4dde121af8ddc900c3f7eabd654f051625f50 Mon Sep 17 00:00:00 2001 From: Chelios Date: Sat, 19 Oct 2024 07:57:29 +0300 Subject: [PATCH] increased the reboot wait time in case of unsuccessful connection to the network --- esphome/components/modem/modem_component.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/esphome/components/modem/modem_component.h b/esphome/components/modem/modem_component.h index b9aa0b62da..acb2bbbfed 100644 --- a/esphome/components/modem/modem_component.h +++ b/esphome/components/modem/modem_component.h @@ -81,9 +81,9 @@ class ModemComponent : public Component { {ModemComponentState::TURNING_OFF_PWRKEY, ModemComponentStateTiming(2000, 0)}, {ModemComponentState::TURNING_ON_RESET, ModemComponentStateTiming(2000, 0)}, {ModemComponentState::TURNING_OFF_RESET, ModemComponentStateTiming(2000, 0)}, - {ModemComponentState::SYNC, ModemComponentStateTiming(2000, 15000)}, - {ModemComponentState::REGISTRATION_IN_NETWORK, ModemComponentStateTiming(2000, 15000)}, - {ModemComponentState::CONNECTING, ModemComponentStateTiming(2000, 15000)}, + {ModemComponentState::SYNC, ModemComponentStateTiming(2000, 30000)}, + {ModemComponentState::REGISTRATION_IN_NETWORK, ModemComponentStateTiming(2000, 30000)}, + {ModemComponentState::CONNECTING, ModemComponentStateTiming(2000, 60000)}, {ModemComponentState::CONNECTED, ModemComponentStateTiming(5000, 0)}, };