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. ioBroker Allgemein
  4. IRobot Roomba Adapter

NEWS

  • Jahresrückblick 2025 – unser neuer Blogbeitrag ist online! ✨
    BluefoxB
    Bluefox
    17
    1
    2.6k

  • Neuer Blogbeitrag: Monatsrückblick - Dezember 2025 🎄
    BluefoxB
    Bluefox
    13
    1
    1.0k

  • Weihnachtsangebot 2025! 🎄
    BluefoxB
    Bluefox
    25
    1
    2.3k

IRobot Roomba Adapter

Scheduled Pinned Locked Moved ioBroker Allgemein
851 Posts 101 Posters 324.1k Views 65 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.
  • ZefauZ Zefau

    @wizzardking den Zeitplan findest du bereits in den States (unter missions.schedule). Bzgl. des Befehls schau mal die Issues (auch die geschlossenen) von dorita durch (siehe https://github.com/koalazak/dorita980/issues), ob du dort etwas zu i7 findest.

    W Offline
    W Offline
    wizzardking
    wrote on last edited by
    #479

    @Zefau said in IRobot Roomba Adapter:

    missions.schedule

    Hallo Zefau
    Vielen Dank für Deine Antwort.
    Leider sehe ich nur beim älteren iRobot Modell den Zeitplan. Beim i7 sehe ich unter "Missions" leider nur den Ordner "current".

    Den Zeitplan müsste man aber ja auch durch das objekt _runCommand auslesen und setzen können.
    Ich verstehe hier aber die Anleitung nicht ganz.
    Wenn ich "myRobot.getWeek()" im Objekt _runCommand eingebe, würde ich erwarten, dass der aktuelle Zeitplan in den Logs ausgegeben wird, tatsächlich passiert aber nichts.

    ZefauZ 1 Reply Last reply
    0
    • W wizzardking

      @Zefau said in IRobot Roomba Adapter:

      missions.schedule

      Hallo Zefau
      Vielen Dank für Deine Antwort.
      Leider sehe ich nur beim älteren iRobot Modell den Zeitplan. Beim i7 sehe ich unter "Missions" leider nur den Ordner "current".

      Den Zeitplan müsste man aber ja auch durch das objekt _runCommand auslesen und setzen können.
      Ich verstehe hier aber die Anleitung nicht ganz.
      Wenn ich "myRobot.getWeek()" im Objekt _runCommand eingebe, würde ich erwarten, dass der aktuelle Zeitplan in den Logs ausgegeben wird, tatsächlich passiert aber nichts.

      ZefauZ Offline
      ZefauZ Offline
      Zefau
      wrote on last edited by
      #480

      @wizzardking bitte beachtet, dass ich keinen Roomba mehr habe und daher nur noch sehr begrenzt support leisten kann.

      Ich habe runCommand nie selbst ausprobiert. Das Format müsste aber wie folgt sein

      { "command": "start", "time": 1579465092, "initiator": "localApp" }
      

      Meine Adapter: https://zefau.github.io/iobroker/

      1 Reply Last reply
      0
      • ? Offline
        ? Offline
        A Former User
        wrote on last edited by A Former User
        #481

        Disregard.

        1 Reply Last reply
        0
        • A Offline
          A Offline
          Ashuan
          wrote on last edited by Ashuan
          #482

          Hi zusammen,
          ich habe einen s9 und habe mir den Roomba Adapter im IOBroker installiert.
          Die Kommandos unter .commands wie Start, Stop ... funktionieren gut.
          Jedoch wundert es mich das keine Bereichsreinigung möglich ist, also habe ich mich an '_runCommand' gemacht.
          Egal was ich dort übergebe ich bekomme so gar kein Feedback, also keinen Fehler und nix.

          Ich hätte gedacht das dieses Kommando das richtige sei:

          '{"command" : "cleanroom","ordered": 1,"pmap_id": "meine id","regions": [{ "region_id": "12"},{ "region_id": "13"}],"user_pmapv_id": "meine id"}'
          

          Ich habe auch leider kein Erfolg gehabt dorita980 in einem Skript zu verwenden:

          var dorita980 = require('dorita980');
          var robi= new dorita980.Local('???', ':1:1596011664:??', '172.xx.xx.xx');  
          robi.on('connect', init);
          
          function init () {
              if (robi)
              {
              log("init");
              robi.getRobotState(['lastCommand']).then((actualState) => {
                  log(actualState);
              });
              }
          }
          

          Kann mir jemand damit bitte helfen, hat das schon mal jemand im IOBroker gemacht ?

          A 1 Reply Last reply
          1
          • A Ashuan

            Hi zusammen,
            ich habe einen s9 und habe mir den Roomba Adapter im IOBroker installiert.
            Die Kommandos unter .commands wie Start, Stop ... funktionieren gut.
            Jedoch wundert es mich das keine Bereichsreinigung möglich ist, also habe ich mich an '_runCommand' gemacht.
            Egal was ich dort übergebe ich bekomme so gar kein Feedback, also keinen Fehler und nix.

            Ich hätte gedacht das dieses Kommando das richtige sei:

            '{"command" : "cleanroom","ordered": 1,"pmap_id": "meine id","regions": [{ "region_id": "12"},{ "region_id": "13"}],"user_pmapv_id": "meine id"}'
            

            Ich habe auch leider kein Erfolg gehabt dorita980 in einem Skript zu verwenden:

            var dorita980 = require('dorita980');
            var robi= new dorita980.Local('???', ':1:1596011664:??', '172.xx.xx.xx');  
            robi.on('connect', init);
            
            function init () {
                if (robi)
                {
                log("init");
                robi.getRobotState(['lastCommand']).then((actualState) => {
                    log(actualState);
                });
                }
            }
            

            Kann mir jemand damit bitte helfen, hat das schon mal jemand im IOBroker gemacht ?

            A Offline
            A Offline
            Ashuan
            wrote on last edited by Ashuan
            #483

            Hallo zusammen, hallo @Zefau ,
            ich habe mal ein wenig Recherche betrieben. Ich finde Deinen Adapter super und würde gerne die Node _runCommand benutzen.
            Jedoch tut sich beim Benutzen dieser so garnichts.
            So wie ich Deinen Code verstehe (roomba.js) Zeile 151

            		// run command
            		else if (action == '_runCommand' && state.ack !== true)
            		{
            			let command = { command: state.val, time: Date.now() / 1000 | 0, initiator: 'localApp' };
            			robot.publish('cmd', JSON.stringify(command), () => {
            				adapter.log.info('Ran command ' + state.val + '!');
            			});
            		}
            

            läßt Du dort nur ein Kommando wir 'start' o.ä., ohne Parameter zu, da der eigentliche Commandstring erst via stringify erzeugt wird.
            Also möchte ich ein Command wie (btw: Dieses Command funktioniert wenn ich eine Verbindung zum s9 via MQTT Explorer aufbaue)

            {
            	"command": "start",
            	"ordered": 1,
            	"params": {
            		"carpetBoost": false,
            		"noAutoPasses": false,
            		"twoPass": false,
            		"vacHigh": false
            	},
            	"pmap_id": "???",
            	"regions": [
            		{
            			"region_id": "12",
            			"type": "rid"
            		}
            	],
            	"user_pmapv_id": "???"
            }
            

            los schicken, wird folgendes in die Methode publish geschickt:

            { command: {
            	"command": "start",
            	"ordered": 1,
            	"params": {
            		"carpetBoost": false,
            		"noAutoPasses": false,
            		"twoPass": false,
            		"vacHigh": false
            	},
            	"pmap_id": "???",
            	"regions": [
            		{
            			"region_id": "12",
            			"type": "rid"
            		}
            	],
            	"user_pmapv_id": "???"
            }, time: Date.now() / 1000 | 0, initiator: 'localApp' }
            

            ... und das dürfte einen Fehler produzieren.
            Ich möchte Dir nicht vorgreifen, jedoch sollte der case für _runCommand nicht so aussehen ?

            		// run command
            		else if (action == '_runCommand' && state.ack !== true)
            		{
            			robot.publish('cmd', state.val, () => {
            				adapter.log.info('Ran command ' + state.val + '!');
            			});
            		}
            

            Edit: Ich habe gerade meine lokale roomba.js dahingehend geändert. Ich denke der Case wird nicht angesprungen..

            		// run command
            		else if (action == '_runCommand' && state.ack !== true)
            		{
            			adapter.log.info('_runCommand modify');
            
            			robot.publish('cmd', state.val, () => {
            				adapter.log.info('Ran command ' + state.val + '!');
            			});
            		}
            
            

            Ich kenne die Internas von IOBroker nicht und dachte es wäre die Stelle im Code die ausgeführt wird sobald ich den Inhalt der Node 'roomba.0.commands._runCommand' verändere. Ich sehe auch im Log nicht den erwarteten Output '_runCommand modify'
            Liege ich damit falsch ?

            Viele Grüße

            Kai

            A 1 Reply Last reply
            0
            • A Ashuan

              Hallo zusammen, hallo @Zefau ,
              ich habe mal ein wenig Recherche betrieben. Ich finde Deinen Adapter super und würde gerne die Node _runCommand benutzen.
              Jedoch tut sich beim Benutzen dieser so garnichts.
              So wie ich Deinen Code verstehe (roomba.js) Zeile 151

              		// run command
              		else if (action == '_runCommand' && state.ack !== true)
              		{
              			let command = { command: state.val, time: Date.now() / 1000 | 0, initiator: 'localApp' };
              			robot.publish('cmd', JSON.stringify(command), () => {
              				adapter.log.info('Ran command ' + state.val + '!');
              			});
              		}
              

              läßt Du dort nur ein Kommando wir 'start' o.ä., ohne Parameter zu, da der eigentliche Commandstring erst via stringify erzeugt wird.
              Also möchte ich ein Command wie (btw: Dieses Command funktioniert wenn ich eine Verbindung zum s9 via MQTT Explorer aufbaue)

              {
              	"command": "start",
              	"ordered": 1,
              	"params": {
              		"carpetBoost": false,
              		"noAutoPasses": false,
              		"twoPass": false,
              		"vacHigh": false
              	},
              	"pmap_id": "???",
              	"regions": [
              		{
              			"region_id": "12",
              			"type": "rid"
              		}
              	],
              	"user_pmapv_id": "???"
              }
              

              los schicken, wird folgendes in die Methode publish geschickt:

              { command: {
              	"command": "start",
              	"ordered": 1,
              	"params": {
              		"carpetBoost": false,
              		"noAutoPasses": false,
              		"twoPass": false,
              		"vacHigh": false
              	},
              	"pmap_id": "???",
              	"regions": [
              		{
              			"region_id": "12",
              			"type": "rid"
              		}
              	],
              	"user_pmapv_id": "???"
              }, time: Date.now() / 1000 | 0, initiator: 'localApp' }
              

              ... und das dürfte einen Fehler produzieren.
              Ich möchte Dir nicht vorgreifen, jedoch sollte der case für _runCommand nicht so aussehen ?

              		// run command
              		else if (action == '_runCommand' && state.ack !== true)
              		{
              			robot.publish('cmd', state.val, () => {
              				adapter.log.info('Ran command ' + state.val + '!');
              			});
              		}
              

              Edit: Ich habe gerade meine lokale roomba.js dahingehend geändert. Ich denke der Case wird nicht angesprungen..

              		// run command
              		else if (action == '_runCommand' && state.ack !== true)
              		{
              			adapter.log.info('_runCommand modify');
              
              			robot.publish('cmd', state.val, () => {
              				adapter.log.info('Ran command ' + state.val + '!');
              			});
              		}
              
              

              Ich kenne die Internas von IOBroker nicht und dachte es wäre die Stelle im Code die ausgeführt wird sobald ich den Inhalt der Node 'roomba.0.commands._runCommand' verändere. Ich sehe auch im Log nicht den erwarteten Output '_runCommand modify'
              Liege ich damit falsch ?

              Viele Grüße

              Kai

              A Offline
              A Offline
              Ashuan
              wrote on last edited by Ashuan
              #484

              Hallo zusammen,
              entschuldigt bitte, jedoch es hat mir keine Ruhe gelassen.
              Ich habe die roomba.js dahin gehend angepasst sodass der _runCommand Befehl funktioniert.

              roomba.js

              @Zefau : es wäre super wenn Du das prüfen könntest und ggf. einchecken.

              Ich habe folgendes angepasst:

              Zeile 151

              		else if (action == '_runCommand' && state.ack !== true)
              		{
              			robot.publish('cmd', state.val, () => {
              				adapter.log.info('Ran command ' + state.val + '!');
              			});
              		}
              
              

              Zeile 616

              				if (node.node !== undefined)
              					{
              					let leafnode = node.node.substr(node.node.lastIndexOf('.')+1);
              					//adapter.log.info('Leafnode: ' + leafnode + '.');
              
              					if ((leafnode) && (leafnode === '_runCommand' ) && listeners[node.node] === undefined)
              					{
              						adapter.log.info('Subscripe Leafnode: ' + leafnode + '.');
              						adapter.subscribeStates(node.node); // attach state listener
              						listeners[node.node] = node;
              					}
              					adapter.getState(node.node, function(err, res)
              					{
              						if ((err !== null || !res) && (node.node !== undefined && node.description !== undefined))
              							library.set(node, '');
              					});
              				}
              

              Ich habe es bei mir getestet und das _runCommand funktioniert.

              {
              	"command": "start",
              	"ordered": 1,
              	"params": {
              		"carpetBoost": false,
              		"noAutoPasses": false,
              		"twoPass": false,
              		"vacHigh": false
              	},
              	"pmap_id": "yourmapid",
              	"regions": [
              		{
              			"region_id": "12",
              			"type": "rid"
              		}
              	],
              	"user_pmapv_id": "yourid"
              }
              

              Ich bekomme immer wieder ein "Cannot read property 'toString' of null" aber da bin ich dran.
              Ich denke das habe ich mir eingefangen als ich die Nodes etwas verändert habe.

              LG und have fun
              Kai

              ZefauZ F K 3 Replies Last reply
              0
              • A Ashuan

                Hallo zusammen,
                entschuldigt bitte, jedoch es hat mir keine Ruhe gelassen.
                Ich habe die roomba.js dahin gehend angepasst sodass der _runCommand Befehl funktioniert.

                roomba.js

                @Zefau : es wäre super wenn Du das prüfen könntest und ggf. einchecken.

                Ich habe folgendes angepasst:

                Zeile 151

                		else if (action == '_runCommand' && state.ack !== true)
                		{
                			robot.publish('cmd', state.val, () => {
                				adapter.log.info('Ran command ' + state.val + '!');
                			});
                		}
                
                

                Zeile 616

                				if (node.node !== undefined)
                					{
                					let leafnode = node.node.substr(node.node.lastIndexOf('.')+1);
                					//adapter.log.info('Leafnode: ' + leafnode + '.');
                
                					if ((leafnode) && (leafnode === '_runCommand' ) && listeners[node.node] === undefined)
                					{
                						adapter.log.info('Subscripe Leafnode: ' + leafnode + '.');
                						adapter.subscribeStates(node.node); // attach state listener
                						listeners[node.node] = node;
                					}
                					adapter.getState(node.node, function(err, res)
                					{
                						if ((err !== null || !res) && (node.node !== undefined && node.description !== undefined))
                							library.set(node, '');
                					});
                				}
                

                Ich habe es bei mir getestet und das _runCommand funktioniert.

                {
                	"command": "start",
                	"ordered": 1,
                	"params": {
                		"carpetBoost": false,
                		"noAutoPasses": false,
                		"twoPass": false,
                		"vacHigh": false
                	},
                	"pmap_id": "yourmapid",
                	"regions": [
                		{
                			"region_id": "12",
                			"type": "rid"
                		}
                	],
                	"user_pmapv_id": "yourid"
                }
                

                Ich bekomme immer wieder ein "Cannot read property 'toString' of null" aber da bin ich dran.
                Ich denke das habe ich mir eingefangen als ich die Nodes etwas verändert habe.

                LG und have fun
                Kai

                ZefauZ Offline
                ZefauZ Offline
                Zefau
                wrote on last edited by
                #485

                @Ashuan Danke dir! Bitte Repo forken und dann einfach einen pull request :-)

                Meine Adapter: https://zefau.github.io/iobroker/

                A 1 Reply Last reply
                0
                • ZefauZ Zefau

                  @Ashuan Danke dir! Bitte Repo forken und dann einfach einen pull request :-)

                  A Offline
                  A Offline
                  Ashuan
                  wrote on last edited by
                  #486

                  Alles klar, mache ich so.

                  1 Reply Last reply
                  0
                  • eric2905E eric2905

                    Ich habe meinen alten Roomba, den ich mit WLAN umgerüstet habe, über Node-Red eingebunden.

                    Das hat mir völlig gereicht - jetzt habe ich einen Neato Botvac und für den gibt es ja einen Adapter.

                    Gruß,

                    Eric

                    Von unterwegs getippert

                    ? Offline
                    ? Offline
                    A Former User
                    wrote on last edited by
                    #487

                    @eric2905 wie hast du deinen den umgebaut? Ich habe einen Roomba 605

                    eric2905E 1 Reply Last reply
                    0
                    • ? A Former User

                      @eric2905 wie hast du deinen den umgebaut? Ich habe einen Roomba 605

                      eric2905E Offline
                      eric2905E Offline
                      eric2905
                      wrote on last edited by
                      #488

                      @HeinrichB Ich habe schon ewig keinen Roomba mehr ... der musste einem Xiaomi weichen.
                      Ich hatte seinerzeit die WLAN-Topplate drauf.

                      Gruß,
                      Eric

                      Roses are red, violets are blue,

                      if I listen to metal, my neighbours do too

                      1 Reply Last reply
                      0
                      • F Offline
                        F Offline
                        fvp
                        wrote on last edited by
                        #489

                        Ich hatte auch die Meldung
                        Cannot read property 'toString' of null
                        im Log.

                        Ursache war anscheinend die fehlenden Einträge unter:
                        roomba.0.missions.current

                        Nachdem ich die Einträge von Hand hinzugefügt habe werden diese vom Adapter verwendet und im Log gibt es keinen Fehler mehr.

                        NewpicselN 1 Reply Last reply
                        0
                        • F Offline
                          F Offline
                          fvp
                          wrote on last edited by
                          #490

                          Ich habe heute festgestellt das es bei mir ein kleines Problem mit dem i7 gibt.
                          Job 211 wurde wie geplant gestartet und sah auch am Anfang sehr gut aus!
                          Karte wurde gezeichnet, Zeit und Fläche wurde hoch gezählt.
                          Dann musste der Akku nachgeladen werden.
                          Im Anschluss war es immer noch Job 211 und die Fläche war auch noch die alte.
                          Allerdings wurde die Zeit (Startzeit und Dauer) und die Karte zurückgesetzt und dann nur noch mit den Daten nach dem laden gefüttert. Dies ist auch nach Abschluss so geblieben.
                          Somit ist die History für mich eigentlich Wertlos.
                          Job 211 zeigt die falsche Zeit und nur einen Teil der Karte...
                          Konnte jemand anders das schon einmal beobachten?

                          1 Reply Last reply
                          0
                          • F fvp

                            Ich hatte auch die Meldung
                            Cannot read property 'toString' of null
                            im Log.

                            Ursache war anscheinend die fehlenden Einträge unter:
                            roomba.0.missions.current

                            Nachdem ich die Einträge von Hand hinzugefügt habe werden diese vom Adapter verwendet und im Log gibt es keinen Fehler mehr.

                            NewpicselN Offline
                            NewpicselN Offline
                            Newpicsel
                            wrote on last edited by
                            #491

                            @fvp said in IRobot Roomba Adapter:

                            Ich hatte auch die Meldung
                            Cannot read property 'toString' of null
                            im Log.

                            Ursache war anscheinend die fehlenden Einträge unter:
                            roomba.0.missions.current

                            Nachdem ich die Einträge von Hand hinzugefügt habe werden diese vom Adapter verwendet und im Log gibt es keinen Fehler mehr.

                            Moin, bei mir fehlen die Einträge auch, was genau hast du eingetragen und was muss ich beachten?

                            Danke und schöne Grüße

                            F 1 Reply Last reply
                            0
                            • NewpicselN Newpicsel

                              @fvp said in IRobot Roomba Adapter:

                              Ich hatte auch die Meldung
                              Cannot read property 'toString' of null
                              im Log.

                              Ursache war anscheinend die fehlenden Einträge unter:
                              roomba.0.missions.current

                              Nachdem ich die Einträge von Hand hinzugefügt habe werden diese vom Adapter verwendet und im Log gibt es keinen Fehler mehr.

                              Moin, bei mir fehlen die Einträge auch, was genau hast du eingetragen und was muss ich beachten?

                              Danke und schöne Grüße

                              F Offline
                              F Offline
                              fvp
                              wrote on last edited by
                              #492

                              Vieleicht hat @Zefau noch eine bessere Variante die Datenpunkte zu erstellen?

                              @Newpicsel

                              Hier mal ein Screenshot der Datenpunkte.

                              d63c5f4d-ae17-4fa3-b47d-8614d6744dff-grafik.png

                              und hier die RAW Einträge

                              {
                                "from": "system.adapter.roomba.0",
                                "user": "system.user.admin",
                                "ts": 1573151255191,
                                "common": {
                                  "name": "All data of current mission",
                                  "role": "json",
                                  "type": "string",
                                  "write": false
                                },
                                "native": {},
                                "acl": {
                                  "object": 1636,
                                  "owner": "system.user.admin",
                                  "ownerGroup": "system.group.administrator",
                                  "state": 1636
                                },
                                "_id": "roomba.0.missions.current._data",
                                "type": "state"
                              }
                              
                              {
                                "from": "system.adapter.roomba.0",
                                "user": "system.user.admin",
                                "ts": 1573151255194,
                                "common": {
                                  "name": "Cycle mode of current mission",
                                  "role": "text",
                                  "type": "string",
                                  "write": false
                                },
                                "native": {},
                                "acl": {
                                  "object": 1636,
                                  "owner": "system.user.admin",
                                  "ownerGroup": "system.group.administrator",
                                  "state": 1636
                                },
                                "_id": "roomba.0.missions.current.cycle",
                                "type": "state"
                              }
                              
                              {
                                "from": "system.adapter.admin.0",
                                "user": "system.user.admin",
                                "ts": 1597476142637,
                                "common": {
                                  "name": "Timestamp when the current mission has ended",
                                  "role": "value",
                                  "type": "string",
                                  "desc": "Timestamp when the current mission has ended",
                                  "def": "",
                                  "read": true,
                                  "write": true
                                },
                                "native": {},
                                "acl": {
                                  "object": 1636,
                                  "owner": "system.user.admin",
                                  "ownerGroup": "system.group.administrator",
                                  "state": 1636
                                },
                                "_id": "roomba.0.missions.current.ended",
                                "type": "state"
                              }
                              
                              {
                                "_id": "roomba.0.missions.current.endedDateTime",
                                "type": "state",
                                "common": {
                                  "name": "DateTime when the current mission has ended",
                                  "role": "text",
                                  "type": "string",
                                  "desc": "DateTime when the current mission has ended",
                                  "def": "",
                                  "read": true,
                                  "write": true
                                },
                                "native": {},
                                "from": "system.adapter.admin.0",
                                "user": "system.user.admin",
                                "ts": 1597476060069,
                                "acl": {
                                  "object": 1636,
                                  "owner": "system.user.admin",
                                  "ownerGroup": "system.group.administrator",
                                  "state": 1636
                                }
                              }
                              
                              {
                                "common": {
                                  "name": "Indicates an error during last mission",
                                  "role": "indicator",
                                  "type": "boolean",
                                  "write": false
                                },
                                "type": "state",
                                "native": {},
                                "from": "system.adapter.roomba.0",
                                "user": "system.user.admin",
                                "ts": 1589192844012,
                                "_id": "roomba.0.missions.current.error",
                                "acl": {
                                  "object": 1636,
                                  "state": 1636,
                                  "owner": "system.user.admin",
                                  "ownerGroup": "system.group.administrator"
                                }
                              }
                              
                              {
                                "_id": "roomba.0.missions.current.id",
                                "type": "state",
                                "common": {
                                  "name": "ID of current mission",
                                  "role": "text",
                                  "type": "string",
                                  "desc": "ID of current mission",
                                  "def": "",
                                  "read": true,
                                  "write": true
                                },
                                "native": {},
                                "from": "system.adapter.admin.0",
                                "user": "system.user.admin",
                                "ts": 1597475913235,
                                "acl": {
                                  "object": 1636,
                                  "owner": "system.user.admin",
                                  "ownerGroup": "system.group.administrator",
                                  "state": 1636
                                }
                              }
                              
                              {
                                "_id": "roomba.0.missions.current.initiator",
                                "type": "state",
                                "common": {
                                  "name": "Initiator of current mission",
                                  "role": "text",
                                  "type": "string",
                                  "desc": "Initiator of current mission",
                                  "def": "",
                                  "read": true,
                                  "write": true
                                },
                                "native": {},
                                "from": "system.adapter.admin.0",
                                "user": "system.user.admin",
                                "ts": 1597475853384,
                                "acl": {
                                  "object": 1636,
                                  "owner": "system.user.admin",
                                  "ownerGroup": "system.group.administrator",
                                  "state": 1636
                                }
                              }
                              
                              {
                                "_id": "roomba.0.missions.current.mapHTML",
                                "type": "state",
                                "common": {
                                  "name": "HTML for the map of current mission",
                                  "role": "text",
                                  "type": "string",
                                  "desc": "HTML for the map of current mission",
                                  "def": "",
                                  "read": true,
                                  "write": true
                                },
                                "native": {},
                                "from": "system.adapter.admin.0",
                                "user": "system.user.admin",
                                "ts": 1597475796745,
                                "acl": {
                                  "object": 1636,
                                  "owner": "system.user.admin",
                                  "ownerGroup": "system.group.administrator",
                                  "state": 1636
                                }
                              }
                              
                              {
                                "_id": "roomba.0.missions.current.mapImage",
                                "type": "state",
                                "common": {
                                  "name": "Image of the map of current mission",
                                  "role": "text",
                                  "type": "string",
                                  "desc": "Image of the map of current mission",
                                  "def": "",
                                  "read": true,
                                  "write": true
                                },
                                "native": {},
                                "from": "system.adapter.admin.0",
                                "user": "system.user.admin",
                                "ts": 1597475737183,
                                "acl": {
                                  "object": 1636,
                                  "owner": "system.user.admin",
                                  "ownerGroup": "system.group.administrator",
                                  "state": 1636
                                }
                              }
                              
                              {
                                "_id": "roomba.0.missions.current.mapSize",
                                "type": "state",
                                "common": {
                                  "name": "Size (in px) of the map",
                                  "role": "json",
                                  "type": "string",
                                  "desc": "Size (in px) of the map",
                                  "def": "",
                                  "read": true,
                                  "write": true
                                },
                                "native": {},
                                "from": "system.adapter.admin.0",
                                "user": "system.user.admin",
                                "ts": 1597475646885,
                                "acl": {
                                  "object": 1636,
                                  "owner": "system.user.admin",
                                  "ownerGroup": "system.group.administrator",
                                  "state": 1636
                                }
                              }
                              
                              {
                                "_id": "roomba.0.missions.current.path",
                                "type": "state",
                                "common": {
                                  "name": "Path of current mission",
                                  "role": "text",
                                  "type": "string",
                                  "desc": "Path of current mission",
                                  "def": "",
                                  "read": true,
                                  "write": true
                                },
                                "native": {},
                                "from": "system.adapter.admin.0",
                                "user": "system.user.admin",
                                "ts": 1597475576123,
                                "acl": {
                                  "object": 1636,
                                  "owner": "system.user.admin",
                                  "ownerGroup": "system.group.administrator",
                                  "state": 1636
                                }
                              }
                              
                              {
                                "common": {
                                  "name": "Phase of current mission",
                                  "role": "text",
                                  "type": "string",
                                  "write": false
                                },
                                "type": "state",
                                "native": {},
                                "from": "system.adapter.roomba.0",
                                "user": "system.user.admin",
                                "ts": 1589192844011,
                                "_id": "roomba.0.missions.current.phase",
                                "acl": {
                                  "object": 1636,
                                  "state": 1636,
                                  "owner": "system.user.admin",
                                  "ownerGroup": "system.group.administrator"
                                }
                              }
                              
                              {
                                "from": "system.adapter.roomba.0",
                                "user": "system.user.admin",
                                "ts": 1573151255194,
                                "common": {
                                  "name": "Runtime in seconds of the current mission",
                                  "role": "value",
                                  "type": "string",
                                  "write": false
                                },
                                "native": {},
                                "acl": {
                                  "object": 1636,
                                  "owner": "system.user.admin",
                                  "ownerGroup": "system.group.administrator",
                                  "state": 1636
                                },
                                "_id": "roomba.0.missions.current.runtime",
                                "type": "state"
                              }
                              
                              {
                                "_id": "roomba.0.missions.current.sqm",
                                "type": "state",
                                "common": {
                                  "name": "Cleaned square-meters of current mission",
                                  "role": "",
                                  "type": "string",
                                  "desc": "Cleaned square-meters of current mission",
                                  "def": "",
                                  "read": true,
                                  "write": true
                                },
                                "native": {},
                                "from": "system.adapter.admin.0",
                                "user": "system.user.admin",
                                "ts": 1597475207130,
                                "acl": {
                                  "object": 1636,
                                  "owner": "system.user.admin",
                                  "ownerGroup": "system.group.administrator",
                                  "state": 1636
                                }
                              }
                              
                              {
                                "_id": "roomba.0.missions.current.started",
                                "type": "state",
                                "common": {
                                  "name": "Timestamp when the current mission has started",
                                  "role": "value",
                                  "type": "string",
                                  "desc": "Timestamp when the current mission has started",
                                  "def": "",
                                  "read": true,
                                  "write": true
                                },
                                "native": {},
                                "from": "system.adapter.admin.0",
                                "user": "system.user.admin",
                                "ts": 1597475455408,
                                "acl": {
                                  "object": 1636,
                                  "owner": "system.user.admin",
                                  "ownerGroup": "system.group.administrator",
                                  "state": 1636
                                }
                              }
                              
                              {
                                "_id": "roomba.0.missions.current.startedDateTime",
                                "type": "state",
                                "common": {
                                  "name": "DateTime when the current mission has started",
                                  "role": "text",
                                  "type": "string",
                                  "desc": "DateTime when the current mission has started",
                                  "def": "",
                                  "read": true,
                                  "write": true
                                },
                                "native": {},
                                "from": "system.adapter.admin.0",
                                "user": "system.user.admin",
                                "ts": 1597475332114,
                                "acl": {
                                  "object": 1636,
                                  "owner": "system.user.admin",
                                  "ownerGroup": "system.group.administrator",
                                  "state": 1636
                                }
                              }
                              
                              NewpicselN 2 Replies Last reply
                              0
                              • F fvp

                                Vieleicht hat @Zefau noch eine bessere Variante die Datenpunkte zu erstellen?

                                @Newpicsel

                                Hier mal ein Screenshot der Datenpunkte.

                                d63c5f4d-ae17-4fa3-b47d-8614d6744dff-grafik.png

                                und hier die RAW Einträge

                                {
                                  "from": "system.adapter.roomba.0",
                                  "user": "system.user.admin",
                                  "ts": 1573151255191,
                                  "common": {
                                    "name": "All data of current mission",
                                    "role": "json",
                                    "type": "string",
                                    "write": false
                                  },
                                  "native": {},
                                  "acl": {
                                    "object": 1636,
                                    "owner": "system.user.admin",
                                    "ownerGroup": "system.group.administrator",
                                    "state": 1636
                                  },
                                  "_id": "roomba.0.missions.current._data",
                                  "type": "state"
                                }
                                
                                {
                                  "from": "system.adapter.roomba.0",
                                  "user": "system.user.admin",
                                  "ts": 1573151255194,
                                  "common": {
                                    "name": "Cycle mode of current mission",
                                    "role": "text",
                                    "type": "string",
                                    "write": false
                                  },
                                  "native": {},
                                  "acl": {
                                    "object": 1636,
                                    "owner": "system.user.admin",
                                    "ownerGroup": "system.group.administrator",
                                    "state": 1636
                                  },
                                  "_id": "roomba.0.missions.current.cycle",
                                  "type": "state"
                                }
                                
                                {
                                  "from": "system.adapter.admin.0",
                                  "user": "system.user.admin",
                                  "ts": 1597476142637,
                                  "common": {
                                    "name": "Timestamp when the current mission has ended",
                                    "role": "value",
                                    "type": "string",
                                    "desc": "Timestamp when the current mission has ended",
                                    "def": "",
                                    "read": true,
                                    "write": true
                                  },
                                  "native": {},
                                  "acl": {
                                    "object": 1636,
                                    "owner": "system.user.admin",
                                    "ownerGroup": "system.group.administrator",
                                    "state": 1636
                                  },
                                  "_id": "roomba.0.missions.current.ended",
                                  "type": "state"
                                }
                                
                                {
                                  "_id": "roomba.0.missions.current.endedDateTime",
                                  "type": "state",
                                  "common": {
                                    "name": "DateTime when the current mission has ended",
                                    "role": "text",
                                    "type": "string",
                                    "desc": "DateTime when the current mission has ended",
                                    "def": "",
                                    "read": true,
                                    "write": true
                                  },
                                  "native": {},
                                  "from": "system.adapter.admin.0",
                                  "user": "system.user.admin",
                                  "ts": 1597476060069,
                                  "acl": {
                                    "object": 1636,
                                    "owner": "system.user.admin",
                                    "ownerGroup": "system.group.administrator",
                                    "state": 1636
                                  }
                                }
                                
                                {
                                  "common": {
                                    "name": "Indicates an error during last mission",
                                    "role": "indicator",
                                    "type": "boolean",
                                    "write": false
                                  },
                                  "type": "state",
                                  "native": {},
                                  "from": "system.adapter.roomba.0",
                                  "user": "system.user.admin",
                                  "ts": 1589192844012,
                                  "_id": "roomba.0.missions.current.error",
                                  "acl": {
                                    "object": 1636,
                                    "state": 1636,
                                    "owner": "system.user.admin",
                                    "ownerGroup": "system.group.administrator"
                                  }
                                }
                                
                                {
                                  "_id": "roomba.0.missions.current.id",
                                  "type": "state",
                                  "common": {
                                    "name": "ID of current mission",
                                    "role": "text",
                                    "type": "string",
                                    "desc": "ID of current mission",
                                    "def": "",
                                    "read": true,
                                    "write": true
                                  },
                                  "native": {},
                                  "from": "system.adapter.admin.0",
                                  "user": "system.user.admin",
                                  "ts": 1597475913235,
                                  "acl": {
                                    "object": 1636,
                                    "owner": "system.user.admin",
                                    "ownerGroup": "system.group.administrator",
                                    "state": 1636
                                  }
                                }
                                
                                {
                                  "_id": "roomba.0.missions.current.initiator",
                                  "type": "state",
                                  "common": {
                                    "name": "Initiator of current mission",
                                    "role": "text",
                                    "type": "string",
                                    "desc": "Initiator of current mission",
                                    "def": "",
                                    "read": true,
                                    "write": true
                                  },
                                  "native": {},
                                  "from": "system.adapter.admin.0",
                                  "user": "system.user.admin",
                                  "ts": 1597475853384,
                                  "acl": {
                                    "object": 1636,
                                    "owner": "system.user.admin",
                                    "ownerGroup": "system.group.administrator",
                                    "state": 1636
                                  }
                                }
                                
                                {
                                  "_id": "roomba.0.missions.current.mapHTML",
                                  "type": "state",
                                  "common": {
                                    "name": "HTML for the map of current mission",
                                    "role": "text",
                                    "type": "string",
                                    "desc": "HTML for the map of current mission",
                                    "def": "",
                                    "read": true,
                                    "write": true
                                  },
                                  "native": {},
                                  "from": "system.adapter.admin.0",
                                  "user": "system.user.admin",
                                  "ts": 1597475796745,
                                  "acl": {
                                    "object": 1636,
                                    "owner": "system.user.admin",
                                    "ownerGroup": "system.group.administrator",
                                    "state": 1636
                                  }
                                }
                                
                                {
                                  "_id": "roomba.0.missions.current.mapImage",
                                  "type": "state",
                                  "common": {
                                    "name": "Image of the map of current mission",
                                    "role": "text",
                                    "type": "string",
                                    "desc": "Image of the map of current mission",
                                    "def": "",
                                    "read": true,
                                    "write": true
                                  },
                                  "native": {},
                                  "from": "system.adapter.admin.0",
                                  "user": "system.user.admin",
                                  "ts": 1597475737183,
                                  "acl": {
                                    "object": 1636,
                                    "owner": "system.user.admin",
                                    "ownerGroup": "system.group.administrator",
                                    "state": 1636
                                  }
                                }
                                
                                {
                                  "_id": "roomba.0.missions.current.mapSize",
                                  "type": "state",
                                  "common": {
                                    "name": "Size (in px) of the map",
                                    "role": "json",
                                    "type": "string",
                                    "desc": "Size (in px) of the map",
                                    "def": "",
                                    "read": true,
                                    "write": true
                                  },
                                  "native": {},
                                  "from": "system.adapter.admin.0",
                                  "user": "system.user.admin",
                                  "ts": 1597475646885,
                                  "acl": {
                                    "object": 1636,
                                    "owner": "system.user.admin",
                                    "ownerGroup": "system.group.administrator",
                                    "state": 1636
                                  }
                                }
                                
                                {
                                  "_id": "roomba.0.missions.current.path",
                                  "type": "state",
                                  "common": {
                                    "name": "Path of current mission",
                                    "role": "text",
                                    "type": "string",
                                    "desc": "Path of current mission",
                                    "def": "",
                                    "read": true,
                                    "write": true
                                  },
                                  "native": {},
                                  "from": "system.adapter.admin.0",
                                  "user": "system.user.admin",
                                  "ts": 1597475576123,
                                  "acl": {
                                    "object": 1636,
                                    "owner": "system.user.admin",
                                    "ownerGroup": "system.group.administrator",
                                    "state": 1636
                                  }
                                }
                                
                                {
                                  "common": {
                                    "name": "Phase of current mission",
                                    "role": "text",
                                    "type": "string",
                                    "write": false
                                  },
                                  "type": "state",
                                  "native": {},
                                  "from": "system.adapter.roomba.0",
                                  "user": "system.user.admin",
                                  "ts": 1589192844011,
                                  "_id": "roomba.0.missions.current.phase",
                                  "acl": {
                                    "object": 1636,
                                    "state": 1636,
                                    "owner": "system.user.admin",
                                    "ownerGroup": "system.group.administrator"
                                  }
                                }
                                
                                {
                                  "from": "system.adapter.roomba.0",
                                  "user": "system.user.admin",
                                  "ts": 1573151255194,
                                  "common": {
                                    "name": "Runtime in seconds of the current mission",
                                    "role": "value",
                                    "type": "string",
                                    "write": false
                                  },
                                  "native": {},
                                  "acl": {
                                    "object": 1636,
                                    "owner": "system.user.admin",
                                    "ownerGroup": "system.group.administrator",
                                    "state": 1636
                                  },
                                  "_id": "roomba.0.missions.current.runtime",
                                  "type": "state"
                                }
                                
                                {
                                  "_id": "roomba.0.missions.current.sqm",
                                  "type": "state",
                                  "common": {
                                    "name": "Cleaned square-meters of current mission",
                                    "role": "",
                                    "type": "string",
                                    "desc": "Cleaned square-meters of current mission",
                                    "def": "",
                                    "read": true,
                                    "write": true
                                  },
                                  "native": {},
                                  "from": "system.adapter.admin.0",
                                  "user": "system.user.admin",
                                  "ts": 1597475207130,
                                  "acl": {
                                    "object": 1636,
                                    "owner": "system.user.admin",
                                    "ownerGroup": "system.group.administrator",
                                    "state": 1636
                                  }
                                }
                                
                                {
                                  "_id": "roomba.0.missions.current.started",
                                  "type": "state",
                                  "common": {
                                    "name": "Timestamp when the current mission has started",
                                    "role": "value",
                                    "type": "string",
                                    "desc": "Timestamp when the current mission has started",
                                    "def": "",
                                    "read": true,
                                    "write": true
                                  },
                                  "native": {},
                                  "from": "system.adapter.admin.0",
                                  "user": "system.user.admin",
                                  "ts": 1597475455408,
                                  "acl": {
                                    "object": 1636,
                                    "owner": "system.user.admin",
                                    "ownerGroup": "system.group.administrator",
                                    "state": 1636
                                  }
                                }
                                
                                {
                                  "_id": "roomba.0.missions.current.startedDateTime",
                                  "type": "state",
                                  "common": {
                                    "name": "DateTime when the current mission has started",
                                    "role": "text",
                                    "type": "string",
                                    "desc": "DateTime when the current mission has started",
                                    "def": "",
                                    "read": true,
                                    "write": true
                                  },
                                  "native": {},
                                  "from": "system.adapter.admin.0",
                                  "user": "system.user.admin",
                                  "ts": 1597475332114,
                                  "acl": {
                                    "object": 1636,
                                    "owner": "system.user.admin",
                                    "ownerGroup": "system.group.administrator",
                                    "state": 1636
                                  }
                                }
                                
                                NewpicselN Offline
                                NewpicselN Offline
                                Newpicsel
                                wrote on last edited by
                                #493

                                @fvp Danke, werde das am Wochenende mal testen, hab schon ziemlich lange mit dem Problem zutun, aber darauf die Punkte manuell einzutragen, bin ich bisher nicht gekommen.
                                LG

                                1 Reply Last reply
                                0
                                • F fvp

                                  Vieleicht hat @Zefau noch eine bessere Variante die Datenpunkte zu erstellen?

                                  @Newpicsel

                                  Hier mal ein Screenshot der Datenpunkte.

                                  d63c5f4d-ae17-4fa3-b47d-8614d6744dff-grafik.png

                                  und hier die RAW Einträge

                                  {
                                    "from": "system.adapter.roomba.0",
                                    "user": "system.user.admin",
                                    "ts": 1573151255191,
                                    "common": {
                                      "name": "All data of current mission",
                                      "role": "json",
                                      "type": "string",
                                      "write": false
                                    },
                                    "native": {},
                                    "acl": {
                                      "object": 1636,
                                      "owner": "system.user.admin",
                                      "ownerGroup": "system.group.administrator",
                                      "state": 1636
                                    },
                                    "_id": "roomba.0.missions.current._data",
                                    "type": "state"
                                  }
                                  
                                  {
                                    "from": "system.adapter.roomba.0",
                                    "user": "system.user.admin",
                                    "ts": 1573151255194,
                                    "common": {
                                      "name": "Cycle mode of current mission",
                                      "role": "text",
                                      "type": "string",
                                      "write": false
                                    },
                                    "native": {},
                                    "acl": {
                                      "object": 1636,
                                      "owner": "system.user.admin",
                                      "ownerGroup": "system.group.administrator",
                                      "state": 1636
                                    },
                                    "_id": "roomba.0.missions.current.cycle",
                                    "type": "state"
                                  }
                                  
                                  {
                                    "from": "system.adapter.admin.0",
                                    "user": "system.user.admin",
                                    "ts": 1597476142637,
                                    "common": {
                                      "name": "Timestamp when the current mission has ended",
                                      "role": "value",
                                      "type": "string",
                                      "desc": "Timestamp when the current mission has ended",
                                      "def": "",
                                      "read": true,
                                      "write": true
                                    },
                                    "native": {},
                                    "acl": {
                                      "object": 1636,
                                      "owner": "system.user.admin",
                                      "ownerGroup": "system.group.administrator",
                                      "state": 1636
                                    },
                                    "_id": "roomba.0.missions.current.ended",
                                    "type": "state"
                                  }
                                  
                                  {
                                    "_id": "roomba.0.missions.current.endedDateTime",
                                    "type": "state",
                                    "common": {
                                      "name": "DateTime when the current mission has ended",
                                      "role": "text",
                                      "type": "string",
                                      "desc": "DateTime when the current mission has ended",
                                      "def": "",
                                      "read": true,
                                      "write": true
                                    },
                                    "native": {},
                                    "from": "system.adapter.admin.0",
                                    "user": "system.user.admin",
                                    "ts": 1597476060069,
                                    "acl": {
                                      "object": 1636,
                                      "owner": "system.user.admin",
                                      "ownerGroup": "system.group.administrator",
                                      "state": 1636
                                    }
                                  }
                                  
                                  {
                                    "common": {
                                      "name": "Indicates an error during last mission",
                                      "role": "indicator",
                                      "type": "boolean",
                                      "write": false
                                    },
                                    "type": "state",
                                    "native": {},
                                    "from": "system.adapter.roomba.0",
                                    "user": "system.user.admin",
                                    "ts": 1589192844012,
                                    "_id": "roomba.0.missions.current.error",
                                    "acl": {
                                      "object": 1636,
                                      "state": 1636,
                                      "owner": "system.user.admin",
                                      "ownerGroup": "system.group.administrator"
                                    }
                                  }
                                  
                                  {
                                    "_id": "roomba.0.missions.current.id",
                                    "type": "state",
                                    "common": {
                                      "name": "ID of current mission",
                                      "role": "text",
                                      "type": "string",
                                      "desc": "ID of current mission",
                                      "def": "",
                                      "read": true,
                                      "write": true
                                    },
                                    "native": {},
                                    "from": "system.adapter.admin.0",
                                    "user": "system.user.admin",
                                    "ts": 1597475913235,
                                    "acl": {
                                      "object": 1636,
                                      "owner": "system.user.admin",
                                      "ownerGroup": "system.group.administrator",
                                      "state": 1636
                                    }
                                  }
                                  
                                  {
                                    "_id": "roomba.0.missions.current.initiator",
                                    "type": "state",
                                    "common": {
                                      "name": "Initiator of current mission",
                                      "role": "text",
                                      "type": "string",
                                      "desc": "Initiator of current mission",
                                      "def": "",
                                      "read": true,
                                      "write": true
                                    },
                                    "native": {},
                                    "from": "system.adapter.admin.0",
                                    "user": "system.user.admin",
                                    "ts": 1597475853384,
                                    "acl": {
                                      "object": 1636,
                                      "owner": "system.user.admin",
                                      "ownerGroup": "system.group.administrator",
                                      "state": 1636
                                    }
                                  }
                                  
                                  {
                                    "_id": "roomba.0.missions.current.mapHTML",
                                    "type": "state",
                                    "common": {
                                      "name": "HTML for the map of current mission",
                                      "role": "text",
                                      "type": "string",
                                      "desc": "HTML for the map of current mission",
                                      "def": "",
                                      "read": true,
                                      "write": true
                                    },
                                    "native": {},
                                    "from": "system.adapter.admin.0",
                                    "user": "system.user.admin",
                                    "ts": 1597475796745,
                                    "acl": {
                                      "object": 1636,
                                      "owner": "system.user.admin",
                                      "ownerGroup": "system.group.administrator",
                                      "state": 1636
                                    }
                                  }
                                  
                                  {
                                    "_id": "roomba.0.missions.current.mapImage",
                                    "type": "state",
                                    "common": {
                                      "name": "Image of the map of current mission",
                                      "role": "text",
                                      "type": "string",
                                      "desc": "Image of the map of current mission",
                                      "def": "",
                                      "read": true,
                                      "write": true
                                    },
                                    "native": {},
                                    "from": "system.adapter.admin.0",
                                    "user": "system.user.admin",
                                    "ts": 1597475737183,
                                    "acl": {
                                      "object": 1636,
                                      "owner": "system.user.admin",
                                      "ownerGroup": "system.group.administrator",
                                      "state": 1636
                                    }
                                  }
                                  
                                  {
                                    "_id": "roomba.0.missions.current.mapSize",
                                    "type": "state",
                                    "common": {
                                      "name": "Size (in px) of the map",
                                      "role": "json",
                                      "type": "string",
                                      "desc": "Size (in px) of the map",
                                      "def": "",
                                      "read": true,
                                      "write": true
                                    },
                                    "native": {},
                                    "from": "system.adapter.admin.0",
                                    "user": "system.user.admin",
                                    "ts": 1597475646885,
                                    "acl": {
                                      "object": 1636,
                                      "owner": "system.user.admin",
                                      "ownerGroup": "system.group.administrator",
                                      "state": 1636
                                    }
                                  }
                                  
                                  {
                                    "_id": "roomba.0.missions.current.path",
                                    "type": "state",
                                    "common": {
                                      "name": "Path of current mission",
                                      "role": "text",
                                      "type": "string",
                                      "desc": "Path of current mission",
                                      "def": "",
                                      "read": true,
                                      "write": true
                                    },
                                    "native": {},
                                    "from": "system.adapter.admin.0",
                                    "user": "system.user.admin",
                                    "ts": 1597475576123,
                                    "acl": {
                                      "object": 1636,
                                      "owner": "system.user.admin",
                                      "ownerGroup": "system.group.administrator",
                                      "state": 1636
                                    }
                                  }
                                  
                                  {
                                    "common": {
                                      "name": "Phase of current mission",
                                      "role": "text",
                                      "type": "string",
                                      "write": false
                                    },
                                    "type": "state",
                                    "native": {},
                                    "from": "system.adapter.roomba.0",
                                    "user": "system.user.admin",
                                    "ts": 1589192844011,
                                    "_id": "roomba.0.missions.current.phase",
                                    "acl": {
                                      "object": 1636,
                                      "state": 1636,
                                      "owner": "system.user.admin",
                                      "ownerGroup": "system.group.administrator"
                                    }
                                  }
                                  
                                  {
                                    "from": "system.adapter.roomba.0",
                                    "user": "system.user.admin",
                                    "ts": 1573151255194,
                                    "common": {
                                      "name": "Runtime in seconds of the current mission",
                                      "role": "value",
                                      "type": "string",
                                      "write": false
                                    },
                                    "native": {},
                                    "acl": {
                                      "object": 1636,
                                      "owner": "system.user.admin",
                                      "ownerGroup": "system.group.administrator",
                                      "state": 1636
                                    },
                                    "_id": "roomba.0.missions.current.runtime",
                                    "type": "state"
                                  }
                                  
                                  {
                                    "_id": "roomba.0.missions.current.sqm",
                                    "type": "state",
                                    "common": {
                                      "name": "Cleaned square-meters of current mission",
                                      "role": "",
                                      "type": "string",
                                      "desc": "Cleaned square-meters of current mission",
                                      "def": "",
                                      "read": true,
                                      "write": true
                                    },
                                    "native": {},
                                    "from": "system.adapter.admin.0",
                                    "user": "system.user.admin",
                                    "ts": 1597475207130,
                                    "acl": {
                                      "object": 1636,
                                      "owner": "system.user.admin",
                                      "ownerGroup": "system.group.administrator",
                                      "state": 1636
                                    }
                                  }
                                  
                                  {
                                    "_id": "roomba.0.missions.current.started",
                                    "type": "state",
                                    "common": {
                                      "name": "Timestamp when the current mission has started",
                                      "role": "value",
                                      "type": "string",
                                      "desc": "Timestamp when the current mission has started",
                                      "def": "",
                                      "read": true,
                                      "write": true
                                    },
                                    "native": {},
                                    "from": "system.adapter.admin.0",
                                    "user": "system.user.admin",
                                    "ts": 1597475455408,
                                    "acl": {
                                      "object": 1636,
                                      "owner": "system.user.admin",
                                      "ownerGroup": "system.group.administrator",
                                      "state": 1636
                                    }
                                  }
                                  
                                  {
                                    "_id": "roomba.0.missions.current.startedDateTime",
                                    "type": "state",
                                    "common": {
                                      "name": "DateTime when the current mission has started",
                                      "role": "text",
                                      "type": "string",
                                      "desc": "DateTime when the current mission has started",
                                      "def": "",
                                      "read": true,
                                      "write": true
                                    },
                                    "native": {},
                                    "from": "system.adapter.admin.0",
                                    "user": "system.user.admin",
                                    "ts": 1597475332114,
                                    "acl": {
                                      "object": 1636,
                                      "owner": "system.user.admin",
                                      "ownerGroup": "system.group.administrator",
                                      "state": 1636
                                    }
                                  }
                                  
                                  NewpicselN Offline
                                  NewpicselN Offline
                                  Newpicsel
                                  wrote on last edited by
                                  #494

                                  @fvp hat super geklappt!

                                  Zuerst wurden mir zwar die Werte angezeigt jedoch nicht ausgegeben wenn sie abgefragt wurden, musste den jeweiligen Wert einmal manuell updaten dann hat’s auch geklappt!

                                  Einzig nur, mir werden noch die Werte angegeben, von der letzten Aufgabe bevor dieses Problem auftrat, hoffe das aktualisiert sich mit der nächsten Aufgabe wieder...

                                  Danke nochmal für dein Hinweis :grin:

                                  1 Reply Last reply
                                  0
                                  • JB_SullivanJ Offline
                                    JB_SullivanJ Offline
                                    JB_Sullivan
                                    wrote on last edited by JB_Sullivan
                                    #495

                                    Sind aktuell irgend welche Probleme mit dem Roomba Adapter 1.1.1. bekannt? Ich frage nur, weil ich heute festgestellt habe, das Aufruf des Webinterface des Adapter nicht mehr funktioniert.
                                    Die Objekt Datenpunkte und die Canvas Karte wird aber brav erstellt. Nur der Aufruf des Web Interface liefert das hier. Im LOG gibt es keine Fehlermeldung dazu.

                                    2020-08-30 12_12_39-iRobot Roomba.png

                                    BTW @Zefau - magst du hier vielleicht auch beitreten?

                                    https://forum.iobroker.net/topic/36313/willkommen-beim-iobroker-discord-channel

                                    ioBroker (since 2018) auf Intel Core i3-5005U NUC und Windwos10 Pro

                                    F 1 Reply Last reply
                                    0
                                    • JB_SullivanJ JB_Sullivan

                                      Sind aktuell irgend welche Probleme mit dem Roomba Adapter 1.1.1. bekannt? Ich frage nur, weil ich heute festgestellt habe, das Aufruf des Webinterface des Adapter nicht mehr funktioniert.
                                      Die Objekt Datenpunkte und die Canvas Karte wird aber brav erstellt. Nur der Aufruf des Web Interface liefert das hier. Im LOG gibt es keine Fehlermeldung dazu.

                                      2020-08-30 12_12_39-iRobot Roomba.png

                                      BTW @Zefau - magst du hier vielleicht auch beitreten?

                                      https://forum.iobroker.net/topic/36313/willkommen-beim-iobroker-discord-channel

                                      F Offline
                                      F Offline
                                      fvp
                                      wrote on last edited by
                                      #496

                                      @JB_Sullivan kann ich nicht bestätigen. V1.1.1 und Web Inerface ok.
                                      Debian VM auf QNAP Host.

                                      JB_SullivanJ L 2 Replies Last reply
                                      0
                                      • F fvp

                                        @JB_Sullivan kann ich nicht bestätigen. V1.1.1 und Web Inerface ok.
                                        Debian VM auf QNAP Host.

                                        JB_SullivanJ Offline
                                        JB_SullivanJ Offline
                                        JB_Sullivan
                                        wrote on last edited by
                                        #497

                                        @fvp Aus dem heimischen Netzwerk heraus, keine Chance. Gehe ich aber Remote über die ioB Cloud drauf funktioniert es .

                                        BTW - ist eigentlich bei den Datenpunkten die json Tabelle mit den History Daten nicht mehr an Board? Die hat sich bei mir seit "100 Jahren" nicht mehr aktualisiert und als ich den Datenpunkt gelöscht habe und nach einem Instanz Neustart auf eine aktualisierte jason Datenpunkt Tabelle gehofft hatte, war der Datenpunkt ganz verschwunden.

                                        Ist der mal irgend einem Update zum Opfer gefallen?

                                        ioBroker (since 2018) auf Intel Core i3-5005U NUC und Windwos10 Pro

                                        F 1 Reply Last reply
                                        0
                                        • JB_SullivanJ JB_Sullivan

                                          @fvp Aus dem heimischen Netzwerk heraus, keine Chance. Gehe ich aber Remote über die ioB Cloud drauf funktioniert es .

                                          BTW - ist eigentlich bei den Datenpunkten die json Tabelle mit den History Daten nicht mehr an Board? Die hat sich bei mir seit "100 Jahren" nicht mehr aktualisiert und als ich den Datenpunkt gelöscht habe und nach einem Instanz Neustart auf eine aktualisierte jason Datenpunkt Tabelle gehofft hatte, war der Datenpunkt ganz verschwunden.

                                          Ist der mal irgend einem Update zum Opfer gefallen?

                                          F Offline
                                          F Offline
                                          fvp
                                          wrote on last edited by fvp
                                          #498

                                          @JB_Sullivan Da kann ich dir leider nicht so recht helfen. Kann dir nur sagen das es hier im LAN noch funktioniert.

                                          Bzgl. dem Historydatenpunkt:
                                          Dieser war bei mir auch nicht mehr vorhanden. Auch hier hat das manuelle erstellen geholfen:
                                          bf10f987-9763-486d-ab73-c5eab368b653-grafik.png

                                          
                                          {
                                            "common": {
                                              "name": "History of all missions",
                                              "role": "json",
                                              "type": "string",
                                              "write": false
                                            },
                                            "type": "state",
                                            "native": {},
                                            "from": "system.adapter.roomba.0",
                                            "user": "system.user.admin",
                                            "ts": 1573151255189,
                                            "_id": "roomba.0.missions.history",
                                            "acl": {
                                              "object": 1636,
                                              "state": 1636,
                                              "owner": "system.user.admin",
                                              "ownerGroup": "system.group.administrator"
                                            }
                                          }
                                          
                                          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
                                          FAQ Cloud / IOT
                                          HowTo: Node.js-Update
                                          HowTo: Backup/Restore
                                          Downloads
                                          BLOG

                                          595

                                          Online

                                          32.6k

                                          Users

                                          82.3k

                                          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