Skip to content
  • Home
  • 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
ioBroker Logo

Community Forum

donate donate
  1. ioBroker Community Home
  2. Deutsch
  3. Tester
  4. Test Adapter Husqvarna Automower v0.3.x

NEWS

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

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

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

Test Adapter Husqvarna Automower v0.3.x

Scheduled Pinned Locked Moved Tester
husqvarnaautomower
439 Posts 73 Posters 106.1k Views 62 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.
  • greyhoundG greyhound

    Danke für die Rückmeldung. Für mich auch wichtig, wenn er sich festgefahren hat (Nachbarn informieren) oder der Regensensor anschlägt.

    Wohne über 200 km vom Einsatzort entfernt und da "zählt" jede Info.

    Gruß

    GH

    Dominic ReberD Offline
    Dominic ReberD Offline
    Dominic Reber
    wrote on last edited by Dominic Reber
    #203

    Hallo zusammen

    Habe einen Automower 420 und versuche den jetzt einzubinden in IoBroker.
    Funktioniert soweit auch, er hat alle States generiert und zeigt vernünftige Werte an.

    Wenn ich jetzt mit action = 1 ihn rausschicke, geht auch das, aber komischerweise krieg ich bei den Werten sonst kein Update.

    Hab eingestellt, dass er alle 10 Sekunden updaten soll, aber husq-automower.0.mower.http_request_count_day geht nur sporadisch rauf - ich geh mal davon aus, dass der dann alle 10 Sekunden um 1 hochgehen sollte?

    Wenn ich den Adapter neustarte, dann holt er ein Update und geht dort auch hoch.

    Hab auch action = 92 gesetzt, aber da passiert auch nichts.
    Mit action = 9 müsste man eine Einzelabfrage machen können, richtig?

    Log zeigt nichts an. und husq-automower.0.mower.http_request_count_day_error zeigt 0 und husq-automower.0.mower.http_request_count_day_success den gleichen wert wie request_count_day.

    Also funktionieren täte es, aber die requests werden nicht gemacht irgendwie.

    Einer eine Idee?

    Danke

    Dominic ReberD 1 Reply Last reply
    0
    • Dominic ReberD Dominic Reber

      Hallo zusammen

      Habe einen Automower 420 und versuche den jetzt einzubinden in IoBroker.
      Funktioniert soweit auch, er hat alle States generiert und zeigt vernünftige Werte an.

      Wenn ich jetzt mit action = 1 ihn rausschicke, geht auch das, aber komischerweise krieg ich bei den Werten sonst kein Update.

      Hab eingestellt, dass er alle 10 Sekunden updaten soll, aber husq-automower.0.mower.http_request_count_day geht nur sporadisch rauf - ich geh mal davon aus, dass der dann alle 10 Sekunden um 1 hochgehen sollte?

      Wenn ich den Adapter neustarte, dann holt er ein Update und geht dort auch hoch.

      Hab auch action = 92 gesetzt, aber da passiert auch nichts.
      Mit action = 9 müsste man eine Einzelabfrage machen können, richtig?

      Log zeigt nichts an. und husq-automower.0.mower.http_request_count_day_error zeigt 0 und husq-automower.0.mower.http_request_count_day_success den gleichen wert wie request_count_day.

      Also funktionieren täte es, aber die requests werden nicht gemacht irgendwie.

      Einer eine Idee?

      Danke

      Dominic ReberD Offline
      Dominic ReberD Offline
      Dominic Reber
      wrote on last edited by
      #204

      @dominic-reber
      Bei mir scheint der Scheduler nicht so zu wollen wie ich. Hab mir jetzt selbst ein Skript gemacht:

      var path ='husq-automower.0.mower.action';
      var cron = ' */1 * * * * ';
      var checkEachXSeconds = 1;
      var Crontst = schedule(cron, function () {
          console.debug('Cron started');
          var i = 1;
          CheckHusqvarna(i);
      });
      
      function CheckHusqvarna(i){
          console.debug('Checking (' + i + ')');
          setState(path,91);
          sleep(100);
          setState(path,9);
          if( i < (60 / checkEachXSeconds)){
              i +=1;
              setTimeout(() =>CheckHusqvarna(i),checkEachXSeconds * 1000);
          }
        }
      

      So wird der Status jede Sekunde (setze es ev. etwas runter auf 5 Sekunden) abgefragt.
      Ich muss dabei jeweils 91 senden, denn er sagt bei mir, dass der Scheduler läuft (aber der gibt mir keine werte zurück).
      Also 91 und dann 9 und dann ruft er korrekt ab.

      Cron wird jede Minute ausgeführt und dann die Funktion 60 / anzahl sekunden ausgeführt.

      D greyhoundG 2 Replies Last reply
      0
      • Dominic ReberD Dominic Reber

        @dominic-reber
        Bei mir scheint der Scheduler nicht so zu wollen wie ich. Hab mir jetzt selbst ein Skript gemacht:

        var path ='husq-automower.0.mower.action';
        var cron = ' */1 * * * * ';
        var checkEachXSeconds = 1;
        var Crontst = schedule(cron, function () {
            console.debug('Cron started');
            var i = 1;
            CheckHusqvarna(i);
        });
        
        function CheckHusqvarna(i){
            console.debug('Checking (' + i + ')');
            setState(path,91);
            sleep(100);
            setState(path,9);
            if( i < (60 / checkEachXSeconds)){
                i +=1;
                setTimeout(() =>CheckHusqvarna(i),checkEachXSeconds * 1000);
            }
          }
        

        So wird der Status jede Sekunde (setze es ev. etwas runter auf 5 Sekunden) abgefragt.
        Ich muss dabei jeweils 91 senden, denn er sagt bei mir, dass der Scheduler läuft (aber der gibt mir keine werte zurück).
        Also 91 und dann 9 und dann ruft er korrekt ab.

        Cron wird jede Minute ausgeführt und dann die Funktion 60 / anzahl sekunden ausgeführt.

        D Offline
        D Offline
        digidax
        wrote on last edited by digidax
        #205

        Hallo zusammen,
        habe einen 430x und lese über IO Broker die Daten von der API, sende diese dann an Node Red wo ich diese in eine MYSQL DB per Update schreibe. Ich habe so den aktuellen Stand der für mich relevanten Daten. Ein Trigger beobachtet diese Tabelle. Bei einer Änderung logt er diese in eine weitere Tabelle. Läuft also perfekt.

        Nun würde ich gern den Mower steuern. Der status ist das IO Broker Objekt:
        husq-automower/0/mower/action

        In Node Red sende ich die Topic
        husq-automower/0/mower/action mit den Pyload 3 (parken), jedoch bleibt der Status des Objektes bei 0

        Sende ich direkt an den MQTT Broker mit der Topic mqtt.0.test1 den Wert 3, sehe ich auch das entsprechende Objet mqtt.0.test1 mit dem Wert von 3 im IO Broker.

        Ich habe jetzt auch mal im MQTT client des Objektes die Topic abboniert (der MQTT server ist node red) und dort den Payloa an die Topic gesendet, jedoch bleibt der Status immer noch 0.

        Das sind die RAW Daten für das Objekt:

        {
          "from": "system.adapter.husq-automower.0",
          "user": "system.user.admin",
          "ts": 1620646296907,
          "common": {
            "name": "mower.action",
            "desc": "mower.action",
            "type": "number",
            "read": true,
            "write": true,
            "custom": {
              "mqtt-client.0": {
                "enabled": true,
                "topic": "husq-automower/0/mower/action",
                "publish": false,
                "pubChangesOnly": false,
                "pubAsObject": false,
                "qos": 0,
                "retain": false,
                "subscribe": true,
                "subChangesOnly": false,
                "subAsObject": false,
                "subQos": 2,
                "setAck": true
              }
            }
          },
          "native": {
            "id": "mower.action"
          },
          "acl": {
            "object": 1638,
            "owner": "system.user.admin",
            "ownerGroup": "system.group.administrator",
            "state": 1638
          },
          "_id": "husq-automower.0.mower.action",
          "type": "state"
        }
        

        Was mache ich falsch? Danke für die Hilfe.
        lg Frank

        BoronsbruderB greyhoundG 2 Replies Last reply
        0
        • D digidax

          Hallo zusammen,
          habe einen 430x und lese über IO Broker die Daten von der API, sende diese dann an Node Red wo ich diese in eine MYSQL DB per Update schreibe. Ich habe so den aktuellen Stand der für mich relevanten Daten. Ein Trigger beobachtet diese Tabelle. Bei einer Änderung logt er diese in eine weitere Tabelle. Läuft also perfekt.

          Nun würde ich gern den Mower steuern. Der status ist das IO Broker Objekt:
          husq-automower/0/mower/action

          In Node Red sende ich die Topic
          husq-automower/0/mower/action mit den Pyload 3 (parken), jedoch bleibt der Status des Objektes bei 0

          Sende ich direkt an den MQTT Broker mit der Topic mqtt.0.test1 den Wert 3, sehe ich auch das entsprechende Objet mqtt.0.test1 mit dem Wert von 3 im IO Broker.

          Ich habe jetzt auch mal im MQTT client des Objektes die Topic abboniert (der MQTT server ist node red) und dort den Payloa an die Topic gesendet, jedoch bleibt der Status immer noch 0.

          Das sind die RAW Daten für das Objekt:

          {
            "from": "system.adapter.husq-automower.0",
            "user": "system.user.admin",
            "ts": 1620646296907,
            "common": {
              "name": "mower.action",
              "desc": "mower.action",
              "type": "number",
              "read": true,
              "write": true,
              "custom": {
                "mqtt-client.0": {
                  "enabled": true,
                  "topic": "husq-automower/0/mower/action",
                  "publish": false,
                  "pubChangesOnly": false,
                  "pubAsObject": false,
                  "qos": 0,
                  "retain": false,
                  "subscribe": true,
                  "subChangesOnly": false,
                  "subAsObject": false,
                  "subQos": 2,
                  "setAck": true
                }
              }
            },
            "native": {
              "id": "mower.action"
            },
            "acl": {
              "object": 1638,
              "owner": "system.user.admin",
              "ownerGroup": "system.group.administrator",
              "state": 1638
            },
            "_id": "husq-automower.0.mower.action",
            "type": "state"
          }
          

          Was mache ich falsch? Danke für die Hilfe.
          lg Frank

          BoronsbruderB Offline
          BoronsbruderB Offline
          Boronsbruder
          wrote on last edited by Boronsbruder
          #206

          Edith:

          Habe gerade eine neuere Version auf GitHUB gefunden und die installiert.
          Mal schaun ober der Fehler weg ist, bevor ich hier rumjammer ;)

          1 Reply Last reply
          0
          • D digidax

            Hallo zusammen,
            habe einen 430x und lese über IO Broker die Daten von der API, sende diese dann an Node Red wo ich diese in eine MYSQL DB per Update schreibe. Ich habe so den aktuellen Stand der für mich relevanten Daten. Ein Trigger beobachtet diese Tabelle. Bei einer Änderung logt er diese in eine weitere Tabelle. Läuft also perfekt.

            Nun würde ich gern den Mower steuern. Der status ist das IO Broker Objekt:
            husq-automower/0/mower/action

            In Node Red sende ich die Topic
            husq-automower/0/mower/action mit den Pyload 3 (parken), jedoch bleibt der Status des Objektes bei 0

            Sende ich direkt an den MQTT Broker mit der Topic mqtt.0.test1 den Wert 3, sehe ich auch das entsprechende Objet mqtt.0.test1 mit dem Wert von 3 im IO Broker.

            Ich habe jetzt auch mal im MQTT client des Objektes die Topic abboniert (der MQTT server ist node red) und dort den Payloa an die Topic gesendet, jedoch bleibt der Status immer noch 0.

            Das sind die RAW Daten für das Objekt:

            {
              "from": "system.adapter.husq-automower.0",
              "user": "system.user.admin",
              "ts": 1620646296907,
              "common": {
                "name": "mower.action",
                "desc": "mower.action",
                "type": "number",
                "read": true,
                "write": true,
                "custom": {
                  "mqtt-client.0": {
                    "enabled": true,
                    "topic": "husq-automower/0/mower/action",
                    "publish": false,
                    "pubChangesOnly": false,
                    "pubAsObject": false,
                    "qos": 0,
                    "retain": false,
                    "subscribe": true,
                    "subChangesOnly": false,
                    "subAsObject": false,
                    "subQos": 2,
                    "setAck": true
                  }
                }
              },
              "native": {
                "id": "mower.action"
              },
              "acl": {
                "object": 1638,
                "owner": "system.user.admin",
                "ownerGroup": "system.group.administrator",
                "state": 1638
              },
              "_id": "husq-automower.0.mower.action",
              "type": "state"
            }
            

            Was mache ich falsch? Danke für die Hilfe.
            lg Frank

            greyhoundG Offline
            greyhoundG Offline
            greyhound
            wrote on last edited by
            #207

            @digidax
            Bitte mal für action die Historie aktivieren. Da müsstest du dann sehen, dass dein Adapter/Code die Action setzt und der mower-Adapter die Action quasi als Quittung auf 0.
            Eine andere Variante wäre den Adapter im debug-Modus laufen zu lassen.

            ioBroker auf ODROID-XU4 / Influx u. a. auf FUJITSU D3400-B, Celeron G3900, 16 GB RAM / CCU2 / Nuki

            1 Reply Last reply
            0
            • Dominic ReberD Dominic Reber

              @dominic-reber
              Bei mir scheint der Scheduler nicht so zu wollen wie ich. Hab mir jetzt selbst ein Skript gemacht:

              var path ='husq-automower.0.mower.action';
              var cron = ' */1 * * * * ';
              var checkEachXSeconds = 1;
              var Crontst = schedule(cron, function () {
                  console.debug('Cron started');
                  var i = 1;
                  CheckHusqvarna(i);
              });
              
              function CheckHusqvarna(i){
                  console.debug('Checking (' + i + ')');
                  setState(path,91);
                  sleep(100);
                  setState(path,9);
                  if( i < (60 / checkEachXSeconds)){
                      i +=1;
                      setTimeout(() =>CheckHusqvarna(i),checkEachXSeconds * 1000);
                  }
                }
              

              So wird der Status jede Sekunde (setze es ev. etwas runter auf 5 Sekunden) abgefragt.
              Ich muss dabei jeweils 91 senden, denn er sagt bei mir, dass der Scheduler läuft (aber der gibt mir keine werte zurück).
              Also 91 und dann 9 und dann ruft er korrekt ab.

              Cron wird jede Minute ausgeführt und dann die Funktion 60 / anzahl sekunden ausgeführt.

              greyhoundG Offline
              greyhoundG Offline
              greyhound
              wrote on last edited by
              #208

              @dominic-reber den Adapter mal im debug-Modus laufen lassen, hast du die erweiterte Statistik aktiviert.
              10 s sind schlecht. Lese dir dazu bitte die entsprechenden Kommentare hier durch

              ioBroker auf ODROID-XU4 / Influx u. a. auf FUJITSU D3400-B, Celeron G3900, 16 GB RAM / CCU2 / Nuki

              1 Reply Last reply
              0
              • JohreiJ Offline
                JohreiJ Offline
                Johrei
                wrote on last edited by
                #209

                Hello, I'm new to Iobroker and I wanted to ask how the adapter can be installed, and I can't get it to be displayed in the instances

                1 Reply Last reply
                0
                • bergjetB Offline
                  bergjetB Offline
                  bergjet
                  wrote on last edited by
                  #210

                  Mein Adapter bleibt gelb mit der 1.1.2
                  Mit 0.312 hat es funktioniert, die ist aber nicht mehr verfügbar.

                  homee, ioBroker, iMac, iPhone, Sonos, Alaxa

                  1 Reply Last reply
                  0
                  • Q Offline
                    Q Offline
                    Qlink
                    wrote on last edited by
                    #211

                    Hab eben von 0.3.10 auf 1.1.2 aktualisiert.

                    Scheint ohne Probleme zu funktionieren... vorerst alles grün :)

                    Beste Grüße

                    bergjetB 1 Reply Last reply
                    0
                    • Q Qlink

                      Hab eben von 0.3.10 auf 1.1.2 aktualisiert.

                      Scheint ohne Probleme zu funktionieren... vorerst alles grün :)

                      Beste Grüße

                      bergjetB Offline
                      bergjetB Offline
                      bergjet
                      wrote on last edited by
                      #212

                      @qlink War bei mir auch so nach dem Update. Habe aber das System neu installiert und da stand nur noch die Version 1.1.2 zur Verfügung. Und die wird nicht grün.

                      homee, ioBroker, iMac, iPhone, Sonos, Alaxa

                      1 Reply Last reply
                      0
                      • greyhoundG greyhound

                        Möchte euch meinen ersten Adapter vorstellen. Die Idee, mein Skript vom Vorjahr mal schnell in einen Adapter zu transferieren, hat sich dann doch schnell als größere Aufgabe mit Missverständnissen und viel Lesen herausgestellt. Danke auch an die Unterstützer, als mich die Blindheit schlug.

                        Ich habe den Adapter jetzt mit 2 Mähern im produktiven Einsatz.

                        Voraussetzung ist ein Automower mit Connectmodul und ein Konto bei Husqvarna, welches auch für die Nutzung der Handy-App benötigt wird.

                        Ich habe mir ein spezielles Konto für ioBroker angelegt und die Mäher hinzugefügt, weil es des öfteren vor kam, dass ich in der Handy-App abgemeldet war, was aber auch an meinen vielen Tests mit an- und abmelden gelegen haben kann.

                        Zu finden ist der Adapter unter https://github.com/truegreyhound/ioBrok … -automower

                        Ich hoffe, ich habe die Vorgaben der Adapter-Entwicklung eingehalten. Habe aber nicht so ganz verstanden, was der Unterschied zwischen index.html und index_m.html sein soll. Alter/neuer ioBroker.admin?

                        Final müssten wohl auch noch einige Übersetzungen in word.js ergänzt werden, englisch und deutsch ist zumindest enthalten.

                        Bei bestimmten Ereignissen werden speziell formatierte Nachrichten in den State mower.sendMessage geschrieben. Ggf. kann das intelligenter gelöst werden. In meinem Skript habe ich an den Stellen prioritätsabhängig Messages via Telegram versendet. Diese Funktionalität bilde ich nun mit einem kleinen Skript mit einer Subscription auf diesen State nach.

                        Über Kritik, Anregungen und Fehlermeldungen werde ich gern hinwegsehen. :shock: ;)

                        Ne, bin ich gespannt und offen.

                        Bin gerade an der Überarbeitung meiner Views, werde demnächst ein paar Screenshots reinstellen.

                        Gruß

                        GH

                        W Offline
                        W Offline
                        Wing.Stefan
                        wrote on last edited by
                        #213

                        @greyhound Hi, wann geht der Live sodass man diesen im iobroker installieren kann. 2018 ist doch schon eine weile her
                        danke

                        1 Reply Last reply
                        1
                        • BoronsbruderB Offline
                          BoronsbruderB Offline
                          Boronsbruder
                          wrote on last edited by Boronsbruder
                          #214

                          @greyhound
                          Hilfe!
                          Gestern gab der Automower-Adapter mit folgender Meldung den Geist auf!

                          2022-03-28 09:27:18.814 - error: husq-automower.0 (30998) updateStatus geo_response.statusCode: 404
                          2022-03-28 09:28:19.540 - warn: husq-automower.0 (30998) updateStatus typeof response or result === undefined
                          2022-03-28 09:29:20.584 - warn: husq-automower.0 (30998) updateStatus typeof response or result === undefined
                          

                          Nach einem Neustart der Instanz kam nur noch

                          2022-03-28 19:23:51.635 - info: host.zerobroker stopInstance system.adapter.husq-automower.0 (force=false, process=true)
                          2022-03-28 19:23:51.637 - info: host.zerobroker stopInstance system.adapter.husq-automower.0 send kill signal
                          2022-03-28 19:23:51.639 - info: husq-automower.0 (30998) Got terminate signal TERMINATE_YOURSELF
                          2022-03-28 19:23:51.640 - info: husq-automower.0 (30998) Logged off.
                          2022-03-28 19:23:51.641 - info: husq-automower.0 (30998) cleaned everything up...
                          2022-03-28 19:23:51.641 - info: husq-automower.0 (30998) terminating
                          2022-03-28 19:23:51.642 - info: husq-automower.0 (30998) Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason
                          2022-03-28 19:23:52.205 - info: host.zerobroker instance system.adapter.husq-automower.0 terminated with code 11 (ADAPTER_REQUESTED_TERMINATION)
                          2022-03-28 19:23:54.662 - info: host.zerobroker instance system.adapter.husq-automower.0 started with pid 28334
                          2022-03-28 19:23:55.191 - info: husq-automower.0 (28334) starting. Version 1.1.2 (non-npm: truegreyhound/ioBroker.husq-automower#7a8ed7031d6e945544c0adbb05d82cc0f322f954) in /opt/iobroker/node_modules/iobroker.husq-automower, node: v14.19.1, js-controller: 4.0.21
                          2022-03-28 19:23:55.217 - info: husq-automower.0 (28334) State value to set for "husq-automower.0.mower.homeLocation.maxDistance" has to be type "number" but received type "string"
                          2022-03-28 19:23:55.217 - info: husq-automower.0 (28334) State value to set for "husq-automower.0.mower.waitAfterRain" has to be type "number" but received type "string"
                          2022-03-28 19:23:57.208 - info: husq-automower.0 (28334) Logged off.
                          2022-03-28 19:23:57.233 - info: husq-automower.0 (28334) updateStatus mower object is NULL
                          

                          dann im Sekundentakt der "updateStatus mower object is NULL"

                          Ich habe schon die Instanz, den Adapter, gelöscht und neuinstalliert...

                          Das folgende Log ist nach der Neuinstallation

                          2022-03-29 19:37:40.663 - info: host.zerobroker instance system.adapter.husq-automower.0 terminated with code 11 (ADAPTER_REQUESTED_TERMINATION)
                          2022-03-29 19:37:43.121 - info: host.zerobroker instance system.adapter.husq-automower.0 started with pid 25064
                          2022-03-29 19:37:43.403 - debug: husq-automower.0 (25064) Redis Objects: Use Redis connection: 127.0.0.1:9001
                          2022-03-29 19:37:43.515 - debug: husq-automower.0 (25064) Objects client ready ... initialize now
                          2022-03-29 19:37:43.516 - debug: husq-automower.0 (25064) Objects create System PubSub Client
                          2022-03-29 19:37:43.517 - debug: husq-automower.0 (25064) Objects create User PubSub Client
                          2022-03-29 19:37:43.545 - debug: husq-automower.0 (25064) Objects client initialize lua scripts
                          2022-03-29 19:37:43.548 - debug: husq-automower.0 (25064) Objects connected to redis: 127.0.0.1:9001
                          2022-03-29 19:37:43.565 - debug: husq-automower.0 (25064) Redis States: Use Redis connection: 127.0.0.1:6379
                          2022-03-29 19:37:43.568 - debug: husq-automower.0 (25064) States create System PubSub Client
                          2022-03-29 19:37:43.568 - debug: husq-automower.0 (25064) States create User PubSub Client
                          2022-03-29 19:37:43.571 - debug: husq-automower.0 (25064) States connected to redis: 127.0.0.1:6379
                          2022-03-29 19:37:43.641 - info: husq-automower.0 (25064) starting. Version 1.1.2 (non-npm: truegreyhound/ioBroker.husq-automower#7a8ed7031d6e945544c0adbb05d82cc0f322f954) in /opt/iobroker/node_modules/iobroker.husq-automower, node: v14.19.1, js-controller: 4.0.21
                          2022-03-29 19:37:43.654 - debug: husq-automower.0 (25064) createDataStructure started
                          2022-03-29 19:37:43.654 - debug: husq-automower.0 (25064) createChannels started
                          2022-03-29 19:37:43.655 - debug: husq-automower.0 (25064) createChannels finished
                          2022-03-29 19:37:43.655 - debug: husq-automower.0 (25064) createDataStructure finished
                          2022-03-29 19:37:43.656 - debug: husq-automower.0 (25064) Mail address: ************
                          2022-03-29 19:37:43.656 - debug: husq-automower.0 (25064) waitAfterRain:
                          2022-03-29 19:37:43.657 - debug: husq-automower.0 (25064) syncConfigAsync started
                          2022-03-29 19:37:43.658 - debug: husq-automower.0 (25064) createDataStructure, createChannels() finished; result: {"msg":"Success","data":true}
                          2022-03-29 19:37:43.658 - debug: husq-automower.0 (25064) createDPs started
                          2022-03-29 19:37:43.659 - debug: husq-automower.0 (25064) createDPs finished
                          2022-03-29 19:37:43.666 - debug: husq-automower.0 (25064) syncConfigAsync, mJsonLastLocations:[]
                          2022-03-29 19:37:43.667 - debug: husq-automower.0 (25064) syncConfigAsync finished
                          2022-03-29 19:37:43.669 - info: husq-automower.0 (25064) State value to set for "husq-automower.0.mower.homeLocation.maxDistance" has to be type "number" but received type "string"
                          2022-03-29 19:37:43.669 - info: husq-automower.0 (25064) State value to set for "husq-automower.0.mower.waitAfterRain" has to be type "number" but received type "string"
                          2022-03-29 19:37:43.718 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.homeLocation.name" with value ""
                          2022-03-29 19:37:43.719 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.homeLocation.longitude" with value "0"
                          2022-03-29 19:37:43.719 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.homeLocation.latitude" with value "0"
                          2022-03-29 19:37:43.719 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.homeLocation.longitudeCP" with value "0"
                          2022-03-29 19:37:43.719 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.homeLocation.latitudeCP" with value "0"
                          2022-03-29 19:37:43.719 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.homeLocation.longitudeOffset" with value "0"
                          2022-03-29 19:37:43.720 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.homeLocation.latitudeOffset" with value "0"
                          2022-03-29 19:37:43.720 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.homeLocation.currentDistance" with value "0"
                          2022-03-29 19:37:43.720 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.homeLocation.maxDistance" with value "500"
                          2022-03-29 19:37:43.720 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.homeLocation.sensitivityLevel" with value "3"
                          2022-03-29 19:37:43.720 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.homeLocation.sensitivityRadius" with value "1000"
                          2022-03-29 19:37:43.721 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.lastLocation.latitude" with value "0"
                          2022-03-29 19:37:43.721 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.lastLocation.longitude" with value "0"
                          2022-03-29 19:37:43.721 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.lastLocation.timestamp" with value "0"
                          2022-03-29 19:37:43.721 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.statistics.mowingTime" with value "0"
                          2022-03-29 19:37:43.722 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.statistics.mowingTimeDaily" with value "0"
                          2022-03-29 19:37:43.722 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.statistics.mowingTimeBatteryNew" with value "0"
                          2022-03-29 19:37:43.722 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.statistics.batteryChargeCycleDaily" with value "0"
                          2022-03-29 19:37:43.722 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.statistics.batteryEfficiencyFactor" with value "0"
                          2022-03-29 19:37:43.722 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.statistics.chargingBatteryStarttime" with value "0"
                          2022-03-29 19:37:43.722 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.statistics.chargingTimeBatteryCurrent" with value "0"
                          2022-03-29 19:37:43.723 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.statistics.chargingTimeBatteryDaily" with value "0"
                          2022-03-29 19:37:43.723 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.statistics.chargingTimeBatteryNew" with value "0"
                          2022-03-29 19:37:43.723 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.statistics.lastChargingTimeBattery" with value "0"
                          2022-03-29 19:37:43.723 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.statistics.currentCoveredDistance" with value "0"
                          2022-03-29 19:37:43.723 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.statistics.coveredDistanceDaily" with value "0"
                          2022-03-29 19:37:43.723 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.statistics.lastMowingTime" with value "0"
                          2022-03-29 19:37:43.724 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.statistics.lastCoveredDistance" with value "0"
                          2022-03-29 19:37:43.724 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.statistics.lastStationReturnTime" with value "0"
                          2022-03-29 19:37:43.724 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.statistics.overallBatteryChargeCycle" with value "0"
                          2022-03-29 19:37:43.724 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.statistics.overallMowingTime" with value "0"
                          2022-03-29 19:37:43.724 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.statistics.overallCoveredDistance" with value "0"
                          2022-03-29 19:37:43.724 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.action" with value "0"
                          2022-03-29 19:37:43.725 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.batteryPercent" with value "0"
                          2022-03-29 19:37:43.725 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.currentErrorCode" with value "0"
                          2022-03-29 19:37:43.725 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.currentErrorMsg" with value ""
                          2022-03-29 19:37:43.725 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.currentErrorCodeTimestamp" with value "0"
                          2022-03-29 19:37:43.725 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.lastAction" with value "unkonwn"
                          2022-03-29 19:37:43.725 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.lastDockingTime" with value "0"
                          2022-03-29 19:37:43.726 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.lastErrorCode" with value "0"
                          2022-03-29 19:37:43.726 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.lastErrorMsg" with value ""
                          2022-03-29 19:37:43.726 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.lastErrorCodeTimestamp" with value "0"
                          2022-03-29 19:37:43.726 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.lastHttpStatus" with value "0"
                          2022-03-29 19:37:43.726 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.lastLocations" with value "[]"
                          2022-03-29 19:37:43.726 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.lastStatus" with value "unkonwn"
                          2022-03-29 19:37:43.726 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.lastStatusTime" with value "0"
                          2022-03-29 19:37:43.726 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.lastStatusChangeTime" with value "0"
                          2022-03-29 19:37:43.727 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.lastdayLocations" with value "[]"
                          2022-03-29 19:37:43.727 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.nextStartSource" with value ""
                          2022-03-29 19:37:43.727 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.nextStartTime" with value "0"
                          2022-03-29 19:37:43.727 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.nextStartWatching" with value "0"
                          2022-03-29 19:37:43.727 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.operatingMode" with value "unkonwn"
                          2022-03-29 19:37:43.727 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.stopOnRainEnabled" with value "false"
                          2022-03-29 19:37:43.727 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.stoppedDueRain" with value "false"
                          2022-03-29 19:37:43.728 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.timerAfterRainStartAt" with value "0"
                          2022-03-29 19:37:43.728 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.waitAfterRain" with value ""
                          2022-03-29 19:37:43.728 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.sendMessage" with value ""
                          2022-03-29 19:37:43.728 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.scheduleTime" with value "1"
                          2022-03-29 19:37:43.728 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.http_request_count_day" with value "0"
                          2022-03-29 19:37:43.728 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.http_request_count_day" with value "0", set in mnWebRequestCountDay
                          2022-03-29 19:37:43.728 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.http_request_count_day_success" with value "0"
                          2022-03-29 19:37:43.728 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.http_request_count_day_error" with value "0"
                          2022-03-29 19:37:43.729 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.http_request_count_month" with value "0"
                          2022-03-29 19:37:43.729 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.http_request_count_month_success" with value "0"
                          2022-03-29 19:37:43.729 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.http_request_count_month_error" with value "0"
                          2022-03-29 19:37:43.729 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.statistics.mowingStartTime" with value "0"
                          2022-03-29 19:37:43.729 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.rawSend" with value ""
                          2022-03-29 19:37:43.729 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.rawResponse" with value ""
                          2022-03-29 19:37:43.729 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.rawResponse_geo" with value ""
                          2022-03-29 19:37:43.730 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.rawResponse_mowers" with value ""
                          2022-03-29 19:37:43.730 - debug: husq-automower.0 (25064) syncConfigAsync, idnLastStatus: unkonwn, idnNextStartTime: 0, mStartMowingTime: 0, idnStoppedDueRain: false, idnCurrentErrorCode: 0, idnCurrentErrorCodeTS: 0
                          2022-03-29 19:37:43.730 - debug: husq-automower.0 (25064) syncConfigAsync, idnCurrentCoveredDistance: 0, idnLastLocationLongitude: 0, idnLastLocationLatitude: 0, idnHomeLocationLongitude: 0, idnHomeLocationLatitude: 0
                          2022-03-29 19:37:43.730 - debug: husq-automower.0 (25064) syncConfigAsync, idnBatteryPercent: 0, idnBatteryChargeCycleDaily: 0, idnMowingTime: 0, idnMowingTimeDaily: 0
                          2022-03-29 19:37:44.658 - debug: husq-automower.0 (25064) dailyAccumulation started
                          2022-03-29 19:37:44.658 - debug: husq-automower.0 (25064) dailyAccumulation, stop status timer
                          2022-03-29 19:37:44.658 - debug: husq-automower.0 (25064) dailyAccumulation, add current covered distance to overall distance ...
                          2022-03-29 19:37:44.659 - debug: husq-automower.0 (25064) dailyAccumulation, move lastlocations to lastday locations
                          2022-03-29 19:37:44.659 - debug: husq-automower.0 (25064) dailyAccumulation, add daily mowing time to overall mowing time ...
                          2022-03-29 19:37:44.660 - debug: husq-automower.0 (25064) dailyAccumulation, add daily battery charging cycle to overall charging cycle ...
                          2022-03-29 19:37:44.660 - debug: husq-automower.0 (25064) dailyAccumulation, add daily http request counter to month ...
                          2022-03-29 19:37:44.661 - debug: husq-automower.0 (25064) createStatusScheduler started
                          2022-03-29 19:37:44.661 - debug: husq-automower.0 (25064) createStatusScheduler scheduler created, start every 1 secands
                          2022-03-29 19:37:44.662 - debug: husq-automower.0 (25064) createStatusScheduler finished
                          2022-03-29 19:37:44.662 - debug: husq-automower.0 (25064) dailyAccumulation finished
                          2022-03-29 19:37:44.666 - debug: husq-automower.0 (25064) dailyAccumulation, add current covered distance; bCheck: true; stateCDD.ts: 1648575391687; new Date(00): 1648504800000; stateCDD.val: 0
                          2022-03-29 19:37:44.666 - debug: husq-automower.0 (25064) dailyAccumulation, stateRCM.ts: 1648575391687; Date: Tue Mar 29 2022 19:36:31 GMT+0200 (Mitteleuropäische Sommerzeit)
                          2022-03-29 19:37:44.666 - debug: husq-automower.0 (25064) dailyAccumulation, nDateMonth: 2; nDateRCM_Month_TS: 2
                          2022-03-29 19:37:44.668 - debug: husq-automower.0 (25064) dailyAccumulation, stateRCD.ts: 1648575391687; Date: Tue Mar 29 2022 19:36:31 GMT+0200 (Mitteleuropäische Sommerzeit)
                          2022-03-29 19:37:44.668 - debug: husq-automower.0 (25064) dailyAccumulation, nDateMonth: 2; nDateRCD_Month_TS: 2; nDateRCD_Day_TS: 2
                          2022-03-29 19:37:45.657 - info: husq-automower.0 (25064) Logged off.
                          2022-03-29 19:37:45.682 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                          2022-03-29 19:37:46.088 - info: husq-automower.0 (25064) Logged on. Checking for mowers.
                          2022-03-29 19:37:46.658 - debug: husq-automower.0 (25064) createSubscriberAsync started
                          2022-03-29 19:37:46.658 - debug: husq-automower.0 (25064) checkIfItsRaining started
                          2022-03-29 19:37:46.659 - debug: husq-automower.0 (25064) checkIfItsRaining finished
                          2022-03-29 19:37:46.659 - info: husq-automower.0 (25064) createSubscriberAsync, idRainSensor; stop due rain not enabled.
                          2022-03-29 19:37:46.660 - debug: husq-automower.0 (25064) createSubscriberAsync, scheduler for dailyAccumulation created
                          2022-03-29 19:37:46.668 - debug: husq-automower.0 (25064) createSubscriberAsync finished
                          2022-03-29 19:37:46.683 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                          2022-03-29 19:37:47.683 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                          2022-03-29 19:37:48.683 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                          2022-03-29 19:37:49.684 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                          2022-03-29 19:37:50.685 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                          2022-03-29 19:37:51.685 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                          2022-03-29 19:37:52.686 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                          2022-03-29 19:37:53.685 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                          2022-03-29 19:37:54.686 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                          2022-03-29 19:37:55.686 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                          2022-03-29 19:37:56.687 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                          2022-03-29 19:37:57.687 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                          2022-03-29 19:37:58.688 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                          2022-03-29 19:37:59.688 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                          2022-03-29 19:38:00.689 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                          2022-03-29 19:38:01.689 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                          2022-03-29 19:38:02.689 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                          2022-03-29 19:38:03.690 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                          2022-03-29 19:38:04.690 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                          2022-03-29 19:38:05.690 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                          2022-03-29 19:38:06.690 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                          2022-03-29 19:38:07.691 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                          2022-03-29 19:38:08.692 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                          2022-03-29 19:38:09.691 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                          2022-03-29 19:38:10.691 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                          2022-03-29 19:38:11.691 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                          2022-03-29 19:38:12.692 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                          2022-03-29 19:38:13.691 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                          2022-03-29 19:38:14.691 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                          2022-03-29 19:38:15.692 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                          2022-03-29 19:38:16.245 - info: host.zerobroker "system.adapter.husq-automower.0" disabled
                          2022-03-29 19:38:16.246 - info: host.zerobroker stopInstance system.adapter.husq-automower.0 (force=false, process=true)
                          2022-03-29 19:38:16.248 - info: host.zerobroker stopInstance system.adapter.husq-automower.0 send kill signal
                          2022-03-29 19:38:16.249 - info: husq-automower.0 (25064) Got terminate signal TERMINATE_YOURSELF
                          2022-03-29 19:38:16.250 - info: husq-automower.0 (25064) Logged off.
                          2022-03-29 19:38:16.251 - info: husq-automower.0 (25064) cleaned everything up...
                          2022-03-29 19:38:16.252 - info: husq-automower.0 (25064) terminating
                          2022-03-29 19:38:16.253 - info: husq-automower.0 (25064) Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason
                          

                          Woher kommts? Wo muss ich suchen? Was kann ich tun?

                          Der Mähroboter lief nach der Aus-Winterung ca. 1 Woche ohne Probleme...

                          Schon mal Danke für die Hilfe im Vorraus

                          R 1 Reply Last reply
                          0
                          • BoronsbruderB Boronsbruder

                            @greyhound
                            Hilfe!
                            Gestern gab der Automower-Adapter mit folgender Meldung den Geist auf!

                            2022-03-28 09:27:18.814 - error: husq-automower.0 (30998) updateStatus geo_response.statusCode: 404
                            2022-03-28 09:28:19.540 - warn: husq-automower.0 (30998) updateStatus typeof response or result === undefined
                            2022-03-28 09:29:20.584 - warn: husq-automower.0 (30998) updateStatus typeof response or result === undefined
                            

                            Nach einem Neustart der Instanz kam nur noch

                            2022-03-28 19:23:51.635 - info: host.zerobroker stopInstance system.adapter.husq-automower.0 (force=false, process=true)
                            2022-03-28 19:23:51.637 - info: host.zerobroker stopInstance system.adapter.husq-automower.0 send kill signal
                            2022-03-28 19:23:51.639 - info: husq-automower.0 (30998) Got terminate signal TERMINATE_YOURSELF
                            2022-03-28 19:23:51.640 - info: husq-automower.0 (30998) Logged off.
                            2022-03-28 19:23:51.641 - info: husq-automower.0 (30998) cleaned everything up...
                            2022-03-28 19:23:51.641 - info: husq-automower.0 (30998) terminating
                            2022-03-28 19:23:51.642 - info: husq-automower.0 (30998) Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason
                            2022-03-28 19:23:52.205 - info: host.zerobroker instance system.adapter.husq-automower.0 terminated with code 11 (ADAPTER_REQUESTED_TERMINATION)
                            2022-03-28 19:23:54.662 - info: host.zerobroker instance system.adapter.husq-automower.0 started with pid 28334
                            2022-03-28 19:23:55.191 - info: husq-automower.0 (28334) starting. Version 1.1.2 (non-npm: truegreyhound/ioBroker.husq-automower#7a8ed7031d6e945544c0adbb05d82cc0f322f954) in /opt/iobroker/node_modules/iobroker.husq-automower, node: v14.19.1, js-controller: 4.0.21
                            2022-03-28 19:23:55.217 - info: husq-automower.0 (28334) State value to set for "husq-automower.0.mower.homeLocation.maxDistance" has to be type "number" but received type "string"
                            2022-03-28 19:23:55.217 - info: husq-automower.0 (28334) State value to set for "husq-automower.0.mower.waitAfterRain" has to be type "number" but received type "string"
                            2022-03-28 19:23:57.208 - info: husq-automower.0 (28334) Logged off.
                            2022-03-28 19:23:57.233 - info: husq-automower.0 (28334) updateStatus mower object is NULL
                            

                            dann im Sekundentakt der "updateStatus mower object is NULL"

                            Ich habe schon die Instanz, den Adapter, gelöscht und neuinstalliert...

                            Das folgende Log ist nach der Neuinstallation

                            2022-03-29 19:37:40.663 - info: host.zerobroker instance system.adapter.husq-automower.0 terminated with code 11 (ADAPTER_REQUESTED_TERMINATION)
                            2022-03-29 19:37:43.121 - info: host.zerobroker instance system.adapter.husq-automower.0 started with pid 25064
                            2022-03-29 19:37:43.403 - debug: husq-automower.0 (25064) Redis Objects: Use Redis connection: 127.0.0.1:9001
                            2022-03-29 19:37:43.515 - debug: husq-automower.0 (25064) Objects client ready ... initialize now
                            2022-03-29 19:37:43.516 - debug: husq-automower.0 (25064) Objects create System PubSub Client
                            2022-03-29 19:37:43.517 - debug: husq-automower.0 (25064) Objects create User PubSub Client
                            2022-03-29 19:37:43.545 - debug: husq-automower.0 (25064) Objects client initialize lua scripts
                            2022-03-29 19:37:43.548 - debug: husq-automower.0 (25064) Objects connected to redis: 127.0.0.1:9001
                            2022-03-29 19:37:43.565 - debug: husq-automower.0 (25064) Redis States: Use Redis connection: 127.0.0.1:6379
                            2022-03-29 19:37:43.568 - debug: husq-automower.0 (25064) States create System PubSub Client
                            2022-03-29 19:37:43.568 - debug: husq-automower.0 (25064) States create User PubSub Client
                            2022-03-29 19:37:43.571 - debug: husq-automower.0 (25064) States connected to redis: 127.0.0.1:6379
                            2022-03-29 19:37:43.641 - info: husq-automower.0 (25064) starting. Version 1.1.2 (non-npm: truegreyhound/ioBroker.husq-automower#7a8ed7031d6e945544c0adbb05d82cc0f322f954) in /opt/iobroker/node_modules/iobroker.husq-automower, node: v14.19.1, js-controller: 4.0.21
                            2022-03-29 19:37:43.654 - debug: husq-automower.0 (25064) createDataStructure started
                            2022-03-29 19:37:43.654 - debug: husq-automower.0 (25064) createChannels started
                            2022-03-29 19:37:43.655 - debug: husq-automower.0 (25064) createChannels finished
                            2022-03-29 19:37:43.655 - debug: husq-automower.0 (25064) createDataStructure finished
                            2022-03-29 19:37:43.656 - debug: husq-automower.0 (25064) Mail address: ************
                            2022-03-29 19:37:43.656 - debug: husq-automower.0 (25064) waitAfterRain:
                            2022-03-29 19:37:43.657 - debug: husq-automower.0 (25064) syncConfigAsync started
                            2022-03-29 19:37:43.658 - debug: husq-automower.0 (25064) createDataStructure, createChannels() finished; result: {"msg":"Success","data":true}
                            2022-03-29 19:37:43.658 - debug: husq-automower.0 (25064) createDPs started
                            2022-03-29 19:37:43.659 - debug: husq-automower.0 (25064) createDPs finished
                            2022-03-29 19:37:43.666 - debug: husq-automower.0 (25064) syncConfigAsync, mJsonLastLocations:[]
                            2022-03-29 19:37:43.667 - debug: husq-automower.0 (25064) syncConfigAsync finished
                            2022-03-29 19:37:43.669 - info: husq-automower.0 (25064) State value to set for "husq-automower.0.mower.homeLocation.maxDistance" has to be type "number" but received type "string"
                            2022-03-29 19:37:43.669 - info: husq-automower.0 (25064) State value to set for "husq-automower.0.mower.waitAfterRain" has to be type "number" but received type "string"
                            2022-03-29 19:37:43.718 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.homeLocation.name" with value ""
                            2022-03-29 19:37:43.719 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.homeLocation.longitude" with value "0"
                            2022-03-29 19:37:43.719 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.homeLocation.latitude" with value "0"
                            2022-03-29 19:37:43.719 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.homeLocation.longitudeCP" with value "0"
                            2022-03-29 19:37:43.719 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.homeLocation.latitudeCP" with value "0"
                            2022-03-29 19:37:43.719 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.homeLocation.longitudeOffset" with value "0"
                            2022-03-29 19:37:43.720 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.homeLocation.latitudeOffset" with value "0"
                            2022-03-29 19:37:43.720 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.homeLocation.currentDistance" with value "0"
                            2022-03-29 19:37:43.720 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.homeLocation.maxDistance" with value "500"
                            2022-03-29 19:37:43.720 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.homeLocation.sensitivityLevel" with value "3"
                            2022-03-29 19:37:43.720 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.homeLocation.sensitivityRadius" with value "1000"
                            2022-03-29 19:37:43.721 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.lastLocation.latitude" with value "0"
                            2022-03-29 19:37:43.721 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.lastLocation.longitude" with value "0"
                            2022-03-29 19:37:43.721 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.lastLocation.timestamp" with value "0"
                            2022-03-29 19:37:43.721 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.statistics.mowingTime" with value "0"
                            2022-03-29 19:37:43.722 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.statistics.mowingTimeDaily" with value "0"
                            2022-03-29 19:37:43.722 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.statistics.mowingTimeBatteryNew" with value "0"
                            2022-03-29 19:37:43.722 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.statistics.batteryChargeCycleDaily" with value "0"
                            2022-03-29 19:37:43.722 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.statistics.batteryEfficiencyFactor" with value "0"
                            2022-03-29 19:37:43.722 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.statistics.chargingBatteryStarttime" with value "0"
                            2022-03-29 19:37:43.722 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.statistics.chargingTimeBatteryCurrent" with value "0"
                            2022-03-29 19:37:43.723 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.statistics.chargingTimeBatteryDaily" with value "0"
                            2022-03-29 19:37:43.723 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.statistics.chargingTimeBatteryNew" with value "0"
                            2022-03-29 19:37:43.723 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.statistics.lastChargingTimeBattery" with value "0"
                            2022-03-29 19:37:43.723 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.statistics.currentCoveredDistance" with value "0"
                            2022-03-29 19:37:43.723 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.statistics.coveredDistanceDaily" with value "0"
                            2022-03-29 19:37:43.723 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.statistics.lastMowingTime" with value "0"
                            2022-03-29 19:37:43.724 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.statistics.lastCoveredDistance" with value "0"
                            2022-03-29 19:37:43.724 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.statistics.lastStationReturnTime" with value "0"
                            2022-03-29 19:37:43.724 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.statistics.overallBatteryChargeCycle" with value "0"
                            2022-03-29 19:37:43.724 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.statistics.overallMowingTime" with value "0"
                            2022-03-29 19:37:43.724 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.statistics.overallCoveredDistance" with value "0"
                            2022-03-29 19:37:43.724 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.action" with value "0"
                            2022-03-29 19:37:43.725 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.batteryPercent" with value "0"
                            2022-03-29 19:37:43.725 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.currentErrorCode" with value "0"
                            2022-03-29 19:37:43.725 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.currentErrorMsg" with value ""
                            2022-03-29 19:37:43.725 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.currentErrorCodeTimestamp" with value "0"
                            2022-03-29 19:37:43.725 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.lastAction" with value "unkonwn"
                            2022-03-29 19:37:43.725 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.lastDockingTime" with value "0"
                            2022-03-29 19:37:43.726 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.lastErrorCode" with value "0"
                            2022-03-29 19:37:43.726 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.lastErrorMsg" with value ""
                            2022-03-29 19:37:43.726 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.lastErrorCodeTimestamp" with value "0"
                            2022-03-29 19:37:43.726 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.lastHttpStatus" with value "0"
                            2022-03-29 19:37:43.726 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.lastLocations" with value "[]"
                            2022-03-29 19:37:43.726 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.lastStatus" with value "unkonwn"
                            2022-03-29 19:37:43.726 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.lastStatusTime" with value "0"
                            2022-03-29 19:37:43.726 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.lastStatusChangeTime" with value "0"
                            2022-03-29 19:37:43.727 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.lastdayLocations" with value "[]"
                            2022-03-29 19:37:43.727 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.nextStartSource" with value ""
                            2022-03-29 19:37:43.727 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.nextStartTime" with value "0"
                            2022-03-29 19:37:43.727 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.nextStartWatching" with value "0"
                            2022-03-29 19:37:43.727 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.operatingMode" with value "unkonwn"
                            2022-03-29 19:37:43.727 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.stopOnRainEnabled" with value "false"
                            2022-03-29 19:37:43.727 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.stoppedDueRain" with value "false"
                            2022-03-29 19:37:43.728 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.timerAfterRainStartAt" with value "0"
                            2022-03-29 19:37:43.728 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.waitAfterRain" with value ""
                            2022-03-29 19:37:43.728 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.sendMessage" with value ""
                            2022-03-29 19:37:43.728 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.scheduleTime" with value "1"
                            2022-03-29 19:37:43.728 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.http_request_count_day" with value "0"
                            2022-03-29 19:37:43.728 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.http_request_count_day" with value "0", set in mnWebRequestCountDay
                            2022-03-29 19:37:43.728 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.http_request_count_day_success" with value "0"
                            2022-03-29 19:37:43.728 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.http_request_count_day_error" with value "0"
                            2022-03-29 19:37:43.729 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.http_request_count_month" with value "0"
                            2022-03-29 19:37:43.729 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.http_request_count_month_success" with value "0"
                            2022-03-29 19:37:43.729 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.http_request_count_month_error" with value "0"
                            2022-03-29 19:37:43.729 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.statistics.mowingStartTime" with value "0"
                            2022-03-29 19:37:43.729 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.rawSend" with value ""
                            2022-03-29 19:37:43.729 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.rawResponse" with value ""
                            2022-03-29 19:37:43.729 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.rawResponse_geo" with value ""
                            2022-03-29 19:37:43.730 - debug: husq-automower.0 (25064) syncConfigAsync, processing state: "mower.rawResponse_mowers" with value ""
                            2022-03-29 19:37:43.730 - debug: husq-automower.0 (25064) syncConfigAsync, idnLastStatus: unkonwn, idnNextStartTime: 0, mStartMowingTime: 0, idnStoppedDueRain: false, idnCurrentErrorCode: 0, idnCurrentErrorCodeTS: 0
                            2022-03-29 19:37:43.730 - debug: husq-automower.0 (25064) syncConfigAsync, idnCurrentCoveredDistance: 0, idnLastLocationLongitude: 0, idnLastLocationLatitude: 0, idnHomeLocationLongitude: 0, idnHomeLocationLatitude: 0
                            2022-03-29 19:37:43.730 - debug: husq-automower.0 (25064) syncConfigAsync, idnBatteryPercent: 0, idnBatteryChargeCycleDaily: 0, idnMowingTime: 0, idnMowingTimeDaily: 0
                            2022-03-29 19:37:44.658 - debug: husq-automower.0 (25064) dailyAccumulation started
                            2022-03-29 19:37:44.658 - debug: husq-automower.0 (25064) dailyAccumulation, stop status timer
                            2022-03-29 19:37:44.658 - debug: husq-automower.0 (25064) dailyAccumulation, add current covered distance to overall distance ...
                            2022-03-29 19:37:44.659 - debug: husq-automower.0 (25064) dailyAccumulation, move lastlocations to lastday locations
                            2022-03-29 19:37:44.659 - debug: husq-automower.0 (25064) dailyAccumulation, add daily mowing time to overall mowing time ...
                            2022-03-29 19:37:44.660 - debug: husq-automower.0 (25064) dailyAccumulation, add daily battery charging cycle to overall charging cycle ...
                            2022-03-29 19:37:44.660 - debug: husq-automower.0 (25064) dailyAccumulation, add daily http request counter to month ...
                            2022-03-29 19:37:44.661 - debug: husq-automower.0 (25064) createStatusScheduler started
                            2022-03-29 19:37:44.661 - debug: husq-automower.0 (25064) createStatusScheduler scheduler created, start every 1 secands
                            2022-03-29 19:37:44.662 - debug: husq-automower.0 (25064) createStatusScheduler finished
                            2022-03-29 19:37:44.662 - debug: husq-automower.0 (25064) dailyAccumulation finished
                            2022-03-29 19:37:44.666 - debug: husq-automower.0 (25064) dailyAccumulation, add current covered distance; bCheck: true; stateCDD.ts: 1648575391687; new Date(00): 1648504800000; stateCDD.val: 0
                            2022-03-29 19:37:44.666 - debug: husq-automower.0 (25064) dailyAccumulation, stateRCM.ts: 1648575391687; Date: Tue Mar 29 2022 19:36:31 GMT+0200 (Mitteleuropäische Sommerzeit)
                            2022-03-29 19:37:44.666 - debug: husq-automower.0 (25064) dailyAccumulation, nDateMonth: 2; nDateRCM_Month_TS: 2
                            2022-03-29 19:37:44.668 - debug: husq-automower.0 (25064) dailyAccumulation, stateRCD.ts: 1648575391687; Date: Tue Mar 29 2022 19:36:31 GMT+0200 (Mitteleuropäische Sommerzeit)
                            2022-03-29 19:37:44.668 - debug: husq-automower.0 (25064) dailyAccumulation, nDateMonth: 2; nDateRCD_Month_TS: 2; nDateRCD_Day_TS: 2
                            2022-03-29 19:37:45.657 - info: husq-automower.0 (25064) Logged off.
                            2022-03-29 19:37:45.682 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                            2022-03-29 19:37:46.088 - info: husq-automower.0 (25064) Logged on. Checking for mowers.
                            2022-03-29 19:37:46.658 - debug: husq-automower.0 (25064) createSubscriberAsync started
                            2022-03-29 19:37:46.658 - debug: husq-automower.0 (25064) checkIfItsRaining started
                            2022-03-29 19:37:46.659 - debug: husq-automower.0 (25064) checkIfItsRaining finished
                            2022-03-29 19:37:46.659 - info: husq-automower.0 (25064) createSubscriberAsync, idRainSensor; stop due rain not enabled.
                            2022-03-29 19:37:46.660 - debug: husq-automower.0 (25064) createSubscriberAsync, scheduler for dailyAccumulation created
                            2022-03-29 19:37:46.668 - debug: husq-automower.0 (25064) createSubscriberAsync finished
                            2022-03-29 19:37:46.683 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                            2022-03-29 19:37:47.683 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                            2022-03-29 19:37:48.683 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                            2022-03-29 19:37:49.684 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                            2022-03-29 19:37:50.685 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                            2022-03-29 19:37:51.685 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                            2022-03-29 19:37:52.686 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                            2022-03-29 19:37:53.685 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                            2022-03-29 19:37:54.686 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                            2022-03-29 19:37:55.686 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                            2022-03-29 19:37:56.687 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                            2022-03-29 19:37:57.687 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                            2022-03-29 19:37:58.688 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                            2022-03-29 19:37:59.688 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                            2022-03-29 19:38:00.689 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                            2022-03-29 19:38:01.689 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                            2022-03-29 19:38:02.689 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                            2022-03-29 19:38:03.690 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                            2022-03-29 19:38:04.690 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                            2022-03-29 19:38:05.690 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                            2022-03-29 19:38:06.690 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                            2022-03-29 19:38:07.691 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                            2022-03-29 19:38:08.692 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                            2022-03-29 19:38:09.691 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                            2022-03-29 19:38:10.691 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                            2022-03-29 19:38:11.691 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                            2022-03-29 19:38:12.692 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                            2022-03-29 19:38:13.691 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                            2022-03-29 19:38:14.691 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                            2022-03-29 19:38:15.692 - info: husq-automower.0 (25064) updateStatus mower object is NULL
                            2022-03-29 19:38:16.245 - info: host.zerobroker "system.adapter.husq-automower.0" disabled
                            2022-03-29 19:38:16.246 - info: host.zerobroker stopInstance system.adapter.husq-automower.0 (force=false, process=true)
                            2022-03-29 19:38:16.248 - info: host.zerobroker stopInstance system.adapter.husq-automower.0 send kill signal
                            2022-03-29 19:38:16.249 - info: husq-automower.0 (25064) Got terminate signal TERMINATE_YOURSELF
                            2022-03-29 19:38:16.250 - info: husq-automower.0 (25064) Logged off.
                            2022-03-29 19:38:16.251 - info: husq-automower.0 (25064) cleaned everything up...
                            2022-03-29 19:38:16.252 - info: husq-automower.0 (25064) terminating
                            2022-03-29 19:38:16.253 - info: husq-automower.0 (25064) Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason
                            

                            Woher kommts? Wo muss ich suchen? Was kann ich tun?

                            Der Mähroboter lief nach der Aus-Winterung ca. 1 Woche ohne Probleme...

                            Schon mal Danke für die Hilfe im Vorraus

                            R Offline
                            R Offline
                            romestylez
                            wrote on last edited by romestylez
                            #215

                            @boronsbruder ich habe das gleiche Problem und es auch bei GitHub gemeldet. Leider scheint @greyhound aber nicht mehr aktiv zu sein hier.

                            Ich würde vermuten das Husqvarna etwas an der API geändert hat (Authentifizierung oder URL). Ich habe schon etwas im Sourcecode geschaut und versucht mit Postman die HTTP Requests vom Adapter nachzubauen aber keine Chance bzw. ich hatte auch nicht wirklich Zeit.

                            Wir müssen hier also beten das sich jemand hinsetzt und das Ding irgendwie fixxt.

                            R 1 Reply Last reply
                            0
                            • R romestylez

                              @boronsbruder ich habe das gleiche Problem und es auch bei GitHub gemeldet. Leider scheint @greyhound aber nicht mehr aktiv zu sein hier.

                              Ich würde vermuten das Husqvarna etwas an der API geändert hat (Authentifizierung oder URL). Ich habe schon etwas im Sourcecode geschaut und versucht mit Postman die HTTP Requests vom Adapter nachzubauen aber keine Chance bzw. ich hatte auch nicht wirklich Zeit.

                              Wir müssen hier also beten das sich jemand hinsetzt und das Ding irgendwie fixxt.

                              R Online
                              R Online
                              reutli
                              wrote on last edited by
                              #216

                              @romestylez Habe greyhound per mail kontaktiert, bisher ohne Antwort. War absehbar, dass die alte API von Husqvarna stirbt... Die neue liefert aber nur deutlich weniger (hatte mal begonnen stümperhaft einen Adapter anzufangen).
                              Wenn die alte also nicht nur geändert wurde, sondern tot ist, dass muss ein neuer Adapter her. Schade.

                              Vielleicht meldet sich @greyhound aber ja noch...

                              BITTE BEACHTET DOCH DAS: https://forum.iobroker.net/topic/51555/hinweise-für-gute-forenbeiträge
                              iobroker in Debian-VM auf Proxmox Server (Ryzen 7 / 32GB / 1TB NVMe SSD) als Master - mehrere Raspberry Pis (3+4) als Slaves. InfluxDB V2 und Grafana auf LXC.

                              *Wer freundlich ist, dem wird freundlich geholfen *

                              R 1 Reply Last reply
                              0
                              • R reutli

                                @romestylez Habe greyhound per mail kontaktiert, bisher ohne Antwort. War absehbar, dass die alte API von Husqvarna stirbt... Die neue liefert aber nur deutlich weniger (hatte mal begonnen stümperhaft einen Adapter anzufangen).
                                Wenn die alte also nicht nur geändert wurde, sondern tot ist, dass muss ein neuer Adapter her. Schade.

                                Vielleicht meldet sich @greyhound aber ja noch...

                                R Offline
                                R Offline
                                romestylez
                                wrote on last edited by
                                #217

                                @reutli ich schaue mal ob ich nicht was aus der normalen Husqvarna App etwas sniffen kann was man benutzten könnte.

                                Wäre auf jeden Fall schade. Verstehe es auch nicht wieso man eine API hat diese abschaltet und dann eine weniger umfangreiche rausbringt. Aber gut so ist das halt manchmal.

                                BoronsbruderB 1 Reply Last reply
                                0
                                • R romestylez

                                  @reutli ich schaue mal ob ich nicht was aus der normalen Husqvarna App etwas sniffen kann was man benutzten könnte.

                                  Wäre auf jeden Fall schade. Verstehe es auch nicht wieso man eine API hat diese abschaltet und dann eine weniger umfangreiche rausbringt. Aber gut so ist das halt manchmal.

                                  BoronsbruderB Offline
                                  BoronsbruderB Offline
                                  Boronsbruder
                                  wrote on last edited by Boronsbruder
                                  #218

                                  Was soll eigentlich in der neuen API fehlen?

                                  Ich finde jetzt nichts, was nicht mindest den Umfang des alten Adapters abdecken könnte. (siehe hier -> Husqvarna Rest Api Doku)
                                  Man könnte sogar die Einsatzzeiten, Lichter und Mähhöhe verstellen.

                                  Wenn ich das (mit meinem Laien-Wissen) richtig sehe läuft "nur" die Authentifizierung anders.

                                  Es werden nun Anfragen, per App-Key limitiert, was heissen würde, dass jeder Adapternutzer einen Account anlegen müsste und einen App-Key holen.

                                  Oder sehe ich das falsch?

                                  Im Moment kann leider keinen App-Key beantragen, da anscheinend "Maintenance" ist.

                                  R 1 Reply Last reply
                                  1
                                  • BoronsbruderB Boronsbruder

                                    Was soll eigentlich in der neuen API fehlen?

                                    Ich finde jetzt nichts, was nicht mindest den Umfang des alten Adapters abdecken könnte. (siehe hier -> Husqvarna Rest Api Doku)
                                    Man könnte sogar die Einsatzzeiten, Lichter und Mähhöhe verstellen.

                                    Wenn ich das (mit meinem Laien-Wissen) richtig sehe läuft "nur" die Authentifizierung anders.

                                    Es werden nun Anfragen, per App-Key limitiert, was heissen würde, dass jeder Adapternutzer einen Account anlegen müsste und einen App-Key holen.

                                    Oder sehe ich das falsch?

                                    Im Moment kann leider keinen App-Key beantragen, da anscheinend "Maintenance" ist.

                                    R Online
                                    R Online
                                    reutli
                                    wrote on last edited by reutli
                                    #219

                                    @boronsbruder : Da fehlen (zumindest war es letztes Jahr noch so) z.B. Geo-Daten. Ansonsten habe ich auch reingeschaut und war erstaunt, dass es einiges mehr gibt als 2021.

                                    Edit: Geo-Daten sind jetzt auch da... hab' gelogen :lying_face:

                                    Hatte übrigens Kontakt zu @greyhound ... er hat einiges um die Ohren und will sich gegen Ostern um die Thematik kümmern, weil er auch sein mower an den Start bringen will/muss.

                                    Ich habe meine Adapterversuche seinerzeit eingestellt, genau wegen der Authentifizierungsthematik und möchte mich (ebenfalls als JavaScript-Anfänger) hier nicht auf's Glatteis begeben, zumal es ja bereits diesen Adapter hier gibt.

                                    Soweit ich weiss hat @greyhound ohnehin schon an der neuen API gearbeitet, so dass es vielleicht Ostern was werden könnte.
                                    Wenn alle Stricke reissen, hole ich meinen Code nochmals hoch...

                                    BITTE BEACHTET DOCH DAS: https://forum.iobroker.net/topic/51555/hinweise-für-gute-forenbeiträge
                                    iobroker in Debian-VM auf Proxmox Server (Ryzen 7 / 32GB / 1TB NVMe SSD) als Master - mehrere Raspberry Pis (3+4) als Slaves. InfluxDB V2 und Grafana auf LXC.

                                    *Wer freundlich ist, dem wird freundlich geholfen *

                                    BoronsbruderB 1 Reply Last reply
                                    1
                                    • R reutli

                                      @boronsbruder : Da fehlen (zumindest war es letztes Jahr noch so) z.B. Geo-Daten. Ansonsten habe ich auch reingeschaut und war erstaunt, dass es einiges mehr gibt als 2021.

                                      Edit: Geo-Daten sind jetzt auch da... hab' gelogen :lying_face:

                                      Hatte übrigens Kontakt zu @greyhound ... er hat einiges um die Ohren und will sich gegen Ostern um die Thematik kümmern, weil er auch sein mower an den Start bringen will/muss.

                                      Ich habe meine Adapterversuche seinerzeit eingestellt, genau wegen der Authentifizierungsthematik und möchte mich (ebenfalls als JavaScript-Anfänger) hier nicht auf's Glatteis begeben, zumal es ja bereits diesen Adapter hier gibt.

                                      Soweit ich weiss hat @greyhound ohnehin schon an der neuen API gearbeitet, so dass es vielleicht Ostern was werden könnte.
                                      Wenn alle Stricke reissen, hole ich meinen Code nochmals hoch...

                                      BoronsbruderB Offline
                                      BoronsbruderB Offline
                                      Boronsbruder
                                      wrote on last edited by Boronsbruder
                                      #220

                                      @reutli Das hört sich ja mal positiv an!
                                      @greyhound: Ich stehe auf jeden Fall als Tester egal, ob Alpha oder Beta zur Verfügung!

                                      1 Reply Last reply
                                      1
                                      • A Offline
                                        A Offline
                                        andrebu
                                        wrote on last edited by
                                        #221

                                        Ich hoffe auch das sich jemand findet der den Adapter weiter entwickelt oder @greyhound weiter macht. Sitze gerade an einem Blockly damit der Mower die Beregnung steuern kann.


                                        Intel NUC
                                        Proxmox
                                        Raspberry Pi 4
                                        Conbee 2 Stick
                                        Adapter: deConz Zigbee


                                        H 1 Reply Last reply
                                        0
                                        • A andrebu

                                          Ich hoffe auch das sich jemand findet der den Adapter weiter entwickelt oder @greyhound weiter macht. Sitze gerade an einem Blockly damit der Mower die Beregnung steuern kann.

                                          H Offline
                                          H Offline
                                          h4m4
                                          wrote on last edited by h4m4
                                          #222

                                          Hat jemand diese Adapter mal ausprobiert?
                                          https://github.com/ice987987/ioBroker.husqvarna-automower

                                          R BoronsbruderB M 4 Replies 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

                                          1.0k

                                          Online

                                          32.4k

                                          Users

                                          81.5k

                                          Topics

                                          1.3m

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

                                          • Don't have an account? Register

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