Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. ioBroker Allgemein
    4. ESPHome frage zu Logs

    NEWS

    • Wir empfehlen: Node.js 22.x

    • Neuer Blog: Fotos und Eindrücke aus Solingen

    • ioBroker goes Matter ... Matter Adapter in Stable

    ESPHome frage zu Logs

    This topic has been deleted. Only users with topic management privileges can see it.
    • T
      tourer4778 last edited by

      Hallo, ich habe vor kurzem mein Iobroker neu aufgesetzt und habe ein update von Esphome gemacht. Vermutlich seit dem, finde ich in den Log´s meiner ESP´s neue Zeilen, mit denen ich nichts anfangen kann.
      Bei einem zum Beispiel :

      [05:59:00][D][sml:084]:   (0a01454d480000bed575) 1-0:96.50.1 [0x454d48]
      [05:59:00][D][sml:084]:   (0a01454d480000bed575) 1-0:96.1.0 [0x0a01454d480000bed575]
      [05:59:00][D][sml:084]:   (0a01454d480000bed575) 1-0:1.8.0 [0x000000000448b783]
      [05:59:00][D][sml:084]:   (0a01454d480000bed575) 1-0:2.8.0 [0x0000000000145b04]
      [05:59:00][D][sml:084]:   (0a01454d480000bed575) 1-0:36.7.0 [0x0000005d]
      [05:59:00][D][sml:084]:   (0a01454d480000bed575) 1-0:56.7.0 [0x00000540]
      [05:59:00][D][sml:084]:   (0a01454d480000bed575) 1-0:76.7.0 [0x000000f1]
      [05:59:00][D][sml:084]:   (0a01454d480000bed575) 1-0:16.7.0 [0x0000068e]
      [05:59:00][W][component:214]: Component sml took a long time for an operation (0.09 s).
      [05:59:00][W][component:215]: Components should block for at most 20-30ms.
      [05:59:01][D][sensor:093]: 'evu_import_180': Sending state 7187.44385 kWh with 4 decimals of accuracy
      [05:59:01][D][sensor:093]: 'evu_export_280': Sending state 133.40199 kWh with 4 decimals of accuracy
      [05:59:01][D][sensor:093]: 'emh_leistung': Sending state 1681.00000 W with 0 decimals of accuracy
      [05:59:01][D][sml:078]: OBIS info:
      [05:59:01][D][sml:084]:   (0a01454d480000bed575) 1-0:96.50.1 [0x454d48]
      [05:59:01][D][sml:084]:   (0a01454d480000bed575) 1-0:96.1.0 [0x0a01454d480000bed575]
      [05:59:01][D][sml:084]:   (0a01454d480000bed575) 1-0:1.8.0 [0x000000000448b788]
      [05:59:01][D][sml:084]:   (0a01454d480000bed575) 1-0:2.8.0 [0x0000000000145b04]
      [05:59:01][D][sml:084]:   (0a01454d480000bed575) 1-0:36.7.0 [0x0000005d]
      [05:59:01][D][sml:084]:   (0a01454d480000bed575) 1-0:56.7.0 [0x00000544]
      [05:59:01][D][sml:084]:   (0a01454d480000bed575) 1-0:76.7.0 [0x000000f0]
      [05:59:01][D][sml:084]:   (0a01454d480000bed575) 1-0:16.7.0 [0x00000691]
      [05:59:01][W][component:214]: Component sml took a long time for an operation (0.09 s).
      [05:59:01][W][component:215]: Components should block for at most 20-30ms.
      [05:59:02][D][sensor:093]: 'evu_import_180': Sending state 7187.44482 kWh with 4 decimals of accuracy
      [05:59:02][D][sensor:093]: 'evu_export_280': Sending state 133.40199 kWh with 4 decimals of accuracy
      [05:59:02][D][sensor:093]: 'emh_leistung': Sending state 1704.00000 W with 0 decimals of accuracy
      [05:59:02][D][sml:078]: OBIS info:
      

      esphome:
       name: stromzaehler
      
      esp8266:
       board: d1_mini
      
      wifi:
       ssid: !secret wifi_ssid
       password: !secret wifi_password
      
      logger:
      api:
      ota:
      
      web_server:
       port: 80
       
      status_led:
       pin:
         number: D4
         inverted: true    
         
      uart:
       - id: uart_bus
         tx_pin: D2  # Gelb
         rx_pin: D1  # Weiß
         baud_rate: 9600
         rx_buffer_size: 2048
         data_bits: 8
         stop_bits: 1
         parity: NONE
         
      sml:
      - id: sml_emh
        uart_id: uart_bus
      
      sensor:
      
       - platform: wifi_signal
         name: "WiFi Signal Sensor"
         id: rssi_sensor
         update_interval: 30s
      
       - platform: uptime
         name: "Uptime"
         id: uptime_s
         update_interval: 10s
      
       - platform: sml
         name: "emh_leistung"
         id: "emh_leistung"
         sml_id: sml_emh
         obis_code: "1-0:16.7.0"
         filters:
          - multiply: 1
         unit_of_measurement: W
         state_class: measurement
         device_class: power
      
       - platform: sml
         name: "evu_import_180"
         id: "evu_import_180"
         sml_id: sml_emh
         obis_code: "1-0:1.8.0"
         unit_of_measurement: kWh
         state_class: total_increasing
         device_class: energy
         filters:
          - multiply: 0.0001
         accuracy_decimals: 4
         force_update: true
         
      
       - platform: sml
         name: "evu_export_280"
         id: "evu_export_280"
         sml_id: sml_emh
         obis_code: "1-0:2.8.0"
         unit_of_measurement: kWh
         state_class: total_increasing
         device_class: energy
         filters:
          - multiply: 0.0001
         accuracy_decimals: 4
         force_update: true
         
      switch:
      
      # Restart
       - platform: restart
         name: "Restart_ESP"
      
         
      

      Weiß jemand, woran das liegen könnte ?

      M 1 Reply Last reply Reply Quote 0
      • M
        MCU @tourer4778 last edited by MCU

        @tourer4778 Man muss den logger level angeben?

        logger:
          level: WARNING
        
        
        DEBUG: Detaillierte Debug-Informationen
        INFO: Allgemeine Informationen
        WARNING: Warnungen
        ERROR: Fehler
        
        logger: -> Standard -> INFO
        
        1 Reply Last reply Reply Quote 0
        • T
          tourer4778 last edited by tourer4778

          @mcu
          Danke und du bist sicher, diese beiden Zeilen kommen deswegen? Die waren füher nicht da.

          M 1 Reply Last reply Reply Quote 0
          • M
            MCU @tourer4778 last edited by

            @tourer4778 Ich dachte es geht um das ganze LOG. Welche 2 Zeilen sind denn neu?

            T 1 Reply Last reply Reply Quote 0
            • T
              tourer4778 @MCU last edited by

              @mcu
              [20:28:08][W][component:214]: Component sml took a long time for an operation (0.10 s).
              [20:28:08][W][component:215]: Components should block for at most 20-30ms.

              Die ander sind für mich in Ordnung

              M 1 Reply Last reply Reply Quote 0
              • M
                MCU @tourer4778 last edited by

                @tourer4778 Kommunikationsproblem?
                sml Komponente brauchte länger als normal vorgesehen (20-30ms) -> 0.1s
                Hängt also mit dem Energiemesser emh zusammen? Warum? -> keine Ahnung.
                Kommen diese Meldungen denn öfter?

                T 1 Reply Last reply Reply Quote 0
                • T
                  tourer4778 @MCU last edited by

                  @mcu
                  Ja, alle 1 - 2 Sekunden ...
                  Wie gesagt, vor dem update war noch alle in Ornung, zumindest ist es mir nicht aufgefallen.

                  M 1 Reply Last reply Reply Quote 0
                  • M
                    MCU @tourer4778 last edited by MCU

                    @tourer4778 Kann Dir da leider nicht weiter helfen.
                    Du kannst ja einmal zurückgehen und es überprüfen. Ansonsten in github zum Adapter selbst mal das Anliegen schildern.
                    https://github.com/DrozmotiX/ioBroker.esphome/issues

                    T 1 Reply Last reply Reply Quote 0
                    • T
                      tourer4778 @MCU last edited by

                      @mcu
                      Okay, danke für die Hilfe

                      1 Reply Last reply Reply Quote 0
                      • First post
                        Last post

                      Support us

                      ioBroker
                      Community Adapters
                      Donate
                      FAQ Cloud / IOT
                      HowTo: Node.js-Update
                      HowTo: Backup/Restore
                      Downloads
                      BLOG

                      921
                      Online

                      32.0k
                      Users

                      80.4k
                      Topics

                      1.3m
                      Posts

                      2
                      9
                      511
                      Loading More Posts
                      • Oldest to Newest
                      • Newest to Oldest
                      • Most Votes
                      Reply
                      • Reply as topic
                      Log in to reply
                      Community
                      Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen
                      The ioBroker Community 2014-2023
                      logo