esphome / issues

Issue Tracker for ESPHome
https://esphome.io/
290 stars 36 forks source link

sonoff th10 crash with esphome 1.14.3 #983

Closed aartokke closed 4 years ago

aartokke commented 4 years ago

Operating environment/Installation (Hass.io/Docker/pip/etc.):

hass.io 0.102.3 ESP (ESP32/ESP8266, Board/Sonoff):

ESPHOME 1.14.3 Sonoff TH10 with temperature and humidity sensor

Affected component:

https://esphome.io/devices/sonoff.html

Description of problem: 3x Sonoff's TH10 with firmware esp 1.14.3 are sometimes during the day unavailable in homeassistant. Uptime is also reset. It looks like it's resetting. Reading the logs from USB: i'm getting at those times in the log a line with "abort called".

btw: sonoff is used for activating a sirene for 3 seconds

Found a solution in issue #931 which has the exact same problem. So my problem is solved https://github.com/esphome/issues/issues/931

i also changed the board type from esp01_1m to esp8285 and adding arduino_version: 2.4.2

esphome: name: ${plug_name} platform: ESP8266 board: esp01_1m

esphome: name: ${plug_name} platform: ESP8266 board: esp8285 arduino_version: 2.4.2

In yaml configuration below i have added fastconnect en reboot_timeout: 0s : We had some wifi connection issues in the beginning, and because of the time actions (and time-sync) i didn't want a reboot if during the day there was no connection with wifi. (i'm rebooting the sonoff's at night) but those issues are resolved.

Problem-relevant YAML-configuration entries:

substitutions:
  # Plug name
  plug_name: "sonoff_th10_02"

  # Plug static IP
  plug_ip: "<--ip address deleted by me-->"

  # macadres: <--mac address deleted by me-->

esphome:
  name: ${plug_name}
  platform: ESP8266
  board: esp01_1m

wifi:
  ssid: !secret esphome_ssid_name
  password: !secret esphome_ssid_password

  manual_ip:
    static_ip: ${plug_ip}
    gateway: !secret esphome_wifi_gateway
    subnet: !secret esphome_wifi_subnet
    dns1: !secret esphome_wifi_dns1
    dns2: !secret esphome_wifi_dns2
  fast_connect: True
  #indien geen wifi verbinding wordt de esp niet gereboot.
  #doen we met een automation
  reboot_timeout: 0s

  # Enable fallback hotspot (captive portal) in case wifi connection fails
  ap:
    ssid: ${plug_name} Fallback Hotspot
    password: !secret esphome_ssid_password

captive_portal:

# Enable logging
logger:

# Enable Home Assistant API
api:
  password: !secret esphome_admin_password
  # indien 5 minuten geen api connectie met hassio niet rebooten
  reboot_timeout: 0s

ota:
  password: !secret esphome_admin_password

binary_sensor:
  - platform: status
    name: ${plug_name} status

switch:
  - platform: restart
    name: ${plug_name} restart
    id: restart_switch
  - platform: gpio
    name: ${plug_name} relay
    pin: GPIO12
    id: relay
    restore_mode: ALWAYS_OFF

sensor:
  - platform: wifi_signal
    name: ${plug_name} WiFi signal
    update_interval: 60s

  - platform: uptime
    name: ${plug_name} Uptime 
    id: uptime_sec
    update_interval: 120s

  - platform: dht
    model: si7021
    pin: GPIO14
    humidity:
      name: ${plug_name} Humidity
    temperature:
      name: ${plug_name} Temperature
    update_interval: 60s

text_sensor:
  - platform: wifi_info
    ip_address:
      name: ${plug_name} IP
    ssid:
      name: ${plug_name} SSID
    bssid:
      name: ${plug_name} BSSID

# time-sync
time:
  - platform: homeassistant
    id: homeassistant_time
    on_time:
      # 07:00:00 aan 07:00:03 weer uit
      - seconds: 0
        minutes: 7
        hours: 7
        days_of_week: MON-FRI
        then:
          - switch.turn_on: relay
          - delay: 3s
          - switch.turn_off: relay

      # 07:10:00 aan 07:10:03 weer uit
      - seconds: 0
        minutes: 10
        hours: 7
        days_of_week: MON-FRI
        then:
          - switch.turn_on: relay
          - delay: 3s
          - switch.turn_off: relay

      # 09:20:00 aan 09:20:03 weer uit
      - seconds: 0
        minutes: 20
        hours: 09
        days_of_week: MON-FRI
        then:
          - switch.turn_on: relay
          - delay: 3s
          - switch.turn_off: relay

      # 09:40:00 aan 09:40:03 weer uit
      - seconds: 0
        minutes: 40
        hours: 9
        days_of_week: MON-FRI
        then:
          - switch.turn_on: relay
          - delay: 3s
          - switch.turn_off: relay

      # 09:50:00 aan 09:50:03 weer uit
      - seconds: 0
        minutes: 50
        hours: 9
        days_of_week: MON-FRI
        then:
          - switch.turn_on: relay
          - delay: 3s
          - switch.turn_off: relay

      # 10:10:00 aan 10:10:03 weer uit
      - seconds: 0
        minutes: 10
        hours: 10
        days_of_week: MON-FRI
        then:
          - switch.turn_on: relay
          - delay: 3s
          - switch.turn_off: relay

      # 12:00:00 aan 12:00:03 weer uit
      - seconds: 0
        minutes: 0
        hours: 12
        days_of_week: MON-FRI
        then:
          - switch.turn_on: relay
          - delay: 3s
          - switch.turn_off: relay

      # 12:30:00 aan 12:30:03 weer uit
      - seconds: 0
        minutes: 30
        hours: 12
        days_of_week: MON-FRI
        then:
          - switch.turn_on: relay
          - delay: 3s
          - switch.turn_off: relay

      # 12:40:00 aan 12:40:03 weer uit
      - seconds: 0
        minutes: 40
        hours: 12
        days_of_week: MON-FRI
        then:
          - switch.turn_on: relay
          - delay: 3s
          - switch.turn_off: relay

      # 13:10:00 aan 13:10:03 weer uit
      - seconds: 0
        minutes: 10
        hours: 13
        days_of_week: MON-FRI
        then:
          - switch.turn_on: relay
          - delay: 3s
          - switch.turn_off: relay

      # 16:00:00 aan 16:00:03 weer uit
      - seconds: 0
        minutes: 0
        hours: 16
        days_of_week: MON-FRI
        then:
          - switch.turn_on: relay
          - delay: 3s
          - switch.turn_off: relay

      # 16:15:00 aan 16:15:03 weer uit
      - seconds: 0
        minutes: 15
        hours: 16
        days_of_week: MON-FRI
        then:
          - switch.turn_on: relay
          - delay: 3s
          - switch.turn_off: relay

      # 04:00:00 standaard de sonoff rebooten
      - seconds: 0
        minutes: 0
        hours: 4
        days_of_week: MON-SUN
        then:
          - switch.toggle: restart_switch

Logs (if applicable):

INFO Reading configuration /config/esphome/sonoff_th10_01.yaml...
INFO Detected timezone 'CET' with UTC offset 1 and daylight savings time from 29 March 02:00:00 to 25 October 03:00:00
INFO Starting log output from /dev/ttyUSB0 with baud rate 115200
[08:47:13][D][dht:048]: Got Temperature=19.9°C Humidity=64.0%
[08:47:13][V][sensor:013]: 'sonoff_th10_01 Temperature': Received new state 19.900000
[08:47:13][D][sensor:092]: 'sonoff_th10_01 Temperature': Sending state 19.90000 °C with 1 decimals of accuracy
[08:47:13][V][sensor:013]: 'sonoff_th10_01 Humidity': Received new state 64.000000
[08:47:13][D][sensor:092]: 'sonoff_th10_01 Humidity': Sending state 64.00000 % with 0 decimals of accuracy
[08:47:25][V][sensor:013]: 'sonoff_th10_01 Uptime': Received new state 464.278015
[08:47:25][D][sensor:092]: 'sonoff_th10_01 Uptime': Sending state 464.27802 s with 0 decimals of accuracy
[08:47:25][V][sensor:013]: 'sonoff_th10_01 WiFi signal': Received new state -37.000000
[08:47:25][D][sensor:092]: 'sonoff_th10_01 WiFi signal': Sending state -37.00000 dB with 0 decimals of accuracy
[08:48:13][D][dht:048]: Got Temperature=19.8°C Humidity=64.5%
<-- deleted same lines of receiving/sending temperature, humidity and wifi signal -->
[09:29:13][D][dht:048]: Got Temperature=19.9°C Humidity=65.4%
[09:29:13][V][sensor:013]: 'sonoff_th10_01 Temperature': Received new state 19.900000
[09:29:13][D][sensor:092]: 'sonoff_th10_01 Temperature': Sending state 19.90000 °C with 1 decimals of accuracy
[09:29:13][V][sensor:013]: 'sonoff_th10_01 Humidity': Received new state 65.400002
[09:29:13][D][sensor:092]: 'sonoff_th10_01 Humidity': Sending state 65.40000 % with 0 decimals of accuracy
[09:29:25][V][sensor:013]: 'sonoff_th10_01 Uptime': Received new state 2984.275879
[09:29:25][D][sensor:092]: 'sonoff_th10_01 Uptime': Sending state 2984.27588 s with 0 decimals of accuracy
[09:29:25][V][sensor:013]: 'sonoff_th10_01 WiFi signal': Received new state -41.000000
[09:29:25][D][sensor:092]: 'sonoff_th10_01 WiFi signal': Sending state -41.00000 dB with 0 decimals of accuracy
[09:29:41]
[09:29:41]Abort called
[09:29:41]
[09:29:41]>>>stack>>>
WARNING Found stack trace! Trying to decode it
[09:29:41]
[09:29:41]ctx: sys
[09:29:41]sp: 3fffe8e0 end: 3fffffb0 offset: 01b0
[09:29:41]3fffea90:  00000000 3fffede8 3fff1b94 4021986a  
INFO Need to fetch platformio IDE-data, please stand by
INFO Running:  platformio run -d /config/esphome/sonoff_th10_01 -t idedata
WARNING Decoded 0x4021986a: esp8266::MDNSImplementation::MDNSResponder::_readRRAnswer(esp8266::MDNSImplementation::MDNSResponder::stcMDNS_RRAnswer*&)
[09:29:48]3fffeaa0:  6f635f0f 6e61706d 2d6e6f69 6b6e696c  
[09:29:48]3fffeab0:  63745f04 6f6c0570 006c6163 00000000  
[09:29:48]3fffeac0:  00000000 00000000 00000000 00000000  
[09:29:48]3fffead0:  00000000 00000000 00000000 00000000  
[09:29:49]3fffeae0:  00000000 00000000 00000000 00000000  
[09:29:49]3fffeaf0:  00000000 00000000 00000000 00000000  
[09:29:49]3fffeb00:  00000000 00000000 00000000 00000000  
[09:29:49]3fffeb10:  00000000 00000000 00000000 00000000  
[09:29:49]3fffeb20:  00000000 00000000 00000000 00000000  
[09:29:49]3fffeb30:  00000000 00000000 00000000 00000000  
[09:29:49]3fffeb40:  00000000 00000000 00000000 00000000  
[09:29:49]3fffeb50:  00000000 00000000 00000000 00000000  
[09:29:49]3fffeb60:  00000000 00000000 00000000 00000000  
[09:29:49]3fffeb70:  00000000 00000000 00000000 00000000  
[09:29:49]3fffeb80:  00000000 00000000 00000000 00000000  
[09:29:49]3fffeb90:  00000000 00000000 00000000 00000000  
[09:29:49]3fffeba0:  000c001c 00000001 00001191 40210008  
WARNING Decoded 0x40210008: esphome::Scheduler::cancel_item_(esphome::Component*, std::string const&, esphome::Scheduler::SchedulerItem::Type)
[09:29:49]3fffebb0:  3fffedc0 00000001 3fff1b94 40216609  
WARNING Decoded 0x40216609: esp8266::MDNSImplementation::MDNSResponder::_parseQuery(esp8266::MDNSImplementation::MDNSResponder::stcMDNS_MsgHeader const&)
[09:29:49]3fffebc0:  00000000 6c735f0c 2d706565 786f7270  
[09:29:49]3fffebd0:  755f0479 6c057064 6c61636f 00000000  
[09:29:49]3fffebe0:  00000000 00000000 00000000 00000000  
[09:29:49]3fffebf0:  00000000 00000000 00000000 00000000  
[09:29:49]3fffec00:  00000000 00000000 00000000 00000000  
[09:29:49]3fffec10:  00000000 00000000 00000000 00000000  
[09:29:49]3fffec20:  00000000 00000000 00000000 00000000  
[09:29:49]3fffec30:  00000000 00000000 00000000 00000000  
[09:29:49]3fffec40:  00000000 00000000 00000000 00000000  
[09:29:49]3fffec50:  00000000 00000000 00000000 00000000  
[09:29:49]3fffec60:  00000000 00000000 00000000 00000000  
[09:29:49]3fffec70:  00000000 00000000 00000000 00000000  
[09:29:49]3fffec80:  00000000 00000000 00000000 00000000  
[09:29:49]3fffec90:  00000000 00000000 00000000 00000000  
[09:29:49]3fffeca0:  00000000 00000000 00000000 00000000  
[09:29:49]3fffecb0:  00000000 00000000 00000000 00000000  
[09:29:49]3fffecc0:  00000000 000c0019 00000001 40101212  
WARNING Decoded 0x40101212: pp_post
[09:29:49]3fffecd0:  00000005 00000000 00000020 40101212  
WARNING Decoded 0x40101212: pp_post
[09:29:49]3fffece0:  00000005 00000000 00000020 40101212  
WARNING Decoded 0x40101212: pp_post
[09:29:49]3fffecf0:  3ffebf35 4010460f 3ffef9c0 00000100  
WARNING Decoded 0x4010460f: lmacRxDone
[09:29:49]3fffed00:  40101f25 3ffef9c0 3fff03b4 401020fe  
WARNING Decoded 0x40101f25: trc_NeedRTS
WARNING Decoded 0x401020fe: trc_NeedRTS
[09:29:49]3fffed10:  ffffffd7 b2a46daa 3fff03b4 401020fe  
WARNING Decoded 0x401020fe: trc_NeedRTS
[09:29:49]3fffed20:  3ffec7d4 00000000 00000000 00000100  
[09:29:49]3fffed30:  00000000 00000000 0000001f 40104ef1  
WARNING Decoded 0x40104ef1: ets_timer_disarm
[09:29:49]3fffed40:  4000050c 3ffec7d4 3ffec7d4 00000001  
[09:29:49]3fffed50:  40223084 00000030 00000010 ffffffff  
WARNING Decoded 0x40223084: check_poison_block at umm_malloc.cpp
[09:29:49]3fffed60:  40223187 3fff5950 00000000 000000a5  
WARNING Decoded 0x40223187: check_poison_all_blocks at umm_malloc.cpp
[09:29:49]3fffed70:  000000a5 00008e88 00000000 00000008  
[09:29:49]3fffed80:  3fff048c 00000008 00000002 3fff5948  
[09:29:49]3fffed90:  00003608 00000054 00000001 00000030  
[09:29:49]3fffeda0:  402232ee 00000023 00000010 000000a8  
WARNING Decoded 0x402232ee: _umm_malloc at umm_malloc.cpp
[09:29:49]3fffedb0:  00000dc2 000000c2 00000000 00000008  
[09:29:49]3fffedc0:  3fff048c 00000008 00000002 000010a3  
[09:29:49]3fffedd0:  00000000 00000000 00000000 00000001  
[09:29:49]3fffede0:  3fff0000 00000000 00000000 402196d5  
WARNING Decoded 0x402196d5: esp8266::MDNSImplementation::MDNSResponder::_udpRead16(unsigned short&)
[09:29:49]3fffedf0:  00000000 00000008 3fffee40 3fff5574  
[09:29:49]3fffee00:  ffff0000 b2a46ab3 4010253e 000014e9  
WARNING Decoded 0x4010253e: wDev_ProcessFiq
[09:29:49]3fffee10:  3fff5c9c 3fff1b94 3fff1b94 40217345  
WARNING Decoded 0x40217345: esp8266::MDNSImplementation::MDNSResponder::_parseMessage()
[09:29:49]3fffee20:  00000000 00000000 00000000 00000000  
[09:29:49]3fffee30:  00000000 00000000 00000000 4023ac9c  
WARNING Decoded 0x4023ac9c: mem_free at /home/gauchard/dev/esp8266/esp8266/tools/sdk/lwip2/builder/lwip2-src/src/core/mem.c:237
[09:29:49]3fffee40:  00000000 00070003 00010000 402357a2  
WARNING Decoded 0x402357a2: pbuf_free_LWIP2 at /home/gauchard/dev/esp8266/esp8266/tools/sdk/lwip2/builder/lwip2-src/src/core/pbuf.c:688
[09:29:49]3fffee50:  3fff5c9c 3fff1b94 3fff54dc 4021770f  
WARNING Decoded 0x4021770f: esp8266::MDNSImplementation::MDNSResponder::_process(bool)
[09:29:49]3fffee60:  3fff22e8 3fff5bfc 3fff54dc 4021772c  
WARNING Decoded 0x4021772c: esp8266::MDNSImplementation::MDNSResponder::_callProcess()
[09:29:49]3fffee70:  00000011 00000001 3fff1e48 40224d07  
WARNING Decoded 0x40224d07: std::_Function_handler<void (), std::_Bind<std::_Mem_fn<bool (esp8266::MDNSImplementation::MDNSResponder::*)()> (esp8266::MDNSImplementation::MDNSResponder*)> >::_M_invoke(std::_Any_data const&)
[09:29:49]3fffee80:  3fff22e8 3fff5bfc 3fff54dc 40214810  
WARNING Decoded 0x40214810: UdpContext::_s_recv(void*, udp_pcb*, pbuf*, ip4_addr const*, unsigned short)
[09:29:49]3fffee90:  3fff5c2e 00000000 3fff51ac 3fff5bfc  
[09:29:49]3fffeea0:  3fff5c2e 00000000 3fff51ac 40235e14  
WARNING Decoded 0x40235e14: udp_input at /home/gauchard/dev/esp8266/esp8266/tools/sdk/lwip2/builder/lwip2-src/src/core/udp.c:1049
[09:29:49]3fffeeb0:  000014e9 3fff2230 3fff2230 40223339  
WARNING Decoded 0x40223339: malloc
[09:29:49]3fffeec0:  34e00000 0000001c 3fffef30 3fff2230  
[09:29:49]3fffeed0:  3fff22d8 3fff5bfc 3fff5c1a 40239f84  
WARNING Decoded 0x40239f84: ip4_input at /home/gauchard/dev/esp8266/esp8266/tools/sdk/lwip2/builder/lwip2-src/src/core/ipv4/ip4.c:704
[09:29:50]3fffeee0:  00000014 00000000 3fff2230 40222e2c  
WARNING Decoded 0x40222e2c: _umm_free at umm_malloc.cpp
[09:29:50]3fffeef0:  3fffdc80 3fff28b4 3fffa85c 3fff294c  
[09:29:50]3fffef00:  00000008 3fff2230 3fff5bfc 40231c99  
WARNING Decoded 0x40231c99: ethernet_input_LWIP2 at /home/gauchard/dev/esp8266/esp8266/tools/sdk/lwip2/builder/lwip2-src/src/netif/ethernet.c:188
[09:29:50]3fffef10:  3fffdc80 3fff28b4 3fffa864 40231acf  
WARNING Decoded 0x40231acf: esp2glue_ethernet_input at /home/gauchard/dev/esp8266/esp8266/tools/sdk/lwip2/builder/glue-lwip/lwip-git.c:441
[09:29:50]3fffef20:  4025679a 3fff28b4 3fffa864 402567ab  
WARNING Decoded 0x4025679a: ethernet_input at /home/gauchard/dev/esp8266/esp8266/tools/sdk/lwip2/builder/glue-esp/lwip-esp.c:363
WARNING Decoded 0x402567ab: ethernet_input at /home/gauchard/dev/esp8266/esp8266/tools/sdk/lwip2/builder/glue-esp/lwip-esp.c:371
[09:29:50]3fffef30:  3fff5c0c 3fff5bfc 00000000 3fffdcb0  
[09:29:50]3fffef40:  3fff1210 00000000 3fffa864 40251fbb  
WARNING Decoded 0x40251fbb: ets_snprintf
[09:29:50]3fffef50:  40000f49 3fffdab0 3fffdab0 40000f49  
[09:29:50]3fffef60:  40000e19 40001878 00000001 00000000  
[09:29:50]3fffef70:  3fffff10 aa55aa55 00000085 40104718  
WARNING Decoded 0x40104718: call_user_start_local
[09:29:50]3fffef80:  4010471e 00000001 00000000 447027af  
WARNING Decoded 0x4010471e: call_user_start_local
[09:29:50]3fffef90:  4010000d 6f09e554 8cd23a22 a26d9aba  
WARNING Decoded 0x4010000d: call_user_start
[09:29:50]3fffefa0:  401008dc 3fffef3c 4010087d 3fffff28  
WARNING Decoded 0x401008dc: cont_ret at cont.S.o
WARNING Decoded 0x4010087d: cont_continue at cont.S.o
[09:29:50]3fffefb0:  3fffffc0 00000000 00000000 feefeffe  
[09:29:50]3fffefc0:  feefeffe feefeffe feefeffe feefeffe  
[09:29:50]3fffefd0:  feefeffe feefeffe feefeffe feefeffe  
[09:29:50]3fffefe0:  feefeffe feefeffe feefeffe feefeffe  
[09:29:50]3fffeff0:  feefeffe feefeffe feefeffe feefeffe  
[09:29:50]3ffff000:  feefeffe feefeffe feefeffe feefeffe  
[09:29:50]3ffff010:  feefeffe feefeffe feefeffe feefeffe  
[09:29:50]3ffff020:  feefeffe feefeffe feefeffe feefeffe  
[09:29:50]3ffff030:  feefeffe feefeffe feefeffe feefeffe  
[09:29:50]3ffff040:  feefeffe feefeffe feefeffe feefeffe  
[09:29:50]3ffff050:  feefeffe feefeffe feefeffe feefeffe  
[09:29:50]3ffff060:  feefeffe feefeffe feefeffe feefeffe  
[09:29:50]3ffff070:  feefeffe feefeffe feefeffe feefeffe  
[09:29:50]3ffff080:  feefeffe feefeffe feefeffe feefeffe  
[09:29:50]3ffff090:  feefeffe feefeffe feefeffe feefeffe  
[09:29:50]3ffff0a0:  feefeffe feefeffe feefeffe feefeffe  
[09:29:50]3ffff0b0:  feefeffe feefeffe feefeffe feefeffe  
[09:29:50]3ffff0c0:  feefeffe feefeffe feefeffe feefeffe  
[09:29:50]3ffff0d0:  feefeffe feefeffe feefeffe feefeffe  
[09:29:50]3ffff0e0:  feefeffe feefeffe feefeffe feefeffe  
[09:29:50]3ffff0f0:  feefeffe feefeffe feefeffe feefeffe  
[09:29:50]3ffff100:  feefeffe feefeffe feefeffe feefeffe  
[09:29:50]3ffff110:  feefeffe feefeffe feefeffe feefeffe  
[09:29:50]3ffff120:  feefeffe feefeffe feefeffe feefeffe  
[09:29:50]3ffff130:  feefeffe feefeffe feefeffe feefeffe  
[09:29:50]3ffff140:  feefeffe feefeffe feefeffe feefeffe  
[09:29:50]3ffff150:  feefeffe feefeffe feefeffe feefeffe  
[09:29:50]3ffff160:  feefeffe feefeffe feefeffe feefeffe  
[09:29:50]3ffff170:  feefeffe feefeffe feefeffe feefeffe  
[09:29:50]3ffff180:  feefeffe feefeffe feefeffe feefeffe  
[09:29:50]3ffff190:  feefeffe feefeffe feefeffe feefeffe  
[09:29:50]3ffff1a0:  feefeffe feefeffe feefeffe feefeffe  
[09:29:50]3ffff1b0:  feefeffe feefeffe feefeffe feefeffe  
[09:29:50]
[09:29:54][D][binary_sensor:036]: 'sonoff_th10_01 status': Sending state ON
[09:29:54][V][api.connection:567]: Hello from client: 'Home Assistant 0.102.3 (<--ip address deleted by me-->)'
[09:29:54][D][api.connection:583]: Client 'Home Assistant 0.102.3 (<--ip address deleted by me-->)' connected successfully!
[09:29:55][D][time:029]: Synchronized time: Thu Jan  9 09:29:55 2020
[09:29:56]pm open,type:0 0
[09:30:40][V][sensor:013]: 'sonoff_th10_01 WiFi signal': Received new state -38.000000
[09:30:40][D][sensor:092]: 'sonoff_th10_01 WiFi signal': Sending state -38.00000 dB with 0 decimals of accuracy
[09:30:42][D][dht:048]: Got Temperature=19.9°C Humidity=65.1%
[09:30:42][V][sensor:013]: 'sonoff_th10_01 Temperature': Received new state 19.900000
[09:30:42][D][sensor:092]: 'sonoff_th10_01 Temperature': Sending state 19.90000 °C with 1 decimals of accuracy
[09:30:42][V][sensor:013]: 'sonoff_th10_01 Humidity': Received new state 65.099998
[09:30:42][D][sensor:092]: 'sonoff_th10_01 Humidity': Sending state 65.10000 % with 0 decimals of accuracy
[09:31:14][V][sensor:013]: 'sonoff_th10_01 Uptime': Received new state 91.891998
[09:31:14][D][sensor:092]: 'sonoff_th10_01 Uptime': Sending state 91.89200 s with 0 decimals of accuracy
[09:31:40][V][sensor:013]: 'sonoff_th10_01 WiFi signal': Received new state -45.000000
[09:31:40][D][sensor:092]: 'sonoff_th10_01 WiFi signal': Sending state -45.00000 dB with 0 decimals of accuracy
[09:31:42][D][dht:048]: Got Temperature=20.0°C Humidity=64.4%
[09:31:42][V][sensor:013]: 'sonoff_th10_01 Temperature': Received new state 20.000000
[09:31:42][D][sensor:092]: 'sonoff_th10_01 Temperature': Sending state 20.00000 °C with 1 decimals of accuracy
[09:31:42][V][sensor:013]: 'sonoff_th10_01 Humidity': Received new state 64.400002
[09:31:42][D][sensor:092]: 'sonoff_th10_01 Humidity': Sending state 64.40000 % with 0 decimals of accuracy
[09:31:42][I][ota:046]: Boot seems successful, resetting boot loop counter.
[09:32:40][V][sensor:013]: 'sonoff_th10_01 WiFi signal': Received new state -42.000000
[09:32:40][D][sensor:092]: 'sonoff_th10_01 WiFi signal': Sending state -42.00000 dB with 0 decimals of accuracy
[09:32:42][D][dht:048]: Got Temperature=19.9°C Humidity=65.5%
[09:32:42][V][sensor:013]: 'sonoff_th10_01 Temperature': Received new state 19.900000
[09:32:42][D][sensor:092]: 'sonoff_th10_01 Temperature': Sending state 19.90000 °C with 1 decimals of accuracy
[09:32:42][V][sensor:013]: 'sonoff_th10_01 Humidity': Received new state 65.500000
[09:32:42][D][sensor:092]: 'sonoff_th10_01 Humidity': Sending state 65.50000 % with 0 decimals of accuracy
[09:33:14][V][sensor:013]: 'sonoff_th10_01 Uptime': Received new state 211.889008
[09:33:14][D][sensor:092]: 'sonoff_th10_01 Uptime': Sending state 211.88901 s with 0 decimals of accuracy
[09:33:40][V][sensor:013]: 'sonoff_th10_01 WiFi signal': Received new state -47.000000
[09:33:40][D][sensor:092]: 'sonoff_th10_01 WiFi signal': Sending state -47.00000 dB with 0 decimals of accuracy
[09:33:42][D][dht:048]: Got Temperature=20.0°C Humidity=65.9%
[09:33:42][V][sensor:013]: 'sonoff_th10_01 Temperature': Received new state 20.000000
[09:33:42][D][sensor:092]: 'sonoff_th10_01 Temperature': Sending state 20.00000 °C with 1 decimals of accuracy
[09:33:42][V][sensor:013]: 'sonoff_th10_01 Humidity': Received new state 65.900002
[09:33:42][D][sensor:092]: 'sonoff_th10_01 Humidity': Sending state 65.90000 % with 0 decimals of accuracy
[09:34:40][V][sensor:013]: 'sonoff_th10_01 WiFi signal': Received new state -50.000000
[09:34:40][D][sensor:092]: 'sonoff_th10_01 WiFi signal': Sending state -50.00000 dB with 0 decimals of accuracy
[09:34:42][D][dht:048]: Got Temperature=20.0°C Humidity=66.2%
[09:34:42][V][sensor:013]: 'sonoff_th10_01 Temperature': Received new state 20.000000
[09:34:42][D][sensor:092]: 'sonoff_th10_01 Temperature': Sending state 20.00000 °C with 1 decimals of accuracy
[09:34:42][V][sensor:013]: 'sonoff_th10_01 Humidity': Received new state 66.200005
[09:34:42][D][sensor:092]: 'sonoff_th10_01 Humidity': Sending state 66.20000 % with 0 decimals of accuracy
[09:35:14][V][sensor:013]: 'sonoff_th10_01 Uptime': Received new state 331.898987
[09:35:14][D][sensor:092]: 'sonoff_th10_01 Uptime': Sending state 331.89899 s with 0 decimals of accuracy
[09:35:40][V][sensor:013]: 'sonoff_th10_01 WiFi signal': Received new state -40.000000
[09:35:40][D][sensor:092]: 'sonoff_th10_01 WiFi signal': Sending state -40.00000 dB with 0 decimals of accuracy
[09:35:42][D][dht:048]: Got Temperature=20.0°C Humidity=65.9%
[09:35:42][V][sensor:013]: 'sonoff_th10_01 Temperature': Received new state 20.000000
[09:35:42][D][sensor:092]: 'sonoff_th10_01 Temperature': Sending state 20.00000 °C with 1 decimals of accuracy
[09:35:42][V][sensor:013]: 'sonoff_th10_01 Humidity': Received new state 65.900002
[09:35:42][D][sensor:092]: 'sonoff_th10_01 Humidity': Sending state 65.90000 % with 0 decimals of accuracy
[09:36:40][V][sensor:013]: 'sonoff_th10_01 WiFi signal': Received new state -38.000000
[09:36:40][D][sensor:092]: 'sonoff_th10_01 WiFi signal': Sending state -38.00000 dB with 0 decimals of accuracy
[09:36:42][D][dht:048]: Got Temperature=20.0°C Humidity=64.6%
[09:36:42][V][sensor:013]: 'sonoff_th10_01 Temperature': Received new state 20.000000
[09:36:42][D][sensor:092]: 'sonoff_th10_01 Temperature': Sending state 20.00000 °C with 1 decimals of accuracy
[09:36:42][V][sensor:013]: 'sonoff_th10_01 Humidity': Received new state 64.599998
[09:36:42][D][sensor:092]: 'sonoff_th10_01 Humidity': Sending state 64.60000 % with 0 decimals of accuracy
[09:37:14][V][sensor:013]: 'sonoff_th10_01 Uptime': Received new state 451.891998
[09:37:14][D][sensor:092]: 'sonoff_th10_01 Uptime': Sending state 451.89200 s with 0 decimals of accuracy
[09:37:40][V][sensor:013]: 'sonoff_th10_01 WiFi signal': Received new state -39.000000
[09:37:40][D][sensor:092]: 'sonoff_th10_01 WiFi signal': Sending state -39.00000 dB with 0 decimals of accuracy
[09:37:42][D][dht:048]: Got Temperature=20.0°C Humidity=64.6%
[09:37:42][V][sensor:013]: 'sonoff_th10_01 Temperature': Received new state 20.000000
[09:37:42][D][sensor:092]: 'sonoff_th10_01 Temperature': Sending state 20.00000 °C with 1 decimals of accuracy
[09:37:42][V][sensor:013]: 'sonoff_th10_01 Humidity': Received new state 64.599998
[09:37:42][D][sensor:092]: 'sonoff_th10_01 Humidity': Sending state 64.60000 % with 0 decimals of accuracy
[09:38:40][V][sensor:013]: 'sonoff_th10_01 WiFi signal': Received new state -47.000000
[09:38:40][D][sensor:092]: 'sonoff_th10_01 WiFi signal': Sending state -47.00000 dB with 0 decimals of accuracy
[09:38:42][D][dht:048]: Got Temperature=20.0°C Humidity=63.9%
[09:38:42][V][sensor:013]: 'sonoff_th10_01 Temperature': Received new state 20.000000
[09:38:42][D][sensor:092]: 'sonoff_th10_01 Temperature': Sending state 20.00000 °C with 1 decimals of accuracy
[09:38:42][V][sensor:013]: 'sonoff_th10_01 Humidity': Received new state 63.900002
[09:38:42][D][sensor:092]: 'sonoff_th10_01 Humidity': Sending state 63.90000 % with 0 decimals of accuracy
[09:38:59]
[09:38:59]Abort called
[09:38:59]
[09:38:59]>>>stack>>>
WARNING Found stack trace! Trying to decode it
[09:38:59]
[09:38:59]ctx: sys
[09:38:59]sp: 3fffe8e0 end: 3fffffb0 offset: 01b0
[09:38:59]3fffea90:  00000000 3fffede8 3fff1b94 402198aa  
WARNING Decoded 0x402198aa: esp8266::MDNSImplementation::MDNSResponder::_readRRAnswer(esp8266::MDNSImplementation::MDNSResponder::stcMDNS_RRAnswer*&)
[09:38:59]3fffeaa0:  31314305 5f043237 04687373 7063745f  
[09:38:59]3fffeab0:  636f6c05 00006c61 00000000 00000000  
[09:38:59]3fffeac0:  00000000 00000000 00000000 00000000  
[09:38:59]3fffead0:  00000000 00000000 00000000 00000000  
[09:38:59]3fffeae0:  00000000 00000000 00000000 00000000  
[09:38:59]3fffeaf0:  00000000 00000000 00000000 00000000  
[09:38:59]3fffeb00:  00000000 00000000 00000000 00000000  
[09:38:59]3fffeb10:  00000000 00000000 00000000 00000000  
[09:38:59]3fffeb20:  00000000 00000000 00000000 00000000  
[09:38:59]3fffeb30:  00000000 00000000 00000000 00000000  
[09:38:59]3fffeb40:  00000000 00000000 00000000 00000000  
[09:38:59]3fffeb50:  00000000 00000000 00000000 00000000  
[09:38:59]3fffeb60:  00000000 00000000 00000000 00000000  
[09:38:59]3fffeb70:  00000000 00000000 00000000 00000000  
[09:38:59]3fffeb80:  00000000 00000000 00000000 00000000  
[09:38:59]3fffeb90:  00000000 00000000 00000000 00000000  
[09:38:59]3fffeba0:  00210017 00000001 00000078 40210008  
WARNING Decoded 0x40210008: esphome::Scheduler::cancel_item_(esphome::Component*, std::string const&, esphome::Scheduler::SchedulerItem::Type)
[09:38:59]3fffebb0:  3fffedc0 00000001 3fff1b94 40216609  
WARNING Decoded 0x40216609: esp8266::MDNSImplementation::MDNSResponder::_parseQuery(esp8266::MDNSImplementation::MDNSResponder::stcMDNS_MsgHeader const&)
[09:38:59]3fffebc0:  00000000 31314305 6c053237 6c61636f  
[09:38:59]3fffebd0:  00000000 00000000 00000000 00000000  
[09:38:59]3fffebe0:  00000000 00000000 00000000 00000000  
[09:38:59]3fffebf0:  00000000 00000000 00000000 00000000  
[09:38:59]3fffec00:  00000000 00000000 00000000 00000000  
[09:38:59]3fffec10:  00000000 00000000 00000000 00000000  
[09:38:59]3fffec20:  00000000 00000000 00000000 00000000  
[09:38:59]3fffec30:  00000000 00000000 00000000 00000000  
[09:38:59]3fffec40:  00000000 00000000 00000000 00000000  
[09:38:59]3fffec50:  00000000 00000000 00000000 00000000  
[09:38:59]3fffec60:  00000000 00000000 00000000 00000000  
[09:38:59]3fffec70:  00000000 00000000 00000000 00000000  
[09:38:59]3fffec80:  00000000 00000000 00000000 00000000  
[09:38:59]3fffec90:  00000000 00000000 00000000 00000000  
[09:38:59]3fffeca0:  00000000 00000000 00000000 00000000  
[09:38:59]3fffecb0:  00000000 00000000 00000000 00000000  
[09:38:59]3fffecc0:  00000000 00ff000d 3f000001 00000001  
[09:38:59]3fffecd0:  00000001 00004208 0000001f 40104ef1  
WARNING Decoded 0x40104ef1: ets_timer_disarm
[09:38:59]3fffece0:  ffffffd9 210ad8c8 00002200 4000050c  
[09:38:59]3fffecf0:  3fffc278 401022d8 3fffc200 00000022  
WARNING Decoded 0x401022d8: wDev_ProcessFiq
[09:38:59]3fffed00:  3ffec7ec 4010460f 3ffef998 00000100  
WARNING Decoded 0x4010460f: lmacRxDone
[09:39:00]3fffed10:  40223081 00000030 00000010 ffffffff  
WARNING Decoded 0x40223081: check_poison_block at umm_malloc.cpp
[09:39:00]3fffed20:  40223187 3fff4980 00000003 000000a5  
WARNING Decoded 0x40223187: check_poison_all_blocks at umm_malloc.cpp
[09:39:00]3fffed30:  000000a5 000003e9 000003e9 00000001  
[09:39:00]3fffed40:  00e02903 3fffbfec 00000002 3fff4978  
[09:39:00]3fffed50:  00002638 3fff76a4 00000000 00000030  
[09:39:00]3fffed60:  00000001 00004208 00000010 ffffffff  
[09:39:00]3fffed70:  40223187 210ad32b 00002200 4000050c  
WARNING Decoded 0x40223187: check_poison_all_blocks at umm_malloc.cpp
[09:39:00]3fffed80:  3fffc278 401022d8 3fffc200 00000022  
WARNING Decoded 0x401022d8: wDev_ProcessFiq
[09:39:00]3fffed90:  3ffec7bc 3fffc6fc 00000001 3fff54a0  
[09:39:00]3fffeda0:  402230b5 00000030 00000010 ffffffff  
WARNING Decoded 0x402230b5: check_poison_block at umm_malloc.cpp
[09:39:00]3fffedb0:  40223187 3fff4060 00000002 000000a5  
WARNING Decoded 0x40223187: check_poison_all_blocks at umm_malloc.cpp
[09:39:00]3fffedc0:  000000a5 7fffffff 00000000 3ffef590  
[09:39:00]3fffedd0:  3ffe0000 00000000 00000000 3f000001  
[09:39:00]3fffede0:  3fff0000 00000000 00000000 402196d5  
WARNING Decoded 0x402196d5: esp8266::MDNSImplementation::MDNSResponder::_udpRead16(unsigned short&)
[09:39:00]3fffedf0:  00000000 00000007 3fffee40 3fff5574  
[09:39:00]3fffee00:  ffff0000 210aa0a8 4010253e 000014e9  
WARNING Decoded 0x4010253e: wDev_ProcessFiq
[09:39:00]3fffee10:  3fff71bc 3fff1b94 3fff1b94 40217345  
WARNING Decoded 0x40217345: esp8266::MDNSImplementation::MDNSResponder::_parseMessage()
[09:39:00]3fffee20:  00000000 00000000 00000000 00000000  
[09:39:00]3fffee30:  00000000 00000000 00000000 4023ac9c  
WARNING Decoded 0x4023ac9c: mem_free at /home/gauchard/dev/esp8266/esp8266/tools/sdk/lwip2/builder/lwip2-src/src/core/mem.c:237
[09:39:00]3fffee40:  00000000 00000005 00010006 402357a2  
WARNING Decoded 0x402357a2: pbuf_free_LWIP2 at /home/gauchard/dev/esp8266/esp8266/tools/sdk/lwip2/builder/lwip2-src/src/core/pbuf.c:688
[09:39:00]3fffee50:  3fff71bc 3fff1b94 3fff54dc 4021770f  
WARNING Decoded 0x4021770f: esp8266::MDNSImplementation::MDNSResponder::_process(bool)
[09:39:00]3fffee60:  3fff22e8 3fff80e4 3fff54dc 4021772c  
WARNING Decoded 0x4021772c: esp8266::MDNSImplementation::MDNSResponder::_callProcess()
[09:39:00]3fffee70:  00000011 00000001 00000818 40224d07  
WARNING Decoded 0x40224d07: std::_Function_handler<void (), std::_Bind<std::_Mem_fn<bool (esp8266::MDNSImplementation::MDNSResponder::*)()> (esp8266::MDNSImplementation::MDNSResponder*)> >::_M_invoke(std::_Any_data const&)
[09:39:00]3fffee80:  3fff22e8 3fff80e4 3fff54dc 40214810  
WARNING Decoded 0x40214810: UdpContext::_s_recv(void*, udp_pcb*, pbuf*, ip4_addr const*, unsigned short)
[09:39:00]3fffee90:  3fff8116 00000000 3fff51ac 3fff80e4  
[09:39:00]3fffeea0:  3fff8116 00000000 3fff51ac 40235e14  
WARNING Decoded 0x40235e14: udp_input at /home/gauchard/dev/esp8266/esp8266/tools/sdk/lwip2/builder/lwip2-src/src/core/udp.c:1049
[09:39:00]3fffeeb0:  000014e9 3fff2230 3fff2230 40223339  
WARNING Decoded 0x40223339: malloc
[09:39:00]3fffeec0:  40230000 00000d4d 3fffef30 3fff2230  
WARNING Decoded 0x40230000: __ssvfscanf_r at /home/earle/src/esp-quick-toolchain/repo/newlib/newlib/libc/stdio/nano-vfscanf.c:480
[09:39:00]3fffeed0:  3fff22d8 3fff80e4 3fff8102 40239f84  
WARNING Decoded 0x40239f84: ip4_input at /home/gauchard/dev/esp8266/esp8266/tools/sdk/lwip2/builder/lwip2-src/src/core/ipv4/ip4.c:704
[09:39:00]3fffeee0:  00000014 00000000 3fff2230 40222e2c  
WARNING Decoded 0x40222e2c: _umm_free at umm_malloc.cpp
[09:39:00]3fffeef0:  3fffdc80 3fff28b4 3fff66a4 3fff290c  
[09:39:00]3fffef00:  00000008 3fff2230 3fff80e4 40231c99  
WARNING Decoded 0x40231c99: ethernet_input_LWIP2 at /home/gauchard/dev/esp8266/esp8266/tools/sdk/lwip2/builder/lwip2-src/src/netif/ethernet.c:188
[09:39:00]3fffef10:  3fffdc80 3fff28b4 3fff66ac 40231acf  
WARNING Decoded 0x40231acf: esp2glue_ethernet_input at /home/gauchard/dev/esp8266/esp8266/tools/sdk/lwip2/builder/glue-lwip/lwip-git.c:441
[09:39:00]3fffef20:  4025679a 3fff28b4 3fff66ac 402567ab  
WARNING Decoded 0x4025679a: ethernet_input at /home/gauchard/dev/esp8266/esp8266/tools/sdk/lwip2/builder/glue-esp/lwip-esp.c:363
WARNING Decoded 0x402567ab: ethernet_input at /home/gauchard/dev/esp8266/esp8266/tools/sdk/lwip2/builder/glue-esp/lwip-esp.c:371
[09:39:00]3fffef30:  3fff80f4 3fff80e4 00000000 3fffdcb0  
[09:39:00]3fffef40:  3fff1200 00000000 3fff66ac 40251fbb  
WARNING Decoded 0x40251fbb: ets_snprintf
[09:39:01]3fffef50:  40000f49 3fffdab0 3fffdab0 40000f49  
[09:39:01]3fffef60:  40000e19 40001878 00000001 3fffffb0  
[09:39:01]3fffef70:  3fffff10 aa55aa55 00000085 40104718  
WARNING Decoded 0x40104718: call_user_start_local
[09:39:01]3fffef80:  4010471e 00000001 3fffffb0 447027af  
WARNING Decoded 0x4010471e: call_user_start_local
[09:39:01]3fffef90:  4010000d 6f09e554 8cd23a22 a26d9aba  
WARNING Decoded 0x4010000d: call_user_start
[09:39:01]3fffefa0:  401008dc 3fffef3c 4010087d 3fffff28  
WARNING Decoded 0x401008dc: cont_ret at cont.S.o
WARNING Decoded 0x4010087d: cont_continue at cont.S.o
[09:39:01]3fffefb0:  3fffffc0 00000000 00000000 feefeffe  
[09:39:01]3fffefc0:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3fffefd0:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3fffefe0:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3fffeff0:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff000:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff010:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff020:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff030:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff040:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff050:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff060:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff070:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff080:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff090:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff0a0:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff0b0:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff0c0:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff0d0:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff0e0:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff0f0:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff100:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff110:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff120:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff130:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff140:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff150:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff160:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff170:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff180:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff190:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff1a0:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff1b0:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff1c0:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff1d0:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff1e0:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff1f0:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff200:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff210:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff220:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff230:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff240:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff250:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff260:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff270:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff280:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff290:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff2a0:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff2b0:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff2c0:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff2d0:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff2e0:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff2f0:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff300:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff310:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff320:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff330:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff340:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff350:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff360:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff370:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff380:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff390:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff3a0:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff3b0:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff3c0:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff3d0:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff3e0:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff3f0:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff400:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff410:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff420:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff430:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff440:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff450:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff460:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff470:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff480:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff490:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff4a0:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff4b0:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff4c0:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff4d0:  feefeffe feefeffe feefeffe feefeffe  
[09:39:01]3ffff4e0:  feefeffe feefeffe f0m
[09:39:01][D][sensor:092]: 'sonoff_th10_01 Temperature': Sending state 20.00000 °C with 1 decimals of accuracy
[09:39:01][V][sensor:013]: 'sonoff_th10_01 Humidity': Received new state 63.600002
[09:39:01][D][sensor:092]: 'sonoff_th10_01 Humidity': Sending state 63.60000 % with 0 decimals of accuracy
[09:39:01][V][wifi_esp8266:344]: Event: Changed AuthMode old=OPEN new=WPA2 PSK
[09:39:01]wifi evt: 2
[09:39:04]scandone
[09:39:05]state: 0 -> 2 (b0)
[09:39:05]state: 2 -> 3 (0)
[09:39:05]state: 3 -> 5 (10)
[09:39:05]add 0
[09:39:05]aid 2
[09:39:05]cnt 
[09:39:05]
[09:39:05]connected with <--SSID deleted by me-->, channel 4
[09:39:05]ip:<--ip address deleted by me-->,mask:<--subnet deleted by me-->,gw:<--ip address deleted by me-->
[09:39:05]ip:<--ip address deleted by me-->,mask:<--subnet deleted by me-->,gw:<--ip address deleted by me-->
[09:39:05][V][wifi_esp8266:325]: Event: Connected ssid='<--SSID deleted by me-->' bssid=<--mac address deleted by me--> channel=4
[09:39:05]wifi evt: 0
[09:39:05][V][wifi_esp8266:350]: Event: Got IP static_ip=<--ip address deleted by me--> gateway=<--ip address deleted by me--> netmask=<--netmask deleted by me-->
[09:39:05]wifi evt: 3
[09:39:05][I][wifi:423]: WiFi Connected!
[09:39:05][C][wifi:283]:   SSID: [redacted]
[09:39:05][C][wifi:284]:   IP Address: <--ip address deleted by me-->
[09:39:05][C][wifi:286]:   BSSID: [redacted]
[09:39:05][C][wifi:287]:   Hostname: 'sonoff_th10_01'
[09:39:05][C][wifi:291]:   Signal strength: -45 dB ▂▄▆█
[09:39:05][C][wifi:295]:   Channel: 4
[09:39:05][C][wifi:296]:   Subnet: <--subnet address deleted by me-->
[09:39:05][C][wifi:297]:   Gateway: <--ip address deleted by me-->
[09:39:05][C][wifi:298]:   DNS1: <--ip address deleted by me-->
[09:39:05][C][wifi:299]:   DNS2: <--ip address deleted by me-->
[09:39:05][D][wifi:432]: Disabling AP...
[09:39:05][C][ota:029]: Over-The-Air Updates:
[09:39:05][C][ota:030]:   Address: <--ip address deleted by me-->:8266
[09:39:05][C][ota:032]:   Using Password.
[09:39:05][C][api:022]: Setting up Home Assistant API server...
[09:39:05][I][app:058]: setup() finished successfully!
[09:39:05][V][sensor:013]: 'sonoff_th10_01 WiFi signal': Received new state -41.000000
[09:39:05][D][sensor:092]: 'sonoff_th10_01 WiFi signal': Sending state -41.00000 dB with 0 decimals of accuracy
[09:39:05][D][text_sensor:015]: 'sonoff_th10_01 IP': Sending state '<--ip address deleted by me-->'
[09:39:05][D][text_sensor:015]: 'sonoff_th10_01 SSID': Sending state '<--SSID deleted by me-->'
[09:39:05][D][text_sensor:015]: 'sonoff_th10_01 BSSID': Sending state '<--mac address deleted by me-->'
[09:39:05][I][app:100]: ESPHome version 1.14.3 compiled on Jan  9 2020, 08:37:31
[09:39:05][C][wifi:415]: WiFi:
[09:39:05][C][wifi:283]:   SSID: [redacted]
[09:39:05][C][wifi:284]:   IP Address: <--ip address deleted by me-->
[09:39:05][C][wifi:286]:   BSSID: [redacted]
[09:39:05][C][wifi:287]:   Hostname: 'sonoff_th10_01'
[09:39:05][C][wifi:291]:   Signal strength: -41 dB ▂▄▆█
[09:39:05][C][wifi:295]:   Channel: 4
[09:39:05][C][wifi:296]:   Subnet: <--subnet address deleted by me-->
[09:39:05][C][wifi:297]:   Gateway: <--ip address deleted by me-->
[09:39:05][C][wifi:298]:   DNS1: <--ip address deleted by me-->
[09:39:05][C][wifi:299]:   DNS2: <--ip address deleted by me-->
[09:39:05][C][switch.gpio:042]: GPIO Switch 'sonoff_th10_01 relay'
[09:39:05][C][switch.gpio:043]:   Pin: GPIO12 (Mode: OUTPUT)
[09:39:05][C][switch.gpio:059]:   Restore Mode: Always OFF
[09:39:05][C][uptime.sensor:030]: Uptime Sensor 'sonoff_th10_01 Uptime'
[09:39:05][C][uptime.sensor:030]:   Unit of Measurement: 's'
[09:39:05][C][uptime.sensor:030]:   Accuracy Decimals: 0
[09:39:05][C][uptime.sensor:030]:   Icon: 'mdi:timer'
[09:39:05][V][uptime.sensor:030]:   Unique ID: 'cc50e352dcde-uptime'
[09:39:06][C][logger:175]: Logger:
[09:39:06][C][logger:176]:   Level: VERBOSE
[09:39:06][C][logger:177]:   Log Baud Rate: 115200
[09:39:06][C][logger:178]:   Hardware UART: UART0
[09:39:06][C][status:034]: Status Binary Sensor 'sonoff_th10_01 status'
[09:39:06][C][status:034]:   Device Class: 'connectivity'
[09:39:06][C][restart:021]: Restart Switch 'sonoff_th10_01 restart'
[09:39:06][C][restart:021]:   Icon: 'mdi:restart'
[09:39:06][C][dht:017]: DHT:
[09:39:06][C][dht:018]:   Pin: GPIO14 (Mode: INPUT)
[09:39:06][C][dht:024]:   Model: DHT22 (or equivalent)
[09:39:06][C][dht:027]:   Update Interval: 60.0s
[09:39:06][C][dht:029]:   Temperature 'sonoff_th10_01 Temperature'
[09:39:06][C][dht:029]:     Unit of Measurement: '°C'
[09:39:06][C][dht:029]:     Accuracy Decimals: 1
[09:39:06][C][dht:029]:     Icon: 'mdi:thermometer'
[09:39:06][C][dht:030]:   Humidity 'sonoff_th10_01 Humidity'
[09:39:06][C][dht:030]:     Unit of Measurement: '%'
[09:39:06][C][dht:030]:     Accuracy Decimals: 0
[09:39:06][C][dht:030]:     Icon: 'mdi:water-percent'
[09:39:06][C][homeassistant.time:010]: Home Assistant Time:
[09:39:06][C][homeassistant.time:011]:   Timezone: 'CET-1CEST-2,M3.5.0/2,M10.4.0/3'
[09:39:06][C][captive_portal:169]: Captive Portal:
[09:39:06][C][ota:029]: Over-The-Air Updates:
[09:39:06][C][ota:030]:   Address: <--ip address deleted by me-->:8266
[09:39:06][C][ota:032]:   Using Password.
[09:39:06][C][api:095]: API Server:
[09:39:06][C][api:096]:   Address: <--ip address deleted by me-->:6053
[09:39:06][C][wifi_signal.sensor:009]: WiFi Signal 'sonoff_th10_01 WiFi signal'
[09:39:06][C][wifi_signal.sensor:009]:   Unit of Measurement: 'dB'
[09:39:06][C][wifi_signal.sensor:009]:   Accuracy Decimals: 0
[09:39:06][C][wifi_signal.sensor:009]:   Icon: 'mdi:wifi'
[09:39:06][V][wifi_signal.sensor:009]:   Unique ID: 'cc50e352dcde-wifisignal'
[09:39:06][C][wifi_info:009]: WifiInfo IPAddress 'sonoff_th10_01 IP'
[09:39:06][V][wifi_info:009]:   Unique ID: 'cc50e352dcde-wifiinfo-ip'
[09:39:06][C][wifi_info:010]: WifiInfo SSID 'sonoff_th10_01 SSID'
[09:39:06][V][wifi_info:010]:   Unique ID: 'cc50e352dcde-wifiinfo-ssid'
[09:39:06][C][wifi_info:011]: WifiInfo BSSID 'sonoff_th10_01 BSSID'
[09:39:06][V][wifi_info:011]:   Unique ID: 'cc50e352dcde-wifiinfo-bssid'
[09:39:08][D][binary_sensor:036]: 'sonoff_th10_01 status': Sending state ON
[09:39:09][V][api.connection:567]: Hello from client: 'Home Assistant 0.102.3 (<--ip address deleted by me-->)'
[09:39:09][D][api.connection:583]: Client 'Home Assistant 0.102.3 (<--ip address deleted by me-->)' connected successfully!
[09:39:09][D][time:029]: Synchronized time: Thu Jan  9 09:39:09 2020
[09:39:15]pm open,type:0 0
[09:39:55][D][dht:048]: Got Temperature=20.0°C Humidity=64.8%
[09:39:55][V][sensor:013]: 'sonoff_th10_01 Temperature': Received new state 20.000000
[09:39:55][D][sensor:092]: 'sonoff_th10_01 Temperature': Sending state 20.00000 °C with 1 decimals of accuracy
[09:39:55][V][sensor:013]: 'sonoff_th10_01 Humidity': Received new state 64.800003
[09:39:55][D][sensor:092]: 'sonoff_th10_01 Humidity': Sending state 64.80000 % with 0 decimals of accuracy

Additional information and things you've tried: i solved it with the solution of https://github.com/esphome/issues/issues/931

muchasuerte commented 4 years ago

Hello @aartokke thank you!!

Your solution has resolved also my issue with my Sonoff TH16, it was very unstable also I was thinking to a bug with the wifi problem, I have another TH16 close to the AP which work fine.

aartokke commented 4 years ago

same issue #931 is closed en i see it's mentioned in the esphome sonoff docs now to use arduino_version: 2.4.2 therefore closing issue