Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. ioBroker Allgemein
    4. [Frage] Smartmeter D0 - Itron ACE3000 Typ260 antwortet nicht

    NEWS

    • ioBroker@Smart Living Forum Solingen, 14.06. - Agenda added

    • ioBroker goes Matter ... Matter Adapter in Stable

    • Monatsrückblick - April 2025

    [Frage] Smartmeter D0 - Itron ACE3000 Typ260 antwortet nicht

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

      Grüße,
      Ich hab einen ITRON Ace3000 Typ 260 Stromzähler und den IR Lesekopf von Udo.

      Ich habe das Testscript von Volkszähler zum testen genommen. Damit bekomme ich auch die Richtigen werte.

      #!/bin/bash
      
      # Itron ACE3000 Typ260
      # einfach auslesen
      # nach Idee von https://wiki.volkszaehler.org/hardware/channels/meters/power/edl-ehz/itron_ace3000_type_260 --> BASH
      
      # Init ttyUSBx  / 300 baud 7 E 1
      stty -F /dev/ttyUSB0 1:4:da7:a30:3:1c:7f:15:4:10:0:0:11:13:1a:0:12:f:17:16:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0
      
      ## send request
      ( sleep 1 ; echo -e "\x2f\x3f\x21\x0d\x0a" > /dev/ttyUSB0 ) &
      
      while read -t8 line                                         # warten auf die Zaehlerausgabe
      do                                                          # Bestaetigung nach dem Wecken nicht notwendig
        [[ "$line" =~ "1.8.0" ]] && Z1=${line:6:8}                # Wert fuer Bezug
        [[ "$line" =~ "2.8.0" ]] && Z2=${line:6:8}                # Wert fuer Einspeisung
      done < /dev/ttyUSB0
      
      
      length1=${#Z1}
      length2=${#Z2}
      
      #printf '{"Strom": {"incoming":'$Z1', "outgoing":'$Z2'} }'
      #check if there is an value read
      if [[ $length1 -eq 8 ]] && [[ $length2 -eq 8 ]] 
      then
        printf $Z1', '$Z2
      fi
      
      

      im Smartmeter habe ich dann folgende Daten eingestellt
      58eb8897-874c-43d6-abaa-d794c766d04b-grafik.png

      ich bekomme aber keine Daten
      e13625be-a133-405d-866b-f36d7331a489-grafik.png

      Kann mir jemand sagen was da genau falsch läuft?

      K Homoran apollon77 3 Replies Last reply Reply Quote 0
      • K
        klassisch Most Active @Alfonz_Ritzek last edited by klassisch

        @alfonz_ritzek Nur der Vollständigkeit halber weil äußerst beliebter Fehler: die USB Schnittstelle kann nur von einem einzigen Programm gleichzeitig "besetzt" werden. Wenn vorher ein anderes Programm den USB besetzt hat, kann ioBroker nicht mehr darauf zugreifen.
        Also neu booten und außer ioBroker nichts starten. Geht es dann?

        A 1 Reply Last reply Reply Quote 0
        • A
          Alfonz_Ritzek @klassisch last edited by

          @klassisch Raspberry Pi neugestartet und behalte die Fehlermeldung.

          K 1 Reply Last reply Reply Quote 0
          • K
            klassisch Most Active @Alfonz_Ritzek last edited by

            @alfonz_ritzek Dann Adapter bitte auf loglevel "debug" stellen.
            Ausgabe nach dem Start des Adapters hier in code Tags posten.
            Und warten bis jemand vorbei kommt (z.B. @apollon77 ), der sich mit D0 und den voranzustellenden Zeichen auskennt oder @Ralla66 , der lt. Suche solch einen Zähler betreibt.
            Sorry, habe selbst keinen D0 Zähler und kenne mich nicht damit aus.
            Vielleicht in den Titel noch D0 mit aufnehmen.

            A 1 Reply Last reply Reply Quote 0
            • A
              Alfonz_Ritzek @klassisch last edited by Alfonz_Ritzek

              @klassisch

              Wird gemacht

              2023-01-06 16:56:56.701 - info: host.raspberrypi stopInstance system.adapter.smartmeter.0 (force=false, process=true)
              2023-01-06 16:56:56.715 - silly: smartmeter.0 (11988) States system redis pmessage system.adapter.smartmeter.0.sigKill/system.adapter.smartmeter.0.sigKill:{"val":-1,"ack":false,"ts":1673020616710,"q":0,"from":"system.host.raspberrypi","lc":1673020616710}
              2023-01-06 16:56:56.717 - info: host.raspberrypi stopInstance system.adapter.smartmeter.0 send kill signal
              2023-01-06 16:56:56.717 - info: smartmeter.0 (11988) Got terminate signal TERMINATE_YOURSELF
              2023-01-06 16:56:56.723 - info: smartmeter.0 (11988) terminating
              2023-01-06 16:56:56.727 - debug: smartmeter.0 (11988) Plugin sentry destroyed
              2023-01-06 16:56:56.728 - info: smartmeter.0 (11988) Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason
              2023-01-06 16:56:57.399 - info: host.raspberrypi instance system.adapter.smartmeter.0 terminated with code 11 (ADAPTER_REQUESTED_TERMINATION)
              2023-01-06 16:56:59.949 - info: host.raspberrypi instance system.adapter.smartmeter.0 started with pid 15750
              2023-01-06 16:57:03.278 - debug: smartmeter.0 (15750) Redis Objects: Use Redis connection: 127.0.0.1:9001
              2023-01-06 16:57:03.394 - debug: smartmeter.0 (15750) Objects client ready ... initialize now
              2023-01-06 16:57:03.398 - debug: smartmeter.0 (15750) Objects create System PubSub Client
              2023-01-06 16:57:03.401 - debug: smartmeter.0 (15750) Objects create User PubSub Client
              2023-01-06 16:57:03.622 - debug: smartmeter.0 (15750) Objects client initialize lua scripts
              2023-01-06 16:57:03.636 - debug: smartmeter.0 (15750) Objects connected to redis: 127.0.0.1:9001
              2023-01-06 16:57:03.752 - debug: smartmeter.0 (15750) Redis States: Use Redis connection: 127.0.0.1:9000
              2023-01-06 16:57:03.838 - debug: smartmeter.0 (15750) States create System PubSub Client
              2023-01-06 16:57:03.841 - debug: smartmeter.0 (15750) States create User PubSub Client
              2023-01-06 16:57:03.998 - debug: smartmeter.0 (15750) States connected to redis: 127.0.0.1:9000
              2023-01-06 16:57:04.321 - debug: smartmeter.0 (15750) Plugin sentry Initialize Plugin (enabled=true)
              2023-01-06 16:57:05.068 - info: smartmeter.0 (15750) starting. Version 3.3.4 in /opt/iobroker/node_modules/iobroker.smartmeter, node: v16.16.0, js-controller: 4.0.24
              2023-01-06 16:57:05.126 - debug: smartmeter.0 (15750) SmartmeterObis options: {"debug":2,"protocol":"D0Protocol","transport":"SerialResponseTransport","requestInterval":"15","anotherQueryDelay":"1000","transportSerialPort":"/dev/serial/by-id/usb-Silicon_Labs_CP2104_USB_to_UART_Bridge_Controller_00F2F66C-if00-port0","transportSerialBaudrate":300,"transportSerialDataBits":7,"transportSerialStopBits":1,"transportSerialParity":"even","transportSerialMessageTimeout":null,"protocolD0WakeupCharacters":0,"protocolD0SignOnMessage":"\\?! CR LF","protocolD0BaudrateChangeoverOverwrite":300,"obisFallbackMedium":1}
              2023-01-06 16:57:05.132 - debug: smartmeter.0 (15750) CREATE SERIALPORT: 300 7 1 even
              2023-01-06 16:57:05.147 - debug: smartmeter.0 (15750) SERIALPORT OPEN
              2023-01-06 16:57:05.183 - debug: smartmeter.0 (15750) SET MESSAGE TIMEOUT TIMER: 120000
              2023-01-06 16:57:05.209 - debug: smartmeter.0 (15750) connected set to false
              2023-01-06 16:57:06.041 - debug: smartmeter.0 (15750) ADD NEW DATA (0 + NEW 1)
              2023-01-06 16:57:06.044 - debug: smartmeter.0 (15750) CURRENT PROCESS STEP 0 IN CHECKMESSAGE
              2023-01-06 16:57:06.045 - debug: smartmeter.0 (15750) MATCH-RESULT SIGNON: "" -> null
              2023-01-06 16:57:09.344 - debug: smartmeter.0 (15750) ADD NEW DATA (1 + NEW 1)
              2023-01-06 16:57:09.346 - debug: smartmeter.0 (15750) CURRENT PROCESS STEP 0 IN CHECKMESSAGE
              2023-01-06 16:57:09.347 - debug: smartmeter.0 (15750) MATCH-RESULT SIGNON: "" -> null
              2023-01-06 16:57:12.597 - debug: smartmeter.0 (15750) ADD NEW DATA (2 + NEW 1)
              2023-01-06 16:57:12.598 - debug: smartmeter.0 (15750) CURRENT PROCESS STEP 0 IN CHECKMESSAGE
              2023-01-06 16:57:12.599 - debug: smartmeter.0 (15750) MATCH-RESULT SIGNON: "" -> null
              2023-01-06 16:57:15.867 - debug: smartmeter.0 (15750) ADD NEW DATA (3 + NEW 1)
              2023-01-06 16:57:15.869 - debug: smartmeter.0 (15750) CURRENT PROCESS STEP 0 IN CHECKMESSAGE
              2023-01-06 16:57:15.871 - debug: smartmeter.0 (15750) MATCH-RESULT SIGNON: "" -> null
              2023-01-06 16:57:19.201 - debug: smartmeter.0 (15750) ADD NEW DATA (4 + NEW 1)
              2023-01-06 16:57:19.203 - debug: smartmeter.0 (15750) CURRENT PROCESS STEP 0 IN CHECKMESSAGE
              2023-01-06 16:57:19.204 - debug: smartmeter.0 (15750) MATCH-RESULT SIGNON: "" -> null
              2023-01-06 16:57:22.519 - debug: smartmeter.0 (15750) ADD NEW DATA (5 + NEW 1)
              2023-01-06 16:57:22.521 - debug: smartmeter.0 (15750) CURRENT PROCESS STEP 0 IN CHECKMESSAGE
              2023-01-06 16:57:22.522 - debug: smartmeter.0 (15750) MATCH-RESULT SIGNON: "" -> null
              2023-01-06 16:57:25.827 - debug: smartmeter.0 (15750) ADD NEW DATA (6 + NEW 1)
              2023-01-06 16:57:25.828 - debug: smartmeter.0 (15750) CURRENT PROCESS STEP 0 IN CHECKMESSAGE
              2023-01-06 16:57:25.829 - debug: smartmeter.0 (15750) MATCH-RESULT SIGNON: "" -> null
              2023-01-06 16:57:29.108 - debug: smartmeter.0 (15750) ADD NEW DATA (7 + NEW 1)
              2023-01-06 16:57:29.109 - debug: smartmeter.0 (15750) CURRENT PROCESS STEP 0 IN CHECKMESSAGE
              2023-01-06 16:57:29.110 - debug: smartmeter.0 (15750) MATCH-RESULT SIGNON: "" -> null
              2023-01-06 16:57:32.396 - debug: smartmeter.0 (15750) ADD NEW DATA (8 + NEW 1)
              2023-01-06 16:57:32.397 - debug: smartmeter.0 (15750) CURRENT PROCESS STEP 0 IN CHECKMESSAGE
              2023-01-06 16:57:32.398 - debug: smartmeter.0 (15750) MATCH-RESULT SIGNON: "" -> null
              2023-01-06 16:57:35.695 - debug: smartmeter.0 (15750) ADD NEW DATA (9 + NEW 1)
              2023-01-06 16:57:35.696 - debug: smartmeter.0 (15750) CURRENT PROCESS STEP 0 IN CHECKMESSAGE
              2023-01-06 16:57:35.697 - debug: smartmeter.0 (15750) MATCH-RESULT SIGNON: "" -> null
              2023-01-06 16:57:38.957 - debug: smartmeter.0 (15750) ADD NEW DATA (10 + NEW 1)
              2023-01-06 16:57:38.958 - debug: smartmeter.0 (15750) CURRENT PROCESS STEP 0 IN CHECKMESSAGE
              2023-01-06 16:57:38.960 - debug: smartmeter.0 (15750) MATCH-RESULT SIGNON: "" -> null
              2023-01-06 16:57:42.286 - debug: smartmeter.0 (15750) ADD NEW DATA (11 + NEW 1)
              2023-01-06 16:57:42.288 - debug: smartmeter.0 (15750) CURRENT PROCESS STEP 0 IN CHECKMESSAGE
              2023-01-06 16:57:42.289 - debug: smartmeter.0 (15750) MATCH-RESULT SIGNON: "" -> null
              2023-01-06 16:57:45.616 - debug: smartmeter.0 (15750) ADD NEW DATA (12 + NEW 1)
              2023-01-06 16:57:45.618 - debug: smartmeter.0 (15750) CURRENT PROCESS STEP 0 IN CHECKMESSAGE
              2023-01-06 16:57:45.619 - debug: smartmeter.0 (15750) MATCH-RESULT SIGNON: "" -> null
              2023-01-06 16:57:48.941 - debug: smartmeter.0 (15750) ADD NEW DATA (13 + NEW 1)
              2023-01-06 16:57:48.943 - debug: smartmeter.0 (15750) CURRENT PROCESS STEP 0 IN CHECKMESSAGE
              2023-01-06 16:57:48.945 - debug: smartmeter.0 (15750) MATCH-RESULT SIGNON: "" -> null
              2023-01-06 16:57:52.262 - debug: smartmeter.0 (15750) ADD NEW DATA (14 + NEW 1)
              2023-01-06 16:57:52.263 - debug: smartmeter.0 (15750) CURRENT PROCESS STEP 0 IN CHECKMESSAGE
              2023-01-06 16:57:52.264 - debug: smartmeter.0 (15750) MATCH-RESULT SIGNON: "" -> null
              2023-01-06 16:57:55.590 - debug: smartmeter.0 (15750) ADD NEW DATA (15 + NEW 1)
              2023-01-06 16:57:55.594 - debug: smartmeter.0 (15750) CURRENT PROCESS STEP 0 IN CHECKMESSAGE
              2023-01-06 16:57:55.595 - debug: smartmeter.0 (15750) MATCH-RESULT SIGNON: "" -> null
              2023-01-06 16:57:58.914 - debug: smartmeter.0 (15750) ADD NEW DATA (16 + NEW 1)
              2023-01-06 16:57:58.915 - debug: smartmeter.0 (15750) CURRENT PROCESS STEP 0 IN CHECKMESSAGE
              2023-01-06 16:57:58.915 - debug: smartmeter.0 (15750) MATCH-RESULT SIGNON: "" -> null
              2023-01-06 16:58:02.196 - debug: smartmeter.0 (15750) ADD NEW DATA (17 + NEW 1)
              2023-01-06 16:58:02.197 - debug: smartmeter.0 (15750) CURRENT PROCESS STEP 0 IN CHECKMESSAGE
              2023-01-06 16:58:02.198 - debug: smartmeter.0 (15750) MATCH-RESULT SIGNON: "" -> null
              2023-01-06 16:58:05.460 - debug: smartmeter.0 (15750) ADD NEW DATA (18 + NEW 1)
              2023-01-06 16:58:05.461 - debug: smartmeter.0 (15750) CURRENT PROCESS STEP 0 IN CHECKMESSAGE
              2023-01-06 16:58:05.462 - debug: smartmeter.0 (15750) MATCH-RESULT SIGNON: "" -> null
              2023-01-06 16:58:08.729 - debug: smartmeter.0 (15750) ADD NEW DATA (19 + NEW 1)
              2023-01-06 16:58:08.731 - debug: smartmeter.0 (15750) CURRENT PROCESS STEP 0 IN CHECKMESSAGE
              2023-01-06 16:58:08.731 - debug: smartmeter.0 (15750) MATCH-RESULT SIGNON: "" -> null
              2023-01-06 16:58:12.034 - debug: smartmeter.0 (15750) ADD NEW DATA (20 + NEW 1)
              2023-01-06 16:58:12.035 - debug: smartmeter.0 (15750) CURRENT PROCESS STEP 0 IN CHECKMESSAGE
              2023-01-06 16:58:12.035 - debug: smartmeter.0 (15750) MATCH-RESULT SIGNON: "" -> null
              2023-01-06 16:58:15.363 - debug: smartmeter.0 (15750) ADD NEW DATA (21 + NEW 1)
              2023-01-06 16:58:15.365 - debug: smartmeter.0 (15750) CURRENT PROCESS STEP 0 IN CHECKMESSAGE
              2023-01-06 16:58:15.366 - debug: smartmeter.0 (15750) MATCH-RESULT SIGNON: "" -> null
              2023-01-06 16:58:18.716 - debug: smartmeter.0 (15750) ADD NEW DATA (22 + NEW 1)
              2023-01-06 16:58:18.717 - debug: smartmeter.0 (15750) CURRENT PROCESS STEP 0 IN CHECKMESSAGE
              2023-01-06 16:58:18.717 - debug: smartmeter.0 (15750) MATCH-RESULT SIGNON: "" -> null
              2023-01-06 16:58:22.033 - debug: smartmeter.0 (15750) ADD NEW DATA (23 + NEW 1)
              2023-01-06 16:58:22.034 - debug: smartmeter.0 (15750) CURRENT PROCESS STEP 0 IN CHECKMESSAGE
              2023-01-06 16:58:22.035 - debug: smartmeter.0 (15750) MATCH-RESULT SIGNON: "" -> null
              2023-01-06 16:58:25.352 - debug: smartmeter.0 (15750) ADD NEW DATA (24 + NEW 1)
              2023-01-06 16:58:25.354 - debug: smartmeter.0 (15750) CURRENT PROCESS STEP 0 IN CHECKMESSAGE
              2023-01-06 16:58:25.355 - debug: smartmeter.0 (15750) MATCH-RESULT SIGNON: "" -> null
              2023-01-06 16:58:28.670 - debug: smartmeter.0 (15750) ADD NEW DATA (25 + NEW 1)
              2023-01-06 16:58:28.672 - debug: smartmeter.0 (15750) CURRENT PROCESS STEP 0 IN CHECKMESSAGE
              2023-01-06 16:58:28.674 - debug: smartmeter.0 (15750) MATCH-RESULT SIGNON: "" -> null
              2023-01-06 16:58:31.998 - debug: smartmeter.0 (15750) ADD NEW DATA (26 + NEW 1)
              2023-01-06 16:58:31.999 - debug: smartmeter.0 (15750) CURRENT PROCESS STEP 0 IN CHECKMESSAGE
              2023-01-06 16:58:32.001 - debug: smartmeter.0 (15750) MATCH-RESULT SIGNON: "" -> null
              2023-01-06 16:58:35.338 - debug: smartmeter.0 (15750) ADD NEW DATA (27 + NEW 1)
              2023-01-06 16:58:35.340 - debug: smartmeter.0 (15750) CURRENT PROCESS STEP 0 IN CHECKMESSAGE
              2023-01-06 16:58:35.341 - debug: smartmeter.0 (15750) MATCH-RESULT SIGNON: "" -> null
              2023-01-06 16:58:38.583 - debug: smartmeter.0 (15750) ADD NEW DATA (28 + NEW 1)
              2023-01-06 16:58:38.584 - debug: smartmeter.0 (15750) CURRENT PROCESS STEP 0 IN CHECKMESSAGE
              2023-01-06 16:58:38.585 - debug: smartmeter.0 (15750) MATCH-RESULT SIGNON: "" -> null
              2023-01-06 16:58:41.912 - debug: smartmeter.0 (15750) ADD NEW DATA (29 + NEW 1)
              2023-01-06 16:58:41.913 - debug: smartmeter.0 (15750) CURRENT PROCESS STEP 0 IN CHECKMESSAGE
              2023-01-06 16:58:41.914 - debug: smartmeter.0 (15750) MATCH-RESULT SIGNON: "" -> null
              2023-01-06 16:58:45.241 - debug: smartmeter.0 (15750) ADD NEW DATA (30 + NEW 1)
              2023-01-06 16:58:45.243 - debug: smartmeter.0 (15750) CURRENT PROCESS STEP 0 IN CHECKMESSAGE
              2023-01-06 16:58:45.244 - debug: smartmeter.0 (15750) MATCH-RESULT SIGNON: "" -> null
              2023-01-06 16:58:48.556 - debug: smartmeter.0 (15750) ADD NEW DATA (31 + NEW 1)
              2023-01-06 16:58:48.557 - debug: smartmeter.0 (15750) CURRENT PROCESS STEP 0 IN CHECKMESSAGE
              2023-01-06 16:58:48.559 - debug: smartmeter.0 (15750) MATCH-RESULT SIGNON: "" -> null
              2023-01-06 16:58:55.198 - debug: smartmeter.0 (15750) ADD NEW DATA (32 + NEW 1)
              2023-01-06 16:58:55.199 - debug: smartmeter.0 (15750) CURRENT PROCESS STEP 0 IN CHECKMESSAGE
              2023-01-06 16:58:55.200 - debug: smartmeter.0 (15750) MATCH-RESULT SIGNON: "" -> null
              2023-01-06 16:58:58.496 - debug: smartmeter.0 (15750) ADD NEW DATA (33 + NEW 1)
              2023-01-06 16:58:58.497 - debug: smartmeter.0 (15750) CURRENT PROCESS STEP 0 IN CHECKMESSAGE
              2023-01-06 16:58:58.498 - debug: smartmeter.0 (15750) MATCH-RESULT SIGNON: "" -> null
              2023-01-06 16:59:01.817 - debug: smartmeter.0 (15750) ADD NEW DATA (34 + NEW 1)
              2023-01-06 16:59:01.818 - debug: smartmeter.0 (15750) CURRENT PROCESS STEP 0 IN CHECKMESSAGE
              2023-01-06 16:59:01.819 - debug: smartmeter.0 (15750) MATCH-RESULT SIGNON: "" -> null
              2023-01-06 16:59:05.139 - debug: smartmeter.0 (15750) ADD NEW DATA (35 + NEW 1)
              2023-01-06 16:59:05.141 - debug: smartmeter.0 (15750) CURRENT PROCESS STEP 0 IN CHECKMESSAGE
              2023-01-06 16:59:05.141 - debug: smartmeter.0 (15750) MATCH-RESULT SIGNON: "" -> null
              2023-01-06 16:59:05.186 - debug: smartmeter.0 (15750) MESSAGE TIMEOUT TRIGGERED
              2023-01-06 16:59:05.187 - debug: smartmeter.0 (15750) Error: No or too long answer from Serial Device after last request.
              2023-01-06 16:59:05.190 - warn: smartmeter.0 (15750) No or too long answer from Serial Device after last request.
              2023-01-06 16:59:05.191 - debug: smartmeter.0 (15750) Error: No or too long answer from Serial Device after last request.
              2023-01-06 16:59:05.192 - debug: smartmeter.0 (15750) Transport Reset!! Restart = true
              2023-01-06 16:59:05.207 - debug: smartmeter.0 (15750) SERIALPORT CLOSE
              2023-01-06 16:59:05.209 - debug: smartmeter.0 (15750) SCHEDULE NEXT RUN IN 15s
              
              

              wenn ich von D0 auf Smart Meter language umstelle bekommt man werte herraus

              2023-01-06 17:45:47.362 - info: host.raspberrypi "system.adapter.smartmeter.0" enabled
              2023-01-06 17:45:47.714 - info: host.raspberrypi instance system.adapter.smartmeter.0 started with pid 17397
              2023-01-06 17:45:51.251 - debug: smartmeter.0 (17397) Redis Objects: Use Redis connection: 127.0.0.1:9001
              2023-01-06 17:45:51.367 - debug: smartmeter.0 (17397) Objects client ready ... initialize now
              2023-01-06 17:45:51.372 - debug: smartmeter.0 (17397) Objects create System PubSub Client
              2023-01-06 17:45:51.374 - debug: smartmeter.0 (17397) Objects create User PubSub Client
              2023-01-06 17:45:51.628 - debug: smartmeter.0 (17397) Objects client initialize lua scripts
              2023-01-06 17:45:51.649 - debug: smartmeter.0 (17397) Objects connected to redis: 127.0.0.1:9001
              2023-01-06 17:45:51.769 - debug: smartmeter.0 (17397) Redis States: Use Redis connection: 127.0.0.1:9000
              2023-01-06 17:45:51.824 - debug: smartmeter.0 (17397) States create System PubSub Client
              2023-01-06 17:45:51.827 - debug: smartmeter.0 (17397) States create User PubSub Client
              2023-01-06 17:45:51.925 - debug: smartmeter.0 (17397) States connected to redis: 127.0.0.1:9000
              2023-01-06 17:45:52.170 - debug: smartmeter.0 (17397) Plugin sentry Initialize Plugin (enabled=true)
              2023-01-06 17:45:52.893 - info: smartmeter.0 (17397) starting. Version 3.3.4 in /opt/iobroker/node_modules/iobroker.smartmeter, node: v16.16.0, js-controller: 4.0.24
              2023-01-06 17:45:52.952 - debug: smartmeter.0 (17397) SmartmeterObis options: {"debug":2,"protocol":"SmlProtocol","transport":"SerialResponseTransport","requestInterval":"15","anotherQueryDelay":"1000","transportSerialPort":"/dev/serial/by-id/usb-Silicon_Labs_CP2104_USB_to_UART_Bridge_Controller_00F2F66C-if00-port0","transportSerialBaudrate":300,"transportSerialDataBits":7,"transportSerialStopBits":1,"transportSerialParity":"even","transportSerialMessageTimeout":null,"protocolSmlIgnoreInvalidCRC":false,"obisFallbackMedium":1}
              2023-01-06 17:45:52.957 - debug: smartmeter.0 (17397) CREATE SERIALPORT: 300 7 1 even
              2023-01-06 17:45:53.000 - debug: smartmeter.0 (17397) SERIALPORT OPEN
              2023-01-06 17:45:53.014 - debug: smartmeter.0 (17397) SET MESSAGE TIMEOUT TIMER: 120000
              2023-01-06 17:45:53.033 - debug: smartmeter.0 (17397) connected set to false
              2023-01-06 17:45:53.962 - debug: smartmeter.0 (17397) ADD NEW DATA (0 + NEW 1)
              2023-01-06 17:45:53.968 - debug: smartmeter.0 (17397) MATCH-RESULT MESSAGE: "7f" -> null
              2023-01-06 17:45:57.361 - debug: smartmeter.0 (17397) ADD NEW DATA (1 + NEW 1)
              2023-01-06 17:45:57.364 - debug: smartmeter.0 (17397) MATCH-RESULT MESSAGE: "7f7f" -> null
              2023-01-06 17:46:00.759 - debug: smartmeter.0 (17397) ADD NEW DATA (2 + NEW 1)
              2023-01-06 17:46:00.761 - debug: smartmeter.0 (17397) MATCH-RESULT MESSAGE: "7f7f7f" -> null
              2023-01-06 17:46:04.191 - debug: smartmeter.0 (17397) ADD NEW DATA (3 + NEW 1)
              2023-01-06 17:46:04.193 - debug: smartmeter.0 (17397) MATCH-RESULT MESSAGE: "7f7f7f7f" -> null
              2023-01-06 17:46:07.641 - debug: smartmeter.0 (17397) ADD NEW DATA (4 + NEW 1)
              2023-01-06 17:46:07.642 - debug: smartmeter.0 (17397) MATCH-RESULT MESSAGE: "7f7f7f7f7f" -> null
              2023-01-06 17:46:11.082 - debug: smartmeter.0 (17397) ADD NEW DATA (5 + NEW 1)
              2023-01-06 17:46:11.084 - debug: smartmeter.0 (17397) MATCH-RESULT MESSAGE: "7f7f7f7f7f7f" -> null
              2023-01-06 17:46:14.534 - debug: smartmeter.0 (17397) ADD NEW DATA (6 + NEW 1)
              2023-01-06 17:46:14.535 - debug: smartmeter.0 (17397) MATCH-RESULT MESSAGE: "7f7f7f7f7f7f7f" -> null
              2023-01-06 17:46:17.980 - debug: smartmeter.0 (17397) ADD NEW DATA (7 + NEW 1)
              2023-01-06 17:46:17.983 - debug: smartmeter.0 (17397) MATCH-RESULT MESSAGE: "7f7f7f7f7f7f7f7f" -> null
              2023-01-06 17:46:21.446 - debug: smartmeter.0 (17397) ADD NEW DATA (8 + NEW 1)
              2023-01-06 17:46:21.447 - debug: smartmeter.0 (17397) MATCH-RESULT MESSAGE: "7f7f7f7f7f7f7f7f7f" -> null
              2023-01-06 17:46:24.879 - debug: smartmeter.0 (17397) ADD NEW DATA (9 + NEW 1)
              2023-01-06 17:46:24.882 - debug: smartmeter.0 (17397) MATCH-RESULT MESSAGE: "7f7f7f7f7f7f7f7f7f7f" -> null
              2023-01-06 17:46:28.312 - debug: smartmeter.0 (17397) ADD NEW DATA (10 + NEW 1)
              2023-01-06 17:46:28.314 - debug: smartmeter.0 (17397) MATCH-RESULT MESSAGE: "7f7f7f7f7f7f7f7f7f7f7f" -> null
              2023-01-06 17:46:31.700 - debug: smartmeter.0 (17397) ADD NEW DATA (11 + NEW 1)
              2023-01-06 17:46:31.702 - debug: smartmeter.0 (17397) MATCH-RESULT MESSAGE: "7f7f7f7f7f7f7f7f7f7f7f7f" -> null
              2023-01-06 17:46:35.118 - debug: smartmeter.0 (17397) ADD NEW DATA (12 + NEW 1)
              2023-01-06 17:46:35.119 - debug: smartmeter.0 (17397) MATCH-RESULT MESSAGE: "7f7f7f7f7f7f7f7f7f7f7f7f7f" -> null
              2023-01-06 17:46:38.558 - debug: smartmeter.0 (17397) ADD NEW DATA (13 + NEW 1)
              2023-01-06 17:46:38.559 - debug: smartmeter.0 (17397) MATCH-RESULT MESSAGE: "7f7f7f7f7f7f7f7f7f7f7f7f7f7f" -> null
              2023-01-06 17:46:41.988 - debug: smartmeter.0 (17397) ADD NEW DATA (14 + NEW 1)
              2023-01-06 17:46:41.989 - debug: smartmeter.0 (17397) MATCH-RESULT MESSAGE: "7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f" -> null
              2023-01-06 17:46:45.432 - debug: smartmeter.0 (17397) ADD NEW DATA (15 + NEW 1)
              2023-01-06 17:46:45.434 - debug: smartmeter.0 (17397) MATCH-RESULT MESSAGE: "7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f" -> null
              2023-01-06 17:46:48.876 - debug: smartmeter.0 (17397) ADD NEW DATA (16 + NEW 1)
              2023-01-06 17:46:48.878 - debug: smartmeter.0 (17397) MATCH-RESULT MESSAGE: "7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f" -> null
              2023-01-06 17:46:52.314 - debug: smartmeter.0 (17397) ADD NEW DATA (17 + NEW 1)
              2023-01-06 17:46:52.316 - debug: smartmeter.0 (17397) MATCH-RESULT MESSAGE: "7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f" -> null
              2023-01-06 17:46:55.763 - debug: smartmeter.0 (17397) ADD NEW DATA (18 + NEW 1)
              2023-01-06 17:46:55.764 - debug: smartmeter.0 (17397) MATCH-RESULT MESSAGE: "7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f" -> null
              2023-01-06 17:46:59.217 - debug: smartmeter.0 (17397) ADD NEW DATA (19 + NEW 1)
              2023-01-06 17:46:59.218 - debug: smartmeter.0 (17397) MATCH-RESULT MESSAGE: "7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f" -> null
              2023-01-06 17:47:02.676 - debug: smartmeter.0 (17397) ADD NEW DATA (20 + NEW 1)
              2023-01-06 17:47:02.678 - debug: smartmeter.0 (17397) MATCH-RESULT MESSAGE: "7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f" -> null
              2023-01-06 17:47:06.151 - debug: smartmeter.0 (17397) ADD NEW DATA (21 + NEW 1)
              2023-01-06 17:47:06.153 - debug: smartmeter.0 (17397) MATCH-RESULT MESSAGE: "7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f" -> null
              2023-01-06 17:47:09.600 - debug: smartmeter.0 (17397) ADD NEW DATA (22 + NEW 1)
              2023-01-06 17:47:09.602 - debug: smartmeter.0 (17397) MATCH-RESULT MESSAGE: "7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f" -> null
              2023-01-06 17:47:13.060 - debug: smartmeter.0 (17397) ADD NEW DATA (23 + NEW 1)
              2023-01-06 17:47:13.061 - debug: smartmeter.0 (17397) MATCH-RESULT MESSAGE: "7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f" -> null
              2023-01-06 17:47:16.527 - debug: smartmeter.0 (17397) ADD NEW DATA (24 + NEW 1)
              2023-01-06 17:47:16.528 - debug: smartmeter.0 (17397) MATCH-RESULT MESSAGE: "7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f" -> null
              2023-01-06 17:47:20.001 - debug: smartmeter.0 (17397) ADD NEW DATA (25 + NEW 1)
              2023-01-06 17:47:20.002 - debug: smartmeter.0 (17397) MATCH-RESULT MESSAGE: "7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f" -> null
              2023-01-06 17:47:23.455 - debug: smartmeter.0 (17397) ADD NEW DATA (26 + NEW 1)
              2023-01-06 17:47:23.457 - debug: smartmeter.0 (17397) MATCH-RESULT MESSAGE: "7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f" -> null
              2023-01-06 17:47:26.910 - debug: smartmeter.0 (17397) ADD NEW DATA (27 + NEW 1)
              2023-01-06 17:47:26.911 - debug: smartmeter.0 (17397) MATCH-RESULT MESSAGE: "7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f" -> null
              2023-01-06 17:47:30.310 - debug: smartmeter.0 (17397) ADD NEW DATA (28 + NEW 1)
              2023-01-06 17:47:30.311 - debug: smartmeter.0 (17397) MATCH-RESULT MESSAGE: "7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f" -> null
              2023-01-06 17:47:33.740 - debug: smartmeter.0 (17397) ADD NEW DATA (29 + NEW 1)
              2023-01-06 17:47:33.742 - debug: smartmeter.0 (17397) MATCH-RESULT MESSAGE: "7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f" -> null
              2023-01-06 17:47:37.200 - debug: smartmeter.0 (17397) ADD NEW DATA (30 + NEW 1)
              2023-01-06 17:47:37.202 - debug: smartmeter.0 (17397) MATCH-RESULT MESSAGE: "7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f" -> null
              2023-01-06 17:47:40.635 - debug: smartmeter.0 (17397) ADD NEW DATA (31 + NEW 1)
              2023-01-06 17:47:40.636 - debug: smartmeter.0 (17397) MATCH-RESULT MESSAGE: "7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f" -> null
              2023-01-06 17:47:44.100 - debug: smartmeter.0 (17397) ADD NEW DATA (32 + NEW 1)
              2023-01-06 17:47:44.101 - debug: smartmeter.0 (17397) MATCH-RESULT MESSAGE: "7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f" -> null
              2023-01-06 17:47:47.516 - debug: smartmeter.0 (17397) ADD NEW DATA (33 + NEW 1)
              2023-01-06 17:47:47.517 - debug: smartmeter.0 (17397) MATCH-RESULT MESSAGE: "7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f" -> null
              2023-01-06 17:47:50.974 - debug: smartmeter.0 (17397) ADD NEW DATA (34 + NEW 1)
              2023-01-06 17:47:50.975 - debug: smartmeter.0 (17397) MATCH-RESULT MESSAGE: "7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f" -> null
              2023-01-06 17:47:53.016 - debug: smartmeter.0 (17397) MESSAGE TIMEOUT TRIGGERED
              2023-01-06 17:47:53.017 - debug: smartmeter.0 (17397) Error: No or too long answer from Serial Device after last request.
              2023-01-06 17:47:53.020 - warn: smartmeter.0 (17397) No or too long answer from Serial Device after last request.
              2023-01-06 17:47:53.020 - debug: smartmeter.0 (17397) Error: No or too long answer from Serial Device after last request.
              2023-01-06 17:47:53.021 - debug: smartmeter.0 (17397) Transport Reset!! Restart = true
              2023-01-06 17:47:53.029 - debug: smartmeter.0 (17397) SERIALPORT CLOSE
              2023-01-06 17:47:53.031 - debug: smartmeter.0 (17397) SCHEDULE NEXT RUN IN 15s
              
              1 Reply Last reply Reply Quote 0
              • C
                Ceel last edited by

                Das sind meine Einstellungen

                Screenshot_2023-01-06-19-44-57-324-edit_com.android.chrome.jpg

                A 1 Reply Last reply Reply Quote 0
                • wendy2702
                  wendy2702 last edited by

                  Mal hier geschaut bzw. die Suche bemüht:

                  https://forum.iobroker.net/topic/4685/adapter-smartmeter/3030

                  1 Reply Last reply Reply Quote 0
                  • Homoran
                    Homoran Global Moderator Administrators @Alfonz_Ritzek last edited by

                    @alfonz_ritzek sagte in [Frage] Smartmeter D0 - Itron ACE3000 Typ260 antwortet nicht:

                    Ich habe das Testscript von Volkszähler zum testen genommen. Damit bekomme ich auch die Richtigen werte.

                    das ist Fehlerquelle No. 1!
                    bitte rebooten!

                    Vorher bitte signon keer kassen. die schickt der Adapter bereits
                    Was sonst noch leer bleiben muss vergesse ich beinD0 immer wieder.

                    1 Reply Last reply Reply Quote 0
                    • apollon77
                      apollon77 @Alfonz_Ritzek last edited by apollon77

                      @alfonz_ritzek bitte immer zuerst mit den Standardeinstellungen testen und nur da ändern wo es dann sinnvoll ist. Die anfrage mit /?! Ist Standard und daher das was du da reingeschrieben hast wieder rauswerfen bitte.

                      Die Hauptursache das es nicht geht ist wildes ändern von Einstellungen weil man denkt es hilft. Einfach lassen. Die Standard Einstellungen wenn man richtiges Format und seriellen Typ wählt passen zu 9x% einfach.

                      Also am besten instanz löschen und neu anlegen und default. Dann log damit bitte.

                      1 Reply Last reply Reply Quote 0
                      • A
                        Alfonz_Ritzek @Ceel last edited by

                        @ceel said in [Frage] Smartmeter D0 - Itron ACE3000 Typ260 antwortet nicht:

                        Das sind meine Einstellungen

                        Screenshot_2023-01-06-19-44-57-324-edit_com.android.chrome.jpg

                        mit den Einstellungen läuft es

                        apollon77 1 Reply Last reply Reply Quote 0
                        • apollon77
                          apollon77 @Alfonz_Ritzek last edited by

                          @alfonz_ritzek warum braucht man das überschreiben des d0 Modus und baudrate changeover? Wird an sich immer automatisch erkannt.

                          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

                          927
                          Online

                          31.6k
                          Users

                          79.6k
                          Topics

                          1.3m
                          Posts

                          6
                          11
                          433
                          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