Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. Entwicklung
    4. Adapter: Worx Landroid v2.x.x

    NEWS

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

    • ioBroker goes Matter ... Matter Adapter in Stable

    • Monatsrückblick - April 2025

    Adapter: Worx Landroid v2.x.x

    This topic has been deleted. Only users with topic management privileges can see it.
    • C
      Cosmicbase @hsteinme last edited by Cosmicbase

      @hsteinme
      Wird der 0_userdata.0.worx.blade_work_time_current erst befüllt wenn sich eine Differenz ergibt?
      Im Moment steht weder false noch 0 drin.
      Muss aber mit mähen auch noch warten weil ich frisch angesäht habe.
      Lediglich einen Kantenschnitt habe ich durchgeführt.

      Aber da hat sich auch nix an den Werten von

      worx.0.999999999999999999.rawMqtt.raw.blade_work_time
      und
      worx.0.999999999999999999.rawMqtt.raw.blade_work_time_reset

      geändert.😕

      Der Datenpunkt ist jetzt string statt number.
      JS wird unter Skripte/Common ausgeführt. Sollte doch richtig sein.
      Die Rechte 664 habe ich unberührt lassen.

      Kuck dir mal den Screenshot an.
      c8806c3f-08c4-4c93-87c2-4abe1d4f71f0-image.png

      hsteinme 1 Reply Last reply Reply Quote 0
      • hsteinme
        hsteinme @Cosmicbase last edited by

        @cosmicbase sagte in Adapter: Worx Landroid:

        Wird der 0_userdata.0.worx.blade_work_time_current erst befüllt wenn sich eine Differenz ergibt?

        Hier steht die Antwort, wann der private Datenpunkt gefüllt wird: https://forum.iobroker.net/post/639077

        @cosmicbase sagte in Adapter: Worx Landroid:

        Im Moment steht weder false noch 0 drin.

        String-Datenpunkte sind anfänglich immer leer.

        C 1 Reply Last reply Reply Quote 0
        • C
          Cosmicbase @hsteinme last edited by Cosmicbase

          @hsteinme
          Habe dein Skript ausgiebig getestet. Im Adapter ist eine Differenz vorhanden, jedoch das JS Skript spuckt immer noch 0,00h/min aus.
          Datenpunkt ist auch noch bei 0.
          Irgendwas muss im Skript noch nicht stimmen.
          Auch in der App wird unter Klingenlaufzeit 2h angezeigt, was ohne Umwandlung immerhin 120min wären.

          Unbenannt.PNG

          Hier sieht man das eine Differenz zwischen blade_work_time und blade_work_time_reset gebildet wurde.
          Daraus sollte das js Skript doch die Zeit in Minuten oder mit Umwandlung in h/min ausgeben.

          Ich werde heute noch das eingangs erwähnte Skript ohne Umwandlung probieren. Also nur die Ausgabe in Minuten.

          1 Reply Last reply Reply Quote 0
          • C
            Cosmicbase @hsteinme last edited by Cosmicbase

            @hsteinme said in Adapter: Worx Landroid:

            Für diesen Datenpunkt vergibst Du den Typ Zahl, keinen Maximalwert, keine Maßeinheit sowie Lese- und Schreibberechtigungen.

            Bedeutet keine Lese und Schreibberechtigung = 0 oder die typische Lese-Schreibberechtigung = 664 ?

            Kannst du nochmal einen Blich auf das oder die Skripte werfen?

            Der 0.Userdata DP bleibt auf Wert 0 bzw. 0:00 obwohl scheinbar die blade_time_current mit Daten befüllt wird.

            Unbenannt.PNG

            1 Reply Last reply Reply Quote 0
            • C
              Cosmicbase last edited by Cosmicbase

              Jetzt hab ich mal die 2 Datenpunkte nen Screenshoot gemacht.

              Unbenannt.PNG

              Unbenannt.PNG

              Einmal läuft ein JS mit der Umrechnung in h/min und einmal ganz normal in Minuten.
              Leider haben die Skripte zu keinem Zeitpunkt eine klare Differenz errechnet.

              hsteinme 1 Reply Last reply Reply Quote 0
              • hsteinme
                hsteinme @Cosmicbase last edited by

                @cosmicbase Sorry, in meinem Skript hatte das Fehlerteufelchen zugeschlagen. Bitte tausche die nachfolgend zitierte Zeile in dem Skript aus:

                alt:

                    setState(idBladeWorkTimeCurrent, stundenMinuten(getState('idBladeWorkTime').val - getState('idBladeWorkTimeReset').val));
                

                neu:

                    setState(idBladeWorkTimeCurrent, stundenMinuten(getState(idBladeWorkTime).val - getState(idBladeWorkTimeReset).val));
                

                Starte das geänderte Skript. lass Deinem Mäher eine halbe Stunde lang mähen und beobachte dabei den privaten Datenpunkt nach frühestens 10 Minuten.

                C 1 Reply Last reply Reply Quote 0
                • C
                  Cosmicbase @hsteinme last edited by Cosmicbase

                  @hsteinme said in Adapter: Worx Landroid:

                  setState(idBladeWorkTimeCurrent, stundenMinuten(getState(idBladeWorkTime).val - getState(idBladeWorkTimeReset).val));

                  Super das es jetzt klappt. Zumindest nach dem ich das JS und den Adapter neu gestartet habe war es vollendet (siehe Bild).
                  Läuft der manuelle Kantenschnitt auch die Klingenzeit mit ein?

                  Das ganze könnte man auch mit dem Batterie cycle machen!

                  Kannst du mir das im Skript anpassen mit den stundenMinuten? Sollten ja Ladezyklen sein und keine Zeit.

                  'use strict';
                  
                  const idBatterieCycleTime = 'worx.0.99999999999999999.rawMqtt.raw.battery_charge_cycles';
                  const idBatterieCycleTimeReset = 'worx.0.99999999999999999.rawMqtt.raw.battery_charge_cycles_reset';
                  const idBatterieCycleTimeCurrent = '0_userdata.0.worx.batterie_cycle_time_current';
                  
                  on ({id: [idBatterieCycleTime, idBatterieCycleTimeReset], change: 'ne'}, function() {
                  setState(idBatterieCycleTimeCurrent, stundenMinuten(getState(idBatterieCycleTime).val - getState(idBatterieCycleTimeReset).val));
                  })
                  

                  Danke für deine Arbeit.

                  Unbenannt.PNG

                  PS:

                  Was ich bemerkt habe das auch nach 30 Minuten mähen sich nichts an den Raw Werten geändert hat. Scheinbar werden die Daten von der Cloud nur unregelmäßig zur Verfügung gestellt. Könnte natürlich auch sein das die Klingenzeit immer erst beim erreichen der vollen Stundnzahl aktualisiert wird. Schließlich wird sie in der App auch nur mit Stunden angezeigt.

                  Neues Update:

                  Wie du schon im GitHub geschrieben hast hat sich irgendwo bei der Bereitstellung der Daten aus der Cloud ein Fehler eingeschlichen.
                  Habe einen Klingenreset gemacht und dann ist die Klingenzeit ins Minus gegangen weil der Reset Wert höher ist als die tatsächliche Klingenzeit. Ich weiß das dies zwar wieder überschrieben wird, aber irgendwie komisch.
                  Hoffe das hier irgendwas verbessert wird.

                  hsteinme 1 Reply Last reply Reply Quote 0
                  • hsteinme
                    hsteinme @Cosmicbase last edited by

                    @cosmicbase sagte in Adapter: Worx Landroid:

                    Das ganze könnte man auch mit dem Batterie cycle machen!
                    Kannst du mir das im Skript anpassen mit den stundenMinuten? Sollten ja Ladezyklen sein und keine Zeit.

                    Dann schmeiß halt stundenMinuten mit dem zugehörigen Klammernpaar aus dem Skript raus.

                    Nebenbei; Die Verwendung von "time" in der Benamsung des privaten Datenpunktes und der Variablen ist extrem unglücklich, denn "Sollten ja Ladezyklen sein und keine Zeit."

                    C 1 Reply Last reply Reply Quote 0
                    • C
                      Cosmicbase @hsteinme last edited by Cosmicbase

                      @hsteinme

                      'use strict';
                       
                      const idBatterieCycleTime = 'worx.0.9999999999999999.rawMqtt.raw.battery_charge_cycles';
                      const idBatterieCycleTimeReset = 'worx.0.9999999999999999.rawMqtt.raw.battery_charge_cycles_reset';
                      const idBatterieCycleTimeCurrent = '0_userdata.0.worx.batterie_cycle_time_current';
                      
                      on ({id: [idBatterieCycleTime, idBatterieCycleTimeReset], change: 'ne'}, function() {
                          setState(idBatterieCycleTimeCurrent, getState(idBatterieCycleTime).val - getState(idBatterieCycleTimeReset).val);
                      })
                      

                      So funktioniert auch die Batterie Cycle.

                      Aber was mich ein wenig anwiedert ist die Tatsache das mal die Reset Werte unter RAW größer mal kleiner sind.
                      So kommt es im privaten DP zu einem Minus Wert.

                      FINDE DEN FEHLER, bzw. DIE FEHLER!!!

                      Unbenannt.PNG

                      Wie kann man dem Problem entgegen wirken das die Werte sich nicht immer drehen?
                      Und warum werden die RAW Werte so zögerlich aktualisiert?

                      Eventuell im JS ne Funktion das immer automatisch der größte Wert subtrahiert wird?

                      Interessanterweise ist in der App immer alles richtig dargestellt...

                      Screenshot_20210616_012313_it.positec.landroid.jpg

                      hsteinme 1 Reply Last reply Reply Quote 0
                      • hsteinme
                        hsteinme @Cosmicbase last edited by

                        @cosmicbase sagte in Adapter: Worx Landroid:

                        Aber was mich ein wenig anwiedert

                        Geht's nicht auch 'ne Nummer kleiner?

                        1 Reply Last reply Reply Quote 0
                        • R
                          RalfEngelberth last edited by RalfEngelberth

                          Hallo, ich habe folgendes Problem.
                          Bis lang hat der Worksadapter bei mir prima funktionier.
                          Seit dem letzten Gesamtupdate von IoBroker sowie auch JS Contoler funktioniert meine Ansteuerung über VIS an den Mäher nicht mehr.
                          Ich habe mich über den Worksadapter bei Works angemeldet.
                          9561d93a-7bf8-4a44-a81f-45260f098d7f-image.png

                          Die Datenpunkte (welche ich auch schon mal komplett gelöscht habe) wurden auch angelegt.
                          60f76973-0110-4a75-a3ff-7e3c0ec4f974-image.png

                          Hier erfolgt aber keine Aktualisierung.

                          Im Protokoll habe ich mehrere Fehlermeldungen

                          Was mich wundert, die Seriennummer in den Objekten endet mit der *****1286
                          Im Fehlerprotokoll endet aber die Seriennummer mit ****3000
                          3b93c3fd-c31d-4cae-bd42-ff1857a59eb0-image.png

                          Hat jemand eine Lösung?

                          1 Reply Last reply Reply Quote 0
                          • R
                            RalfEngelberth last edited by

                            Hat keiner eine Lösung?

                            arteck 1 Reply Last reply Reply Quote 0
                            • arteck
                              arteck Developer Most Active @RalfEngelberth last edited by arteck

                              @ralfengelberth welcheist den jetzt dir richtige ?

                              ausserdem ist es schnuppe ob du die nummer maskeirst oder nicht.. kann ehh keiner was mit angangen

                              R 1 Reply Last reply Reply Quote 0
                              • R
                                RalfEngelberth @arteck last edited by

                                @arteck Das in den Objekten
                                Die 3000 in der Log gibt es nicht

                                arteck 1 Reply Last reply Reply Quote 0
                                • arteck
                                  arteck Developer Most Active @RalfEngelberth last edited by

                                  @ralfengelberth nein welche ist denn jetzt die die zu DEINEM Worx gehört.. ich meine ist die sereinnummer

                                  R 1 Reply Last reply Reply Quote 0
                                  • R
                                    RalfEngelberth @arteck last edited by

                                    @arteck 20193019840102591286

                                    arteck 1 Reply Last reply Reply Quote 0
                                    • arteck
                                      arteck Developer Most Active @RalfEngelberth last edited by

                                      @ralfengelberth zeimgal komplett mal die LOG meldung
                                      oder hast du 2 von den mähern ?

                                      R 1 Reply Last reply Reply Quote 0
                                      • R
                                        RalfEngelberth @arteck last edited by

                                        @arteck Ich habe nur einen Mäher

                                        
                                        worx.0
                                        4156	2021-06-18 22:58:26.817	warn	State "worx.0.20193019840102593000.mower.online" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:57:26.764	warn	State "worx.0.20193019840102593000.mower.online" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:56:26.814	warn	State "worx.0.20193019840102593000.mower.online" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:55:26.775	warn	State "worx.0.20193019840102593000.mower.online" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:54:26.812	warn	State "worx.0.20193019840102593000.mower.online" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:53:26.800	warn	State "worx.0.20193019840102593000.mower.online" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:52:26.808	warn	State "worx.0.20193019840102593000.mower.online" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:51:26.770	warn	State "worx.0.20193019840102593000.mower.online" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:26.774	warn	State "worx.0.20193019840102593000.mower.online" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.782	warn	State "worx.0.20193019840102593000.calendar.calJson2" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.781	warn	State "worx.0.20193019840102593000.calendar.calJson" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.781	warn	State "worx.0.20193019840102593000.mower.partyModus" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.781	warn	State "worx.0.20193019840102593000.mower.oneTimeJson" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.780	warn	State "worx.0.20193019840102593000.mower.oneTimeWorkTime" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.780	warn	State "worx.0.20193019840102593000.mower.oneTimeWithBorder" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.779	warn	State "worx.0.20193019840102593000.calendar.saturday2.borderCut" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.779	warn	State "worx.0.20193019840102593000.calendar.saturday2.workTime" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.779	warn	State "worx.0.20193019840102593000.calendar.saturday2.startTime" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.778	warn	State "worx.0.20193019840102593000.calendar.friday2.borderCut" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.777	warn	State "worx.0.20193019840102593000.calendar.friday2.workTime" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.777	warn	State "worx.0.20193019840102593000.calendar.friday2.startTime" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.776	warn	State "worx.0.20193019840102593000.calendar.thursday2.borderCut" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.776	warn	State "worx.0.20193019840102593000.calendar.thursday2.workTime" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.774	warn	State "worx.0.20193019840102593000.calendar.thursday2.startTime" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.773	warn	State "worx.0.20193019840102593000.calendar.wednesday2.borderCut" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.772	warn	State "worx.0.20193019840102593000.calendar.wednesday2.workTime" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.772	warn	State "worx.0.20193019840102593000.calendar.wednesday2.startTime" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.771	warn	State "worx.0.20193019840102593000.calendar.tuesday2.borderCut" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.771	warn	State "worx.0.20193019840102593000.calendar.tuesday2.workTime" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.770	warn	State "worx.0.20193019840102593000.calendar.tuesday2.startTime" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.770	warn	State "worx.0.20193019840102593000.calendar.monday2.borderCut" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.769	warn	State "worx.0.20193019840102593000.calendar.monday2.workTime" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.768	warn	State "worx.0.20193019840102593000.calendar.monday2.startTime" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.768	warn	State "worx.0.20193019840102593000.calendar.sunday2.borderCut" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.767	warn	State "worx.0.20193019840102593000.calendar.sunday2.workTime" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.759	warn	State "worx.0.20193019840102593000.calendar.sunday2.startTime" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.758	warn	State "worx.0.20193019840102593000.calendar.saturday.borderCut" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.757	warn	State "worx.0.20193019840102593000.calendar.saturday.workTime" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.757	warn	State "worx.0.20193019840102593000.calendar.saturday.startTime" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.756	warn	State "worx.0.20193019840102593000.calendar.friday.borderCut" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.755	warn	State "worx.0.20193019840102593000.calendar.friday.workTime" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.753	warn	State "worx.0.20193019840102593000.calendar.friday.startTime" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.753	warn	State "worx.0.20193019840102593000.calendar.thursday.borderCut" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.752	warn	State "worx.0.20193019840102593000.calendar.thursday.workTime" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.750	warn	State "worx.0.20193019840102593000.calendar.thursday.startTime" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.750	warn	State "worx.0.20193019840102593000.calendar.wednesday.borderCut" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.749	warn	State "worx.0.20193019840102593000.calendar.wednesday.workTime" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.749	warn	State "worx.0.20193019840102593000.calendar.wednesday.startTime" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.748	warn	State "worx.0.20193019840102593000.calendar.tuesday.borderCut" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.747	warn	State "worx.0.20193019840102593000.calendar.tuesday.workTime" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.747	warn	State "worx.0.20193019840102593000.calendar.tuesday.startTime" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.745	warn	State "worx.0.20193019840102593000.calendar.monday.borderCut" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.744	warn	State "worx.0.20193019840102593000.calendar.monday.workTime" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.744	warn	State "worx.0.20193019840102593000.calendar.monday.startTime" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.744	warn	State "worx.0.20193019840102593000.calendar.sunday.borderCut" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.743	warn	State "worx.0.20193019840102593000.calendar.sunday.workTime" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.743	warn	State "worx.0.20193019840102593000.calendar.sunday.startTime" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.742	warn	State "worx.0.20193019840102593000.mower.state" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.742	warn	State "worx.0.20193019840102593000.areas.startSequence" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.742	warn	State "worx.0.20193019840102593000.mower.batteryState" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.741	warn	State "worx.0.20193019840102593000.mower.waitRain" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.741	warn	State "worx.0.20193019840102593000.mower.firmware" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.740	warn	State "worx.0.20193019840102593000.areas.actualAreaIndicator" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.740	warn	State "worx.0.20193019840102593000.areas.actualArea" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.740	warn	State "worx.0.20193019840102593000.areas.area_3" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.739	warn	State "worx.0.20193019840102593000.areas.area_2" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.732	warn	State "worx.0.20193019840102593000.areas.area_1" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.732	warn	State "worx.0.20193019840102593000.areas.area_0" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.731	warn	State "worx.0.20193019840102593000.mower.mowTimeExtend" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.730	warn	State "worx.0.20193019840102593000.mower.mowerActive" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.730	warn	State "worx.0.20193019840102593000.mower.wifiQuality" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.729	warn	State "worx.0.20193019840102593000.mower.status" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.729	warn	State "worx.0.20193019840102593000.mower.error" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.728	warn	State "worx.0.20193019840102593000.mower.batteryTemperature" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.728	warn	State "worx.0.20193019840102593000.mower.batteryVoltage" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.727	warn	State "worx.0.20193019840102593000.mower.batteryCharging" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.726	warn	State "worx.0.20193019840102593000.mower.batteryChargeCycle" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.726	warn	State "worx.0.20193019840102593000.mower.direction" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.725	warn	State "worx.0.20193019840102593000.mower.inclination" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.725	warn	State "worx.0.20193019840102593000.mower.gradient" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.724	warn	State "worx.0.20193019840102593000.mower.totalBladeTime" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.723	warn	State "worx.0.20193019840102593000.mower.totalDistance" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:50:05.722	warn	State "worx.0.20193019840102593000.mower.totalTime" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:49:26.779	warn	State "worx.0.20193019840102593000.mower.online" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:48:26.762	warn	State "worx.0.20193019840102593000.mower.online" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:47:26.753	warn	State "worx.0.20193019840102593000.mower.online" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:46:26.781	warn	State "worx.0.20193019840102593000.mower.online" has no existing object, this might lead to an error in future versions
                                        
                                        worx.0
                                        4156	2021-06-18 22:45:26.780	warn	State "worx.0.20193019840102593000.mower.online" has no existing object, this might lead to an error in future versions
                                        
                                        arteck 1 Reply Last reply Reply Quote 0
                                        • arteck
                                          arteck Developer Most Active @RalfEngelberth last edited by arteck

                                          @ralfengelberth schauml in der app unter Geräteinfo.. welches steht da ??
                                          die 20193019840102591286 oder die andere

                                          ich hoffe du hast den adapter mal neu gestartet ? nach dem löschen der objecte

                                          R 1 Reply Last reply Reply Quote 0
                                          • R
                                            RalfEngelberth @arteck last edited by

                                            @arteck In der APP steht auch diese 20193019840102591286
                                            Nach dem Löschen habe ich den Adapter schon mehrmals neu gestartet

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

                                            Support us

                                            ioBroker
                                            Community Adapters
                                            Donate

                                            789
                                            Online

                                            31.7k
                                            Users

                                            79.8k
                                            Topics

                                            1.3m
                                            Posts

                                            121
                                            1194
                                            381857
                                            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