SIM800l, problem with sending messeges

Hi guys,
I’m trying to send a message to my phone whenever I push a button but for some reason, it isn’t working…
This the code:

esphome:
  name: hot-lake
  platform: ESP32
  board: esp32dev





# Enable logging
logger:

  level: VERBOSE


# Enable Home Assistant API
api:
  password: ""

ota:
  password: ""

wifi:
  ssid: !secret WifiSsid
  password: !secret WifiPassword

  # Enable fallback hotspot (captive portal) in case wifi connection fails
  ap:
    ssid: "Hot-Water-Lake-Esp32"
    password: "iAZP1T0BOxke"

captive_portal:



# defining sensors:

# relay:
switch:
  - platform: gpio
    name: "Relay"
    id: relay_1
    pin: GPIO27

# sim:
uart:
  baud_rate: 9600
  tx_pin: GPIO17
  rx_pin: GPIO16
  debug:




sim800l:



# dallas temperature sensor:
dallas:
  pin: GPIO32


# conditions:

sensor:
  



  - platform: dallas
    address: 0x2e0319a27968ac28
    name: "Water Temperature ESP32"
    on_value_range:
      - below: 24.0
        then:
        - sim800l.send_sms:
            recipient: !secret PhoneNumber
            message: Cold
      - above: 32.0
        then:
        - sim800l.send_sms:
            recipient: !secret PhoneNumber
            message: Hot






binary_sensor:
  - platform: sim800l
    registered:
      name: "Sim800L Registered"


  - platform: gpio
    pin: GPIO25
    name: "Button"
    on_press:
      then:
        - sim800l.send_sms:
            recipient: !secret PhoneNumber
            message: Hot



# deep_sleep:
#   run_duration: 2min
#   sleep_duration: 58min

That is my terminal:

INFO Waiting for result...
INFO OTA successful
INFO Successfully uploaded program.
INFO Starting log output from hot-lake.local using esphome API
WARNING Can't connect to ESPHome API for hot-lake.local: Error resolving IP address: [Errno 11001] getaddrinfo failed
INFO Trying to reconnect to hot-lake.local in the background
INFO Successfully connected to hot-lake.local
[11:34:12][I][app:102]: ESPHome version 2022.10.2 compiled on Dec  9 2022, 11:33:37
[11:34:12][C][wifi:502]: WiFi:
[11:34:12][C][wifi:360]:   Local MAC: 4C:11:AE:F9:7A:94
[11:34:12][C][wifi:361]:   SSID: 'vadai'
[11:34:12][C][wifi:362]:   IP Address: 192.168.1.18
[11:34:12][C][wifi:364]:   BSSID: AC:84:C6:46:38:DA
[11:34:12][C][wifi:365]:   Hostname: 'hot-lake'
[11:34:12][C][wifi:367]:   Signal strength: -63 dB ▂▄▆█
[11:34:12][V][wifi:369]:   Priority: 0.0
[11:34:12][C][wifi:371]:   Channel: 11
[11:34:12][C][wifi:372]:   Subnet: 255.255.255.0
[11:34:12][C][wifi:373]:   Gateway: 192.168.1.1
[11:34:12][C][wifi:374]:   DNS1: 213.57.2.5
[11:34:12][C][wifi:375]:   DNS2: 213.57.22.5
[11:34:12][C][logger:275]: Logger:
[11:34:12][C][logger:278]:   Hardware UART: UART0
[11:34:12][C][uart.arduino_esp32:107]: UART Bus:
[11:34:12][C][uart.arduino_esp32:108]:   TX Pin: GPIO17
[11:34:12][C][uart.arduino_esp32:109]:   RX Pin: GPIO16
[11:34:12][C][uart.arduino_esp32:111]:   RX Buffer Size: 256
[11:34:12][C][uart.arduino_esp32:113]:   Baud Rate: 9600 baud
[11:34:12][C][uart.arduino_esp32:114]:   Data Bits: 8
[11:34:12][C][uart.arduino_esp32:115]:   Parity: NONE
[11:34:12][C][uart.arduino_esp32:116]:   Stop bits: 1
[11:34:12][C][switch.gpio:050]: GPIO Switch 'Relay'
[11:34:12][C][switch.gpio:051]:   Pin: GPIO27
[11:34:12][C][switch.gpio:073]:   Restore Mode: Restore (Defaults to OFF)
[11:34:12][C][gpio.binary_sensor:015]: GPIO Binary Sensor 'Button'
[11:34:12][C][gpio.binary_sensor:016]:   Pin: GPIO25
[11:34:12][C][sim800l:463]: SIM800L:
[11:34:12][C][sim800l:465]:   Registered 'Sim800L Registered'
[11:34:12][C][sim800l:465]:     Device Class: 'connectivity'
[11:34:12][C][dallas.sensor:075]: DallasComponent:
[11:34:12][C][dallas.sensor:076]:   Pin: GPIO32
[11:34:12][C][dallas.sensor:077]:   Update Interval: 60.0s
[11:34:12][D][dallas.sensor:082]:   Found sensors:
[11:34:12][D][dallas.sensor:084]:     0x2e0319a27968ac28
[11:34:12][C][dallas.sensor:089]:   Device 'Water Temperature ESP32'
[11:34:12][C][dallas.sensor:089]:     Device Class: 'temperature'
[11:34:12][C][dallas.sensor:089]:     State Class: 'measurement'
[11:34:12][C][dallas.sensor:089]:     Unit of Measurement: '°C'
[11:34:12][C][dallas.sensor:089]:     Accuracy Decimals: 1
[11:34:12][V][dallas.sensor:089]:     Unique ID: 'dallas-2e0319a27968ac28'
[11:34:12][C][dallas.sensor:097]:     Address: 0x2e0319a27968ac28
[11:34:12][C][dallas.sensor:098]:     Resolution: 12
[11:34:12][C][captive_portal:088]: Captive Portal:
[11:34:13][C][mdns:100]: mDNS:
[11:34:13][C][mdns:101]:   Hostname: hot-lake
[11:34:13][V][mdns:102]:   Services:
[11:34:13][V][mdns:104]:   - _esphomelib, _tcp, 6053
[11:34:13][V][mdns:106]:     TXT: version = 2022.10.2
[11:34:13][V][mdns:106]:     TXT: mac = 4c11aef97a94
[11:34:13][V][mdns:106]:     TXT: platform = ESP32
[11:34:13][V][mdns:106]:     TXT: board = esp32dev
[11:34:13][C][ota:089]: Over-The-Air Updates:
[11:34:13][C][ota:090]:   Address: hot-lake.local:3232
[11:34:13][C][api:138]: API Server:
[11:34:13][C][api:139]:   Address: hot-lake.local:6053
[11:34:13][C][api:143]:   Using noise encryption: NO
[11:34:13][V][sim800l:062]: S: AT - 1
[11:34:13][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:34:13][V][sim800l:073]: R: →AT - 2
[11:34:13][W][sim800l:097]: Not ack. 2 →AT
[11:34:13][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:34:28][V][sim800l:062]: S: AT - 1
[11:34:28][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:34:28][V][sim800l:073]: R: →AT - 2
[11:34:28][W][sim800l:097]: Not ack. 2 →AT
[11:34:28][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:34:38][D][esp32.preferences:113]: Saving 1 preferences to flash...
[11:34:38][V][esp32.preferences:136]: NVS data not changed skipping 1938662975  len=1
[11:34:38][D][esp32.preferences:142]: Saving 1 preferences to flash: 1 cached, 0 written, 0 failed
[11:34:43][V][sim800l:062]: S: AT - 1
[11:34:43][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:34:43][V][sim800l:073]: R: →AT - 2
[11:34:43][W][sim800l:097]: Not ack. 2 →AT
[11:34:43][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:34:57][D][dallas.sensor:143]: 'Water Temperature ESP32': Got Temperature=19.8°C
[11:34:57][V][sensor:076]: 'Water Temperature ESP32': Received new state 19.750000
[11:34:57][D][sensor:127]: 'Water Temperature ESP32': Sending state 19.75000 °C with 1 decimals of accuracy
[11:34:58][V][sim800l:062]: S: AT - 1
[11:34:58][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:34:58][V][sim800l:073]: R: →AT - 2
[11:34:58][W][sim800l:097]: Not ack. 2 →AT
[11:34:58][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:35:13][V][sim800l:062]: S: AT - 1
[11:35:13][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:35:13][V][sim800l:073]: R: →AT - 2
[11:35:13][W][sim800l:097]: Not ack. 2 →AT
[11:35:13][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:35:28][V][sim800l:062]: S: AT - 1
[11:35:28][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:35:28][V][sim800l:073]: R: →AT - 2
[11:35:28][W][sim800l:097]: Not ack. 2 →AT
[11:35:28][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:35:38][D][esp32.preferences:113]: Saving 1 preferences to flash...
[11:35:38][V][esp32.preferences:136]: NVS data not changed skipping 1938662975  len=1
[11:35:38][D][esp32.preferences:142]: Saving 1 preferences to flash: 1 cached, 0 written, 0 failed
[11:35:43][V][sim800l:062]: S: AT - 1
[11:35:43][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:35:43][V][sim800l:073]: R: →AT - 2
[11:35:43][W][sim800l:097]: Not ack. 2 →AT
[11:35:43][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:35:57][D][dallas.sensor:143]: 'Water Temperature ESP32': Got Temperature=19.8°C
[11:35:57][V][sensor:076]: 'Water Temperature ESP32': Received new state 19.750000
[11:35:57][D][sensor:127]: 'Water Temperature ESP32': Sending state 19.75000 °C with 1 decimals of accuracy
[11:35:58][V][sim800l:062]: S: AT - 1
[11:35:58][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:35:58][V][sim800l:073]: R: →AT - 2
[11:35:58][W][sim800l:097]: Not ack. 2 →AT
[11:35:58][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:36:13][V][sim800l:062]: S: AT - 1
[11:36:13][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:36:13][V][sim800l:073]: R: →AT - 2
[11:36:13][W][sim800l:097]: Not ack. 2 →AT
[11:36:13][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:36:28][V][sim800l:062]: S: AT - 1
[11:36:28][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:36:28][V][sim800l:073]: R: →AT - 2
[11:36:28][W][sim800l:097]: Not ack. 2 →AT
[11:36:28][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:36:38][D][esp32.preferences:113]: Saving 1 preferences to flash...
[11:36:38][V][esp32.preferences:136]: NVS data not changed skipping 1938662975  len=1
[11:36:38][D][esp32.preferences:142]: Saving 1 preferences to flash: 1 cached, 0 written, 0 failed
[11:36:43][V][sim800l:062]: S: AT - 1
[11:36:43][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:36:43][V][sim800l:073]: R: →AT - 2
[11:36:43][W][sim800l:097]: Not ack. 2 →AT
[11:36:43][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:36:57][D][dallas.sensor:143]: 'Water Temperature ESP32': Got Temperature=19.8°C
[11:36:57][V][sensor:076]: 'Water Temperature ESP32': Received new state 19.750000
[11:36:57][D][sensor:127]: 'Water Temperature ESP32': Sending state 19.75000 °C with 1 decimals of accuracy
[11:36:58][V][sim800l:062]: S: AT - 1
[11:36:58][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:36:58][V][sim800l:073]: R: →AT - 2
[11:36:58][W][sim800l:097]: Not ack. 2 →AT
[11:36:58][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:37:13][V][sim800l:062]: S: AT - 1
[11:37:13][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:37:13][V][sim800l:073]: R: →AT - 2
[11:37:13][W][sim800l:097]: Not ack. 2 →AT
[11:37:13][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:37:28][V][sim800l:062]: S: AT - 1
[11:37:28][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:37:28][V][sim800l:073]: R: →AT - 2
[11:37:28][W][sim800l:097]: Not ack. 2 →AT
[11:37:28][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:37:38][D][esp32.preferences:113]: Saving 1 preferences to flash...
[11:37:38][V][esp32.preferences:136]: NVS data not changed skipping 1938662975  len=1
[11:37:38][D][esp32.preferences:142]: Saving 1 preferences to flash: 1 cached, 0 written, 0 failed
[11:37:43][V][sim800l:062]: S: AT - 1
[11:37:43][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:37:43][V][sim800l:073]: R: →AT - 2
[11:37:43][W][sim800l:097]: Not ack. 2 →AT
[11:37:43][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:37:57][D][dallas.sensor:143]: 'Water Temperature ESP32': Got Temperature=19.8°C
[11:37:57][V][sensor:076]: 'Water Temperature ESP32': Received new state 19.812500
[11:37:57][D][sensor:127]: 'Water Temperature ESP32': Sending state 19.81250 °C with 1 decimals of accuracy
[11:37:58][V][sim800l:062]: S: AT - 1
[11:37:58][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:37:58][V][sim800l:073]: R: →AT - 2
[11:37:58][W][sim800l:097]: Not ack. 2 →AT
[11:37:58][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:38:13][V][sim800l:062]: S: AT - 1
[11:38:13][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:38:13][V][sim800l:073]: R: →AT - 2
[11:38:13][W][sim800l:097]: Not ack. 2 →AT
[11:38:13][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:38:28][V][sim800l:062]: S: AT - 1
[11:38:28][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:38:28][V][sim800l:073]: R: →AT - 2
[11:38:28][W][sim800l:097]: Not ack. 2 →AT
[11:38:28][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:38:28][D][api:102]: Accepted ::FFFF:C0A8:109
[11:38:32][V][api.connection:899]: Hello from client: 'Home Assistant 2022.11.2 (::FFFF:C0A8:109)' | API Version 1.7
[11:38:35][D][api.connection:917]: Home Assistant 2022.11.2 (::FFFF:C0A8:109): Connected successfully
[11:38:38][D][esp32.preferences:113]: Saving 1 preferences to flash...
[11:38:38][V][esp32.preferences:136]: NVS data not changed skipping 1938662975  len=1
[11:38:38][D][esp32.preferences:142]: Saving 1 preferences to flash: 1 cached, 0 written, 0 failed
[11:38:43][V][sim800l:062]: S: AT - 1
[11:38:43][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:38:43][V][sim800l:073]: R: →AT - 2
[11:38:43][W][sim800l:097]: Not ack. 2 →AT
[11:38:43][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:38:57][D][dallas.sensor:143]: 'Water Temperature ESP32': Got Temperature=19.8°C
[11:38:57][V][sensor:076]: 'Water Temperature ESP32': Received new state 19.812500
[11:38:57][D][sensor:127]: 'Water Temperature ESP32': Sending state 19.81250 °C with 1 decimals of accuracy
[11:38:58][V][sim800l:062]: S: AT - 1
[11:38:58][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:38:58][V][sim800l:073]: R: →AT - 2
[11:38:58][W][sim800l:097]: Not ack. 2 →AT
[11:38:58][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:39:03][I][ota:109]: Boot seems successful, resetting boot loop counter.
[11:39:03][D][esp32.preferences:113]: Saving 2 preferences to flash...
[11:39:03][V][esp32.preferences:125]: sync: key: 233825507, len: 4
[11:39:03][V][esp32.preferences:136]: NVS data not changed skipping 1938662975  len=1
[11:39:03][D][esp32.preferences:142]: Saving 2 preferences to flash: 1 cached, 1 written, 0 failed
[11:39:13][V][sim800l:062]: S: AT - 1
[11:39:13][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:39:13][V][sim800l:073]: R: →AT - 2
[11:39:13][W][sim800l:097]: Not ack. 2 →AT
[11:39:13][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:39:28][V][sim800l:062]: S: AT - 1
[11:39:28][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:39:28][V][sim800l:073]: R: →AT - 2
[11:39:28][W][sim800l:097]: Not ack. 2 →AT
[11:39:28][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:39:43][V][sim800l:062]: S: AT - 1
[11:39:43][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:39:43][V][sim800l:073]: R: →AT - 2
[11:39:43][W][sim800l:097]: Not ack. 2 →AT
[11:39:43][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:39:57][D][dallas.sensor:143]: 'Water Temperature ESP32': Got Temperature=19.9°C
[11:39:57][V][sensor:076]: 'Water Temperature ESP32': Received new state 19.875000
[11:39:57][D][sensor:127]: 'Water Temperature ESP32': Sending state 19.87500 °C with 1 decimals of accuracy
[11:39:58][V][sim800l:062]: S: AT - 1
[11:39:58][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:39:58][V][sim800l:073]: R: →AT - 2
[11:39:58][W][sim800l:097]: Not ack. 2 →AT
[11:39:58][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:40:13][V][sim800l:062]: S: AT - 1
[11:40:13][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:40:13][V][sim800l:073]: R: →AT - 2
[11:40:13][W][sim800l:097]: Not ack. 2 →AT
[11:40:13][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:40:28][V][sim800l:062]: S: AT - 1
[11:40:28][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:40:28][V][sim800l:073]: R: →AT - 2
[11:40:28][W][sim800l:097]: Not ack. 2 →AT
[11:40:28][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:40:38][D][esp32.preferences:113]: Saving 1 preferences to flash...
[11:40:38][V][esp32.preferences:136]: NVS data not changed skipping 1938662975  len=1
[11:40:38][D][esp32.preferences:142]: Saving 1 preferences to flash: 1 cached, 0 written, 0 failed
[11:40:43][V][sim800l:062]: S: AT - 1
[11:40:43][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:40:43][V][sim800l:073]: R: →AT - 2
[11:40:43][W][sim800l:097]: Not ack. 2 →AT
[11:40:43][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:40:57][D][dallas.sensor:143]: 'Water Temperature ESP32': Got Temperature=19.8°C
[11:40:57][V][sensor:076]: 'Water Temperature ESP32': Received new state 19.812500
[11:40:57][D][sensor:127]: 'Water Temperature ESP32': Sending state 19.81250 °C with 1 decimals of accuracy
[11:40:58][V][sim800l:062]: S: AT - 1
[11:40:58][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:40:58][V][sim800l:073]: R: →AT - 2
[11:40:58][W][sim800l:097]: Not ack. 2 →AT
[11:40:58][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:41:13][V][sim800l:062]: S: AT - 1
[11:41:13][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:41:13][V][sim800l:073]: R: →AT - 2
[11:41:13][W][sim800l:097]: Not ack. 2 →AT
[11:41:13][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:41:28][V][sim800l:062]: S: AT - 1
[11:41:28][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:41:28][V][sim800l:073]: R: →AT - 2
[11:41:28][W][sim800l:097]: Not ack. 2 →AT
[11:41:28][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:41:38][D][esp32.preferences:113]: Saving 1 preferences to flash...
[11:41:38][V][esp32.preferences:136]: NVS data not changed skipping 1938662975  len=1
[11:41:38][D][esp32.preferences:142]: Saving 1 preferences to flash: 1 cached, 0 written, 0 failed
[11:41:43][V][sim800l:062]: S: AT - 1
[11:41:43][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:41:43][V][sim800l:073]: R: →AT - 2
[11:41:43][W][sim800l:097]: Not ack. 2 →AT
[11:41:43][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:41:57][D][dallas.sensor:143]: 'Water Temperature ESP32': Got Temperature=19.9°C
[11:41:57][V][sensor:076]: 'Water Temperature ESP32': Received new state 19.875000
[11:41:57][D][sensor:127]: 'Water Temperature ESP32': Sending state 19.87500 °C with 1 decimals of accuracy
[11:41:58][V][sim800l:062]: S: AT - 1
[11:41:58][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:41:58][V][sim800l:073]: R: →AT - 2
[11:41:58][W][sim800l:097]: Not ack. 2 →AT
[11:41:58][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:42:13][V][sim800l:062]: S: AT - 1
[11:42:13][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:42:13][V][sim800l:073]: R: →AT - 2
[11:42:13][W][sim800l:097]: Not ack. 2 →AT
[11:42:13][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:42:28][V][sim800l:062]: S: AT - 1
[11:42:28][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:42:28][V][sim800l:073]: R: →AT - 2
[11:42:28][W][sim800l:097]: Not ack. 2 →AT
[11:42:28][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:42:38][D][esp32.preferences:113]: Saving 1 preferences to flash...
[11:42:38][V][esp32.preferences:136]: NVS data not changed skipping 1938662975  len=1
[11:42:38][D][esp32.preferences:142]: Saving 1 preferences to flash: 1 cached, 0 written, 0 failed
[11:42:43][V][sim800l:062]: S: AT - 1
[11:42:43][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:42:43][V][sim800l:073]: R: →AT - 2
[11:42:43][W][sim800l:097]: Not ack. 2 →AT
[11:42:43][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:42:57][D][dallas.sensor:143]: 'Water Temperature ESP32': Got Temperature=19.9°C
[11:42:57][V][sensor:076]: 'Water Temperature ESP32': Received new state 19.875000
[11:42:57][D][sensor:127]: 'Water Temperature ESP32': Sending state 19.87500 °C with 1 decimals of accuracy
[11:42:58][V][sim800l:062]: S: AT - 1
[11:42:58][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:42:58][V][sim800l:073]: R: →AT - 2
[11:42:58][W][sim800l:097]: Not ack. 2 →AT
[11:42:58][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:43:13][V][sim800l:062]: S: AT - 1
[11:43:13][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:43:13][V][sim800l:073]: R: →AT - 2
[11:43:13][W][sim800l:097]: Not ack. 2 →AT
[11:43:13][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:43:28][V][sim800l:062]: S: AT - 1
[11:43:28][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:43:28][V][sim800l:073]: R: →AT - 2
[11:43:28][W][sim800l:097]: Not ack. 2 →AT
[11:43:28][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:43:38][D][esp32.preferences:113]: Saving 1 preferences to flash...
[11:43:38][V][esp32.preferences:136]: NVS data not changed skipping 1938662975  len=1
[11:43:38][D][esp32.preferences:142]: Saving 1 preferences to flash: 1 cached, 0 written, 0 failed
[11:43:43][V][sim800l:062]: S: AT - 1
[11:43:43][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:43:43][V][sim800l:073]: R: →AT - 2
[11:43:43][W][sim800l:097]: Not ack. 2 →AT
[11:43:43][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:43:57][D][dallas.sensor:143]: 'Water Temperature ESP32': Got Temperature=19.9°C
[11:43:57][V][sensor:076]: 'Water Temperature ESP32': Received new state 19.937500
[11:43:57][D][sensor:127]: 'Water Temperature ESP32': Sending state 19.93750 °C with 1 decimals of accuracy
[11:43:58][V][sim800l:062]: S: AT - 1
[11:43:58][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:43:58][V][sim800l:073]: R: →AT - 2
[11:43:58][W][sim800l:097]: Not ack. 2 →AT
[11:43:58][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:44:13][V][sim800l:062]: S: AT - 1
[11:44:13][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:44:13][V][sim800l:073]: R: →AT - 2
[11:44:13][W][sim800l:097]: Not ack. 2 →AT
[11:44:13][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:44:28][V][sim800l:062]: S: AT - 1
[11:44:28][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:44:28][V][sim800l:073]: R: →AT - 2
[11:44:28][W][sim800l:097]: Not ack. 2 →AT
[11:44:28][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:44:38][D][esp32.preferences:113]: Saving 1 preferences to flash...
[11:44:38][V][esp32.preferences:136]: NVS data not changed skipping 1938662975  len=1
[11:44:38][D][esp32.preferences:142]: Saving 1 preferences to flash: 1 cached, 0 written, 0 failed
[11:44:43][V][sim800l:062]: S: AT - 1
[11:44:43][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:44:43][V][sim800l:073]: R: →AT - 2
[11:44:43][W][sim800l:097]: Not ack. 2 →AT
[11:44:43][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:44:57][D][dallas.sensor:143]: 'Water Temperature ESP32': Got Temperature=19.9°C
[11:44:57][V][sensor:076]: 'Water Temperature ESP32': Received new state 19.937500
[11:44:57][D][sensor:127]: 'Water Temperature ESP32': Sending state 19.93750 °C with 1 decimals of accuracy
[11:44:58][V][sim800l:062]: S: AT - 1
[11:44:58][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:44:58][V][sim800l:073]: R: →AT - 2
[11:44:58][W][sim800l:097]: Not ack. 2 →AT
[11:44:58][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:45:13][V][sim800l:062]: S: AT - 1
[11:45:13][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:45:13][V][sim800l:073]: R: →AT - 2
[11:45:13][W][sim800l:097]: Not ack. 2 →AT
[11:45:13][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:45:28][V][sim800l:062]: S: AT - 1
[11:45:28][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:45:28][V][sim800l:073]: R: →AT - 2
[11:45:28][W][sim800l:097]: Not ack. 2 →AT
[11:45:28][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:45:38][D][esp32.preferences:113]: Saving 1 preferences to flash...
[11:45:38][V][esp32.preferences:136]: NVS data not changed skipping 1938662975  len=1
[11:45:38][D][esp32.preferences:142]: Saving 1 preferences to flash: 1 cached, 0 written, 0 failed
[11:45:43][V][sim800l:062]: S: AT - 1
[11:45:43][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:45:43][V][sim800l:073]: R: →AT - 2
[11:45:43][W][sim800l:097]: Not ack. 2 →AT
[11:45:43][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:45:57][D][dallas.sensor:143]: 'Water Temperature ESP32': Got Temperature=19.9°C
[11:45:57][V][sensor:076]: 'Water Temperature ESP32': Received new state 19.937500
[11:45:57][D][sensor:127]: 'Water Temperature ESP32': Sending state 19.93750 °C with 1 decimals of accuracy
[11:45:58][V][sim800l:062]: S: AT - 1
[11:45:58][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:45:58][V][sim800l:073]: R: →AT - 2
[11:45:58][W][sim800l:097]: Not ack. 2 →AT
[11:45:58][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:46:13][V][sim800l:062]: S: AT - 1
[11:46:13][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:46:13][V][sim800l:073]: R: →AT - 2
[11:46:13][W][sim800l:097]: Not ack. 2 →AT
[11:46:13][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:46:28][V][sim800l:062]: S: AT - 1
[11:46:28][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:46:28][V][sim800l:073]: R: →AT - 2
[11:46:28][W][sim800l:097]: Not ack. 2 →AT
[11:46:28][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:46:38][D][esp32.preferences:113]: Saving 1 preferences to flash...
[11:46:38][V][esp32.preferences:136]: NVS data not changed skipping 1938662975  len=1
[11:46:38][D][esp32.preferences:142]: Saving 1 preferences to flash: 1 cached, 0 written, 0 failed
[11:46:43][V][sim800l:062]: S: AT - 1
[11:46:43][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:46:43][V][sim800l:073]: R: →AT - 2
[11:46:43][W][sim800l:097]: Not ack. 2 →AT
[11:46:43][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:46:57][D][dallas.sensor:143]: 'Water Temperature ESP32': Got Temperature=19.9°C
[11:46:57][V][sensor:076]: 'Water Temperature ESP32': Received new state 19.937500
[11:46:57][D][sensor:127]: 'Water Temperature ESP32': Sending state 19.93750 °C with 1 decimals of accuracy
[11:46:58][V][sim800l:062]: S: AT - 1
[11:46:58][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:46:58][V][sim800l:073]: R: →AT - 2
[11:46:58][W][sim800l:097]: Not ack. 2 →AT
[11:46:58][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:47:13][V][sim800l:062]: S: AT - 1
[11:47:13][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:47:13][V][sim800l:073]: R: →AT - 2
[11:47:13][W][sim800l:097]: Not ack. 2 →AT
[11:47:13][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:47:28][V][sim800l:062]: S: AT - 1
[11:47:28][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:47:28][V][sim800l:073]: R: →AT - 2
[11:47:28][W][sim800l:097]: Not ack. 2 →AT
[11:47:28][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:47:38][D][esp32.preferences:113]: Saving 1 preferences to flash...
[11:47:38][V][esp32.preferences:136]: NVS data not changed skipping 1938662975  len=1
[11:47:38][D][esp32.preferences:142]: Saving 1 preferences to flash: 1 cached, 0 written, 0 failed
[11:47:43][V][sim800l:062]: S: AT - 1
[11:47:43][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:47:43][V][sim800l:073]: R: →AT - 2
[11:47:43][W][sim800l:097]: Not ack. 2 →AT
[11:47:43][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:47:57][D][dallas.sensor:143]: 'Water Temperature ESP32': Got Temperature=19.9°C
[11:47:57][V][sensor:076]: 'Water Temperature ESP32': Received new state 19.937500
[11:47:57][D][sensor:127]: 'Water Temperature ESP32': Sending state 19.93750 °C with 1 decimals of accuracy
[11:47:58][V][sim800l:062]: S: AT - 1
[11:47:58][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:47:58][V][sim800l:073]: R: →AT - 2
[11:47:58][W][sim800l:097]: Not ack. 2 →AT
[11:47:58][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:48:13][V][sim800l:062]: S: AT - 1
[11:48:13][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:48:13][V][sim800l:073]: R: →AT - 2
[11:48:13][W][sim800l:097]: Not ack. 2 →AT
[11:48:13][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:48:28][V][sim800l:062]: S: AT - 1
[11:48:28][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:48:28][V][sim800l:073]: R: →AT - 2
[11:48:28][W][sim800l:097]: Not ack. 2 →AT
[11:48:28][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:48:38][D][esp32.preferences:113]: Saving 1 preferences to flash...
[11:48:38][V][esp32.preferences:136]: NVS data not changed skipping 1938662975  len=1
[11:48:38][D][esp32.preferences:142]: Saving 1 preferences to flash: 1 cached, 0 written, 0 failed
[11:48:43][V][sim800l:062]: S: AT - 1
[11:48:43][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:48:43][V][sim800l:073]: R: →AT - 2
[11:48:43][W][sim800l:097]: Not ack. 2 →AT
[11:48:43][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:48:57][D][dallas.sensor:143]: 'Water Temperature ESP32': Got Temperature=19.9°C
[11:48:57][V][sensor:076]: 'Water Temperature ESP32': Received new state 19.937500
[11:48:57][D][sensor:127]: 'Water Temperature ESP32': Sending state 19.93750 °C with 1 decimals of accuracy
[11:48:58][V][sim800l:062]: S: AT - 1
[11:48:58][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:48:58][V][sim800l:073]: R: →AT - 2
[11:48:58][W][sim800l:097]: Not ack. 2 →AT
[11:48:58][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:49:13][V][sim800l:062]: S: AT - 1
[11:49:13][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:49:13][V][sim800l:073]: R: →AT - 2
[11:49:13][W][sim800l:097]: Not ack. 2 →AT
[11:49:13][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:49:28][V][sim800l:062]: S: AT - 1
[11:49:28][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:49:28][V][sim800l:073]: R: →AT - 2
[11:49:28][W][sim800l:097]: Not ack. 2 →AT
[11:49:28][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:49:38][D][esp32.preferences:113]: Saving 1 preferences to flash...
[11:49:38][V][esp32.preferences:136]: NVS data not changed skipping 1938662975  len=1
[11:49:38][D][esp32.preferences:142]: Saving 1 preferences to flash: 1 cached, 0 written, 0 failed
[11:49:43][V][sim800l:062]: S: AT - 1
[11:49:43][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:49:43][V][sim800l:073]: R: →AT - 2
[11:49:43][W][sim800l:097]: Not ack. 2 →AT
[11:49:43][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:49:57][D][dallas.sensor:143]: 'Water Temperature ESP32': Got Temperature=20.0°C
[11:49:57][V][sensor:076]: 'Water Temperature ESP32': Received new state 20.000000
[11:49:57][D][sensor:127]: 'Water Temperature ESP32': Sending state 20.00000 °C with 1 decimals of accuracy
[11:49:57][W][api.connection:081]: Home Assistant 2022.11.2 (::FFFF:C0A8:109): Connection reset
[11:49:57][V][api:114]: Removing connection to Home Assistant 2022.11.2 (::FFFF:C0A8:109)
[11:49:58][V][sim800l:062]: S: AT - 1
[11:49:58][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:49:58][V][sim800l:073]: R: →AT - 2
[11:49:58][W][sim800l:097]: Not ack. 2 →AT
[11:49:58][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:50:13][V][sim800l:062]: S: AT - 1
[11:50:13][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:50:13][V][sim800l:073]: R: →AT - 2
[11:50:13][W][sim800l:097]: Not ack. 2 →AT
[11:50:13][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:50:28][V][sim800l:062]: S: AT - 1
[11:50:28][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:50:28][V][sim800l:073]: R: →AT - 2
[11:50:28][W][sim800l:097]: Not ack. 2 →AT
[11:50:28][D][uart_debug:114]: <<< 1A:41:54:0D:0A
[11:50:38][D][esp32.preferences:113]: Saving 1 preferences to flash...
[11:50:38][V][esp32.preferences:136]: NVS data not changed skipping 1938662975  len=1
[11:50:38][D][esp32.preferences:142]: Saving 1 preferences to flash: 1 cached, 0 written, 0 failed
[11:50:43][V][sim800l:062]: S: AT - 1
[11:50:43][D][uart_debug:114]: >>> 1A:41:54:0D:0A
[11:50:43][V][sim800l:073]: R: →AT - 2
[11:50:43][W][sim800l:097]: Not ack. 2 →AT
[11:50:43][D][uart_debug:114]: <<< 1A:41:54:0D:0A

if someone have eny idea for what is the problem please help

thanks a lot :slight_smile:

What sort of mobile network?

What do you mean?
Like what’s the name of the company ?

What does the sensor/binary_sensor for rssi and registered show?

From your logs above, the modem doesn’t reply to a simple AT noop command. That’s a problem way before any network registration and similar.

No I meant 2G, 3G, 4G etc.

I got 2G for the modem…

Yes, do yo have any thoughts of how to fix that or something like that or what can probably be my problem?

Well it’s the equivalent of saying ‘my car doesn’t start, what is the problem ?’. There could be myriads of reasons. Check if the modem works on a PC with a terminal, check if hardware connections to your ESP are OK, IO voltage, check baud rates, etc. Beyond that I’m afraid I can’t help, I don’t use ESPHome.

:point_down:

For my understanding it shows on the logs when the sensor is registered…

which SIM800 board you buyed?

  • ch340k v15
  • ch9102 v1.4
  • cp2104 v1.4

None of the one you listed. Just a cheap ($2) sim800l found on aliexpress

image

I saw problem with power supply…

I didn’t see that coming :eyes: