Skip to content
  • Recent
  • Tags
  • 0 Unread 0
  • Categories
  • Unreplied
  • Popular
  • GitHub
  • Docu
  • Hilfe
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Logo
  1. ioBroker Community Home
  2. Deutsch
  3. Entwicklung
  4. Adapter: Worx Landroid v2.x.x

NEWS

  • UPDATE 31.10.: Amazon Alexa - ioBroker Skill läuft aus ?
    apollon77A
    apollon77
    48
    3
    8.0k

  • Monatsrückblick – September 2025
    BluefoxB
    Bluefox
    13
    1
    1.8k

  • Neues Video "KI im Smart Home" - ioBroker plus n8n
    BluefoxB
    Bluefox
    15
    1
    2.0k

Adapter: Worx Landroid v2.x.x

Scheduled Pinned Locked Moved Entwicklung
1.2k Posts 121 Posters 458.9k Views 64 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • hsteinmeH hsteinme

    @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 Offline
    C Offline
    Cosmicbase
    wrote on last edited by Cosmicbase
    #361

    @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
    0
    • hsteinmeH hsteinme

      @cosmicbase Ich arbeite nicht mit Node-Red.

      In der worx Adapter Version 1.3.7 benötigst Du folgende Datenpunkte

      • worx.0.99999999999999999999.rawMqtt.raw.blade_work_time: Gesamtklingenlaufzeit
      • worx.0.99999999999999999999.rawMqtt.raw.blade_work_time_reset: Klingenlaufzeit beim letzten Reset

      Jetzt benötigst Du noch einen eigenen privaten Datenpunkt, den Du unter javascript.0 oder unter 0_userdata.0 selbst manuell im Objektbaum anlegen musst, z.B.

      0_userdata.0.MyWorx.99999999999999999999.blade_work_time_current

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

      'use strict';
      
      const idBladeWorkTime = 'worx.0.99999999999999999999.rawMqtt.raw.blade_work_time';
      const idBladeWorkTimeReset = 'worx.0.99999999999999999999.rawMqtt.raw.blade_work_time_reset';
      const idBladeWorkTimeCurrent = '0_userdata.0.MyWorx.99999999999999999999.blade_work_time_current';
      
      on ({id: [idBladeWorkTime, idBladeWorkTimeReset], change: 'ne'}, function() {
          setState(idBladeWorkTimeCurrent, getState('idBladeWorkTime').val - getState('idBladeWorkTimeReset').val);
      })
      

      Dieses Skript muss immer laufen. Immer dann, wenn sich der Wert von idBladeWorkTime oder der Wert von idBladeWorkTimeReset ändert, berechnet das Skript die Differenz dieser beiden Werte neu und stellt diese im Datenpunkt idBladeWorkTimeCurrent ab.

      Mit Deinem privaten Datenpunkt kannst Du nun arbeiten wie mit anderen Datenpunkten. Insbesondere kannst Du diesen Datenpunkt in der Vis darstellen.

      C Offline
      C Offline
      Cosmicbase
      wrote on last edited by Cosmicbase
      #362

      @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
      0
      • C Offline
        C Offline
        Cosmicbase
        wrote on last edited by Cosmicbase
        #363

        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.

        hsteinmeH 1 Reply Last reply
        0
        • C 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.

          hsteinmeH Offline
          hsteinmeH Offline
          hsteinme
          wrote on last edited by
          #364

          @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
          0
          • hsteinmeH hsteinme

            @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 Offline
            C Offline
            Cosmicbase
            wrote on last edited by Cosmicbase
            #365

            @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.

            hsteinmeH 1 Reply Last reply
            0
            • C 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.

              hsteinmeH Offline
              hsteinmeH Offline
              hsteinme
              wrote on last edited by
              #366

              @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
              0
              • hsteinmeH hsteinme

                @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 Offline
                C Offline
                Cosmicbase
                wrote on last edited by Cosmicbase
                #367

                @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

                hsteinmeH 1 Reply Last reply
                0
                • C 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

                  hsteinmeH Offline
                  hsteinmeH Offline
                  hsteinme
                  wrote on last edited by
                  #368

                  @cosmicbase sagte in Adapter: Worx Landroid:

                  Aber was mich ein wenig anwiedert

                  Geht's nicht auch 'ne Nummer kleiner?

                  1 Reply Last reply
                  0
                  • R Offline
                    R Offline
                    RalfEngelberth
                    wrote on last edited by RalfEngelberth
                    #369

                    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
                    0
                    • R Offline
                      R Offline
                      RalfEngelberth
                      wrote on last edited by
                      #370

                      Hat keiner eine Lösung?

                      arteckA 1 Reply Last reply
                      0
                      • R RalfEngelberth

                        Hat keiner eine Lösung?

                        arteckA Offline
                        arteckA Offline
                        arteck
                        Developer Most Active
                        wrote on last edited by arteck
                        #371

                        @ralfengelberth welcheist den jetzt dir richtige ?

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

                        zigbee hab ich, zwave auch, nuc's genauso und HA auch

                        R 1 Reply Last reply
                        0
                        • arteckA 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 Offline
                          R Offline
                          RalfEngelberth
                          wrote on last edited by
                          #372

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

                          arteckA 1 Reply Last reply
                          0
                          • R RalfEngelberth

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

                            arteckA Offline
                            arteckA Offline
                            arteck
                            Developer Most Active
                            wrote on last edited by
                            #373

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

                            zigbee hab ich, zwave auch, nuc's genauso und HA auch

                            R 1 Reply Last reply
                            0
                            • arteckA arteck

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

                              R Offline
                              R Offline
                              RalfEngelberth
                              wrote on last edited by
                              #374

                              @arteck 20193019840102591286

                              arteckA 1 Reply Last reply
                              0
                              • R RalfEngelberth

                                @arteck 20193019840102591286

                                arteckA Offline
                                arteckA Offline
                                arteck
                                Developer Most Active
                                wrote on last edited by
                                #375

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

                                zigbee hab ich, zwave auch, nuc's genauso und HA auch

                                R 1 Reply Last reply
                                0
                                • arteckA arteck

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

                                  R Offline
                                  R Offline
                                  RalfEngelberth
                                  wrote on last edited by
                                  #376

                                  @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
                                  
                                  arteckA 1 Reply Last reply
                                  0
                                  • R RalfEngelberth

                                    @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
                                    
                                    arteckA Offline
                                    arteckA Offline
                                    arteck
                                    Developer Most Active
                                    wrote on last edited by arteck
                                    #377

                                    @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

                                    zigbee hab ich, zwave auch, nuc's genauso und HA auch

                                    R 1 Reply Last reply
                                    0
                                    • arteckA 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 Offline
                                      R Offline
                                      RalfEngelberth
                                      wrote on last edited by
                                      #378

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

                                      arteckA 1 Reply Last reply
                                      0
                                      • R RalfEngelberth

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

                                        arteckA Offline
                                        arteckA Offline
                                        arteck
                                        Developer Most Active
                                        wrote on last edited by arteck
                                        #379

                                        @ralfengelberth hmm.. komisch.. wo kommt dann die 20193019840102593000 her ?

                                        und du hast

                                        adapter stop
                                        objekte löschen
                                        dann adapter start

                                        gemacht ?

                                        wie gesagt kmisch ist dass die nummer die du angeblich gelöscht hast 20193019840102593000 nicht dir gehört..und da das die sereinnummer den robi ist..finde ich es erst recht komisch ..

                                        dann geh version zurück...

                                        zigbee hab ich, zwave auch, nuc's genauso und HA auch

                                        R 3 Replies Last reply
                                        0
                                        • arteckA arteck

                                          @ralfengelberth hmm.. komisch.. wo kommt dann die 20193019840102593000 her ?

                                          und du hast

                                          adapter stop
                                          objekte löschen
                                          dann adapter start

                                          gemacht ?

                                          wie gesagt kmisch ist dass die nummer die du angeblich gelöscht hast 20193019840102593000 nicht dir gehört..und da das die sereinnummer den robi ist..finde ich es erst recht komisch ..

                                          dann geh version zurück...

                                          R Offline
                                          R Offline
                                          RalfEngelberth
                                          wrote on last edited by
                                          #380

                                          @arteck wenn ich das wüste.
                                          Bis vor dem Update hat ja noch alles funktioniert

                                          MeistertrM 1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          Support us

                                          ioBroker
                                          Community Adapters
                                          Donate

                                          634

                                          Online

                                          32.4k

                                          Users

                                          81.4k

                                          Topics

                                          1.3m

                                          Posts
                                          Community
                                          Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen
                                          ioBroker Community 2014-2025
                                          logo
                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Recent
                                          • Tags
                                          • Unread 0
                                          • Categories
                                          • Unreplied
                                          • Popular
                                          • GitHub
                                          • Docu
                                          • Hilfe