Skip to content
  • Home
  • Aktuell
  • Tags
  • 0 Ungelesen 0
  • Kategorien
  • Unreplied
  • Beliebt
  • 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

  • Standard: (Kein Skin)
  • Kein Skin
Einklappen
ioBroker Logo

Community Forum

donate donate
  1. ioBroker Community Home
  2. Deutsch
  3. ioBroker Allgemein
  4. Neuer Adapter für Roborock-Staubsauger

NEWS

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

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

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

Neuer Adapter für Roborock-Staubsauger

Geplant Angeheftet Gesperrt Verschoben ioBroker Allgemein
928 Beiträge 138 Kommentatoren 327.3k Aufrufe 127 Watching
  • Älteste zuerst
  • Neuste zuerst
  • Meiste Stimmen
Antworten
  • In einem neuen Thema antworten
Anmelden zum Antworten
Dieses Thema wurde gelöscht. Nur Nutzer mit entsprechenden Rechten können es sehen.
  • T tropisch

    @lustig29 Was meinst du mit "lösen"? Starten? Oder einstellen, dass wieder alle Räume gereinigt werden?

    L Offline
    L Offline
    lustig29
    schrieb am zuletzt editiert von
    #622

    @tropisch

    Naja, ich möchte über meine Vis die verschiedenen Räume ansteuern können.
    Also ich hätte dann gerne ein Auswahlmenue in dem erst der Raum ausgewählt wird und wo man dann noch die Reinungsart saugen/wischen auswählen kann. Vielleicht ist sowas ja möglich.

    T L 2 Antworten Letzte Antwort
    0
    • L lustig29

      @tropisch

      Naja, ich möchte über meine Vis die verschiedenen Räume ansteuern können.
      Also ich hätte dann gerne ein Auswahlmenue in dem erst der Raum ausgewählt wird und wo man dann noch die Reinungsart saugen/wischen auswählen kann. Vielleicht ist sowas ja möglich.

      T Offline
      T Offline
      tropisch
      schrieb am zuletzt editiert von
      #623

      @lustig29 Das geht!
      In der App die Räume benennen.
      Dann tauchen sie als Objekte auf:
      roborock.0.Devices.blabla.floors.0.18 etc. (Im Objektbrowser siehst du auch die Namen der Räume)
      Den Wert des Raumes, der gereinigt werden soll auf TRUE stellen, alle anderen auf FALSE.
      Mehrere Räume gehen auch.
      Anschließend kannst du zB das Wischen deaktivieren über roborock.0.Devices.blabla.commands.set_water_box_custom_mode (200: Nur Saugen, 201: Wischen Normal)
      Zimmerreinigung starten mit: roborock.0.Devices.blabla.commands.app_segment_clean = TRUE

      Ich wollte nicht in der VIS händisch den Wert 200 (nur Saugen) eingeben und hab mir deshalb ein kleines Script geschrieben, das auf einen BOOLEAN Datentyp schaut und dann den Wert einträgt:

      const IdModus = '0_userdata.0.Roborock.NurSaugen'/*NurSaugen*/
      
      on({ id: IdModus, change: 'ne' }, function (obj) {
          setModus();
      }
      )
      
      function setModus() {
          var modus = getState('0_userdata.0.Roborock.NurSaugen').val;
          if (modus == true) {
              setState('roborock.0.Devices.blabla.commands.set_water_box_custom_mode', 200); //Nur Saugen
          }
          else {
              setState('roborock.0.Devices.blabla.commands.set_water_box_custom_mode', 201); //Wischintensität normal
          }
      }
      

      Auf meine Vis hab ich folgendes gelegt:

      • alle Räume (True/False)
      • Den "Nur-Saugen-Punkt": '0_userdata.0.Roborock.NurSaugen
      • Den Start-Knopf: roborock.0.Devices.blabla.commands.app_segment_clean
        a23e3051-e68b-4bbd-85e0-5e408a44c60a-image.png
      L 1 Antwort Letzte Antwort
      0
      • T tropisch

        @lustig29 Das geht!
        In der App die Räume benennen.
        Dann tauchen sie als Objekte auf:
        roborock.0.Devices.blabla.floors.0.18 etc. (Im Objektbrowser siehst du auch die Namen der Räume)
        Den Wert des Raumes, der gereinigt werden soll auf TRUE stellen, alle anderen auf FALSE.
        Mehrere Räume gehen auch.
        Anschließend kannst du zB das Wischen deaktivieren über roborock.0.Devices.blabla.commands.set_water_box_custom_mode (200: Nur Saugen, 201: Wischen Normal)
        Zimmerreinigung starten mit: roborock.0.Devices.blabla.commands.app_segment_clean = TRUE

        Ich wollte nicht in der VIS händisch den Wert 200 (nur Saugen) eingeben und hab mir deshalb ein kleines Script geschrieben, das auf einen BOOLEAN Datentyp schaut und dann den Wert einträgt:

        const IdModus = '0_userdata.0.Roborock.NurSaugen'/*NurSaugen*/
        
        on({ id: IdModus, change: 'ne' }, function (obj) {
            setModus();
        }
        )
        
        function setModus() {
            var modus = getState('0_userdata.0.Roborock.NurSaugen').val;
            if (modus == true) {
                setState('roborock.0.Devices.blabla.commands.set_water_box_custom_mode', 200); //Nur Saugen
            }
            else {
                setState('roborock.0.Devices.blabla.commands.set_water_box_custom_mode', 201); //Wischintensität normal
            }
        }
        

        Auf meine Vis hab ich folgendes gelegt:

        • alle Räume (True/False)
        • Den "Nur-Saugen-Punkt": '0_userdata.0.Roborock.NurSaugen
        • Den Start-Knopf: roborock.0.Devices.blabla.commands.app_segment_clean
          a23e3051-e68b-4bbd-85e0-5e408a44c60a-image.png
        L Offline
        L Offline
        lustig29
        schrieb am zuletzt editiert von
        #624

        @tropisch
        Würdest du mir dein Widget zur Verfügung stellen?

        1 Antwort Letzte Antwort
        0
        • T Offline
          T Offline
          tropisch
          schrieb am zuletzt editiert von
          #625

          @lustig29 ich benutze nicht das normale vis, sondern einen Adapter namens HubPanel. Das ist eine eigene recht einfache visualisierung
          Die Knöpfe sind ganz normale switches.

          1 Antwort Letzte Antwort
          0
          • L lustig29

            @tropisch

            Naja, ich möchte über meine Vis die verschiedenen Räume ansteuern können.
            Also ich hätte dann gerne ein Auswahlmenue in dem erst der Raum ausgewählt wird und wo man dann noch die Reinungsart saugen/wischen auswählen kann. Vielleicht ist sowas ja möglich.

            L Offline
            L Offline
            lustig29
            schrieb am zuletzt editiert von
            #626

            @lustig29 Kann man das denn nicht über die Programme lösen?

            AphofisA 1 Antwort Letzte Antwort
            0
            • L lustig29

              @lustig29 Kann man das denn nicht über die Programme lösen?

              AphofisA Offline
              AphofisA Offline
              Aphofis
              schrieb am zuletzt editiert von
              #627

              @lustig29
              Wie meinst du das !?

              1 Antwort Letzte Antwort
              0
              • I Offline
                I Offline
                ionar
                schrieb am zuletzt editiert von ionar
                #628

                Ich finde in der Dokumentation nichts und kann leider nicht alle Beiträge durchsuchen:

                Kann man "go to" nutzen und eine Koordinate oder Ähnliches eintragen? Ich würde gerne ein Skript für den Mülleimer in der Küche erstellen.

                Erledigt: Dieser Beitrag hat geholfen, die Koordinaten zu finden

                https://forum.iobroker.net/topic/67186/neuer-adapter-für-roborock-staubsauger/300

                Z AphofisA 2 Antworten Letzte Antwort
                0
                • I ionar

                  Ich finde in der Dokumentation nichts und kann leider nicht alle Beiträge durchsuchen:

                  Kann man "go to" nutzen und eine Koordinate oder Ähnliches eintragen? Ich würde gerne ein Skript für den Mülleimer in der Küche erstellen.

                  Erledigt: Dieser Beitrag hat geholfen, die Koordinaten zu finden

                  https://forum.iobroker.net/topic/67186/neuer-adapter-für-roborock-staubsauger/300

                  Z Offline
                  Z Offline
                  zolpetol
                  schrieb am zuletzt editiert von
                  #629

                  Moin,

                  ich hab den Roborock S8 MaxV Ultra und kann über den Adapter die Reinigung starten und beenden. Allerdings bekomme ich folgende Loginfo:

                  
                  
                  roborock.0
                  2024-08-26 09:10:33.778	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.deviceStatus.carpet_clean_mode" has no existing object, this might lead to an error in future versions
                  
                  roborock.0
                  2024-08-26 09:10:33.730	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.deviceStatus.carpet_mode" has no existing object, this might lead to an error in future versions
                  
                  roborock.0
                  2024-08-26 09:10:33.643	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.consumables.dust_collection_work_times" has no existing object, this might lead to an error in future versions
                  
                  roborock.0
                  2024-08-26 09:10:33.642	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.consumables.sensor_dirty_time" has no existing object, this might lead to an error in future versions
                  
                  roborock.0
                  2024-08-26 09:10:33.642	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.consumables.filter_element_work_time" has no existing object, this might lead to an error in future versions
                  
                  roborock.0
                  2024-08-26 09:10:33.642	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.consumables.filter_work_time" has no existing object, this might lead to an error in future versions
                  
                  roborock.0
                  2024-08-26 09:10:33.642	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.consumables.side_brush_work_time" has no existing object, this might lead to an error in future versions
                  
                  roborock.0
                  2024-08-26 09:10:33.641	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.consumables.main_brush_work_time" has no existing object, this might lead to an error in future versions
                  
                  roborock.0
                  2024-08-26 09:10:33.529	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.deviceStatus.subdivision_sets" has no existing object, this might lead to an error in future versions
                  
                  roborock.0
                  2024-08-26 09:10:33.529	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.deviceStatus.kct" has no existing object, this might lead to an error in future versions
                  
                  roborock.0
                  2024-08-26 09:10:33.529	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.deviceStatus.repeat" has no existing object, this might lead to an error in future versions
                  
                  roborock.0
                  2024-08-26 09:10:33.529	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.deviceStatus.replenish_mode" has no existing object, this might lead to an error in future versions
                  
                  roborock.0
                  2024-08-26 09:10:33.529	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.deviceStatus.last_clean_t" has no existing object, this might lead to an error in future versions
                  
                  roborock.0
                  2024-08-26 09:10:33.529	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.deviceStatus.common_status" has no existing object, this might lead to an error in future versions
                  
                  roborock.0
                  2024-08-26 09:10:33.529	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.deviceStatus.rss" has no existing object, this might lead to an error in future versions
                  
                  roborock.0
                  2024-08-26 09:10:33.529	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.deviceStatus.clean_percent" has no existing object, this might lead to an error in future versions
                  
                  roborock.0
                  2024-08-26 09:10:33.529	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.deviceStatus.rdt" has no existing object, this might lead to an error in future versions
                  
                  roborock.0
                  2024-08-26 09:10:33.528	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.deviceStatus.charge_status" has no existing object, this might lead to an error in future versions
                  
                  roborock.0
                  2024-08-26 09:10:33.487	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.deviceStatus.in_warmup" has no existing object, this might lead to an error in future versions
                  
                  roborock.0
                  2024-08-26 09:10:33.486	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.deviceStatus.mop_mode" has no existing object, this might lead to an error in future versions
                  
                  roborock.0
                  2024-08-26 09:10:33.486	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.deviceStatus.water_shortage_status" has no existing object, this might lead to an error in future versions
                  
                  roborock.0
                  2024-08-26 09:10:33.486	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.deviceStatus.monitor_status" has no existing object, this might lead to an error in future versions
                  
                  roborock.0
                  2024-08-26 09:10:33.486	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.deviceStatus.home_sec_enable_password" has no existing object, this might lead to an error in future versions
                  
                  roborock.0
                  2024-08-26 09:10:33.485	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.deviceStatus.home_sec_status" has no existing object, this might lead to an error in future versions
                  
                  roborock.0
                  2024-08-26 09:10:33.485	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.deviceStatus.camera_status" has no existing object, this might lead to an error in future versions
                  
                  roborock.0
                  2024-08-26 09:10:33.485	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.deviceStatus.mop_forbidden_enable" has no existing object, this might lead to an error in future versions
                  
                  roborock.0
                  2024-08-26 09:10:33.484	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.deviceStatus.water_box_carriage_status" has no existing object, this might lead to an error in future versions
                  
                  roborock.0
                  2024-08-26 09:10:33.484	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.deviceStatus.water_box_mode" has no existing object, this might lead to an error in future versions
                  
                  roborock.0
                  2024-08-26 09:10:33.440	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.deviceStatus.water_box_status" has no existing object, this might lead to an error in future versions
                  
                  

                  Liegt das daran, dass das Modell offiziell nicht unterstützt wird oder ist der Fehler wo anders zu suchen?

                  DANKE!

                  AphofisA 1 Antwort Letzte Antwort
                  0
                  • Z zolpetol

                    Moin,

                    ich hab den Roborock S8 MaxV Ultra und kann über den Adapter die Reinigung starten und beenden. Allerdings bekomme ich folgende Loginfo:

                    
                    
                    roborock.0
                    2024-08-26 09:10:33.778	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.deviceStatus.carpet_clean_mode" has no existing object, this might lead to an error in future versions
                    
                    roborock.0
                    2024-08-26 09:10:33.730	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.deviceStatus.carpet_mode" has no existing object, this might lead to an error in future versions
                    
                    roborock.0
                    2024-08-26 09:10:33.643	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.consumables.dust_collection_work_times" has no existing object, this might lead to an error in future versions
                    
                    roborock.0
                    2024-08-26 09:10:33.642	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.consumables.sensor_dirty_time" has no existing object, this might lead to an error in future versions
                    
                    roborock.0
                    2024-08-26 09:10:33.642	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.consumables.filter_element_work_time" has no existing object, this might lead to an error in future versions
                    
                    roborock.0
                    2024-08-26 09:10:33.642	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.consumables.filter_work_time" has no existing object, this might lead to an error in future versions
                    
                    roborock.0
                    2024-08-26 09:10:33.642	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.consumables.side_brush_work_time" has no existing object, this might lead to an error in future versions
                    
                    roborock.0
                    2024-08-26 09:10:33.641	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.consumables.main_brush_work_time" has no existing object, this might lead to an error in future versions
                    
                    roborock.0
                    2024-08-26 09:10:33.529	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.deviceStatus.subdivision_sets" has no existing object, this might lead to an error in future versions
                    
                    roborock.0
                    2024-08-26 09:10:33.529	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.deviceStatus.kct" has no existing object, this might lead to an error in future versions
                    
                    roborock.0
                    2024-08-26 09:10:33.529	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.deviceStatus.repeat" has no existing object, this might lead to an error in future versions
                    
                    roborock.0
                    2024-08-26 09:10:33.529	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.deviceStatus.replenish_mode" has no existing object, this might lead to an error in future versions
                    
                    roborock.0
                    2024-08-26 09:10:33.529	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.deviceStatus.last_clean_t" has no existing object, this might lead to an error in future versions
                    
                    roborock.0
                    2024-08-26 09:10:33.529	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.deviceStatus.common_status" has no existing object, this might lead to an error in future versions
                    
                    roborock.0
                    2024-08-26 09:10:33.529	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.deviceStatus.rss" has no existing object, this might lead to an error in future versions
                    
                    roborock.0
                    2024-08-26 09:10:33.529	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.deviceStatus.clean_percent" has no existing object, this might lead to an error in future versions
                    
                    roborock.0
                    2024-08-26 09:10:33.529	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.deviceStatus.rdt" has no existing object, this might lead to an error in future versions
                    
                    roborock.0
                    2024-08-26 09:10:33.528	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.deviceStatus.charge_status" has no existing object, this might lead to an error in future versions
                    
                    roborock.0
                    2024-08-26 09:10:33.487	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.deviceStatus.in_warmup" has no existing object, this might lead to an error in future versions
                    
                    roborock.0
                    2024-08-26 09:10:33.486	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.deviceStatus.mop_mode" has no existing object, this might lead to an error in future versions
                    
                    roborock.0
                    2024-08-26 09:10:33.486	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.deviceStatus.water_shortage_status" has no existing object, this might lead to an error in future versions
                    
                    roborock.0
                    2024-08-26 09:10:33.486	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.deviceStatus.monitor_status" has no existing object, this might lead to an error in future versions
                    
                    roborock.0
                    2024-08-26 09:10:33.486	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.deviceStatus.home_sec_enable_password" has no existing object, this might lead to an error in future versions
                    
                    roborock.0
                    2024-08-26 09:10:33.485	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.deviceStatus.home_sec_status" has no existing object, this might lead to an error in future versions
                    
                    roborock.0
                    2024-08-26 09:10:33.485	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.deviceStatus.camera_status" has no existing object, this might lead to an error in future versions
                    
                    roborock.0
                    2024-08-26 09:10:33.485	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.deviceStatus.mop_forbidden_enable" has no existing object, this might lead to an error in future versions
                    
                    roborock.0
                    2024-08-26 09:10:33.484	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.deviceStatus.water_box_carriage_status" has no existing object, this might lead to an error in future versions
                    
                    roborock.0
                    2024-08-26 09:10:33.484	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.deviceStatus.water_box_mode" has no existing object, this might lead to an error in future versions
                    
                    roborock.0
                    2024-08-26 09:10:33.440	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.deviceStatus.water_box_status" has no existing object, this might lead to an error in future versions
                    
                    

                    Liegt das daran, dass das Modell offiziell nicht unterstützt wird oder ist der Fehler wo anders zu suchen?

                    DANKE!

                    AphofisA Offline
                    AphofisA Offline
                    Aphofis
                    schrieb am zuletzt editiert von
                    #630

                    @zolpetol
                    Gibt es den Datenpunkt denn überhaupt !?
                    Ich habe den mihome.vacuum Adapter genommen und meinen Robo auch in der Handy App Xiaomi Home verknüpft. Geht aber nur eins von beidem aber Xiaomi App ist genau so aufgebaut wie die Roborock App nur das man beim s6 und der Roborock App die Kamera nicht nutzen kann aber das spielerei aber dafür wenn man die Xiaomi App nimmt und den mihome.vacuum Adapter im Iobroker hat man alle möglichen Datenpunkte und es funktioniert auch alles und bis jetzt keine Fehlermeldung.
                    in Node-Red habe ich die Palette node-red-contrib-xiaomi-roborock instaliiert und kann alles von meinem Roborock verwalten anzeigen lassen und ihn per VIS los schicken ider was auch immer und per email und passwort findet der mihome.vacuum Adapter sogar den token und die IP Adresse vom Roborock.
                    Erst Roborock Adapter anhalten. Xiaomi Home auf dem Handy installieren den Roboter damit verbinden. Karten Reinigungspläne bleiben erhalten!!!!
                    Mihome.Vacuum Adapter installieren. buttonget devices in den Adapter einstellungen anklicken email passwort eingeben dann findet er dein gerät.
                    Unten unter manuell Settings token und IP eintragen das wars und man hat tonnen an datenpunkte und alles mögliche zum verarbeiten.

                    da_WoodyD 1 Antwort Letzte Antwort
                    0
                    • I ionar

                      Ich finde in der Dokumentation nichts und kann leider nicht alle Beiträge durchsuchen:

                      Kann man "go to" nutzen und eine Koordinate oder Ähnliches eintragen? Ich würde gerne ein Skript für den Mülleimer in der Küche erstellen.

                      Erledigt: Dieser Beitrag hat geholfen, die Koordinaten zu finden

                      https://forum.iobroker.net/topic/67186/neuer-adapter-für-roborock-staubsauger/300

                      AphofisA Offline
                      AphofisA Offline
                      Aphofis
                      schrieb am zuletzt editiert von
                      #631

                      @ionar
                      Mach dich aus dem Bereich vom links recht neben dem mülleimer einen raum ist zwar bisschen hin und her geswitche aber dann kannst du doch sagen mit klick auf einen button im Vis oder Handy App iobroker oder fullybrowser wo auch immer reinige dann und dann oder manuell mülleimer dann reinigt er nur den Raum um den mülleimer.
                      Ich hatte das bei meinem s6 so gemacht weil der den Mopp ja nicht anhebt hatte er immer meinen Teppich im Flur vor der Haustür nass gemacht hab bisschen hin und her gemodelt bis der bereich wo der Teppich ist ist dann dieser eineigener raum wo ich sahte dort nicht wischen nur saugen. so kann man das doch auch mit dem Mülleimer machen.

                      1 Antwort Letzte Antwort
                      0
                      • AphofisA Aphofis

                        @zolpetol
                        Gibt es den Datenpunkt denn überhaupt !?
                        Ich habe den mihome.vacuum Adapter genommen und meinen Robo auch in der Handy App Xiaomi Home verknüpft. Geht aber nur eins von beidem aber Xiaomi App ist genau so aufgebaut wie die Roborock App nur das man beim s6 und der Roborock App die Kamera nicht nutzen kann aber das spielerei aber dafür wenn man die Xiaomi App nimmt und den mihome.vacuum Adapter im Iobroker hat man alle möglichen Datenpunkte und es funktioniert auch alles und bis jetzt keine Fehlermeldung.
                        in Node-Red habe ich die Palette node-red-contrib-xiaomi-roborock instaliiert und kann alles von meinem Roborock verwalten anzeigen lassen und ihn per VIS los schicken ider was auch immer und per email und passwort findet der mihome.vacuum Adapter sogar den token und die IP Adresse vom Roborock.
                        Erst Roborock Adapter anhalten. Xiaomi Home auf dem Handy installieren den Roboter damit verbinden. Karten Reinigungspläne bleiben erhalten!!!!
                        Mihome.Vacuum Adapter installieren. buttonget devices in den Adapter einstellungen anklicken email passwort eingeben dann findet er dein gerät.
                        Unten unter manuell Settings token und IP eintragen das wars und man hat tonnen an datenpunkte und alles mögliche zum verarbeiten.

                        da_WoodyD Online
                        da_WoodyD Online
                        da_Woody
                        schrieb am zuletzt editiert von
                        #632

                        @aphofis sagte in Neuer Adapter für Roborock-Staubsauger:

                        Gibt es den Datenpunkt denn überhaupt !?

                        klar:
                        85630aed-c2ce-4e91-ac8e-86ec5813646c-grafik.png
                        hab am anfang auch probleme gehabt, dann ist der robo-adapter besser geworden, als xiaomi.

                        gruß vom Woody
                        HAPPINESS is not a DESTINATION, it's a WAY of LIFE!

                        AphofisA 1 Antwort Letzte Antwort
                        0
                        • da_WoodyD da_Woody

                          @aphofis sagte in Neuer Adapter für Roborock-Staubsauger:

                          Gibt es den Datenpunkt denn überhaupt !?

                          klar:
                          85630aed-c2ce-4e91-ac8e-86ec5813646c-grafik.png
                          hab am anfang auch probleme gehabt, dann ist der robo-adapter besser geworden, als xiaomi.

                          AphofisA Offline
                          AphofisA Offline
                          Aphofis
                          schrieb am zuletzt editiert von
                          #633

                          @da_woody aber das gerät stimmt doch nicht mit dem datenpunkt

                          roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.consumables.filter_work_time
                          

                          das Gerät

                          EVnNq0ALqIbfYLSuqFpq
                          
                          5umEnoJEB0hmM5U
                          

                          ist doch anders !?

                          da_WoodyD 1 Antwort Letzte Antwort
                          0
                          • AphofisA Aphofis

                            @da_woody aber das gerät stimmt doch nicht mit dem datenpunkt

                            roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.consumables.filter_work_time
                            

                            das Gerät

                            EVnNq0ALqIbfYLSuqFpq
                            
                            5umEnoJEB0hmM5U
                            

                            ist doch anders !?

                            da_WoodyD Online
                            da_WoodyD Online
                            da_Woody
                            schrieb am zuletzt editiert von
                            #634

                            @aphofis glaubst du dein gerät hat die selbe id wie meines?

                            gruß vom Woody
                            HAPPINESS is not a DESTINATION, it's a WAY of LIFE!

                            AphofisA 1 Antwort Letzte Antwort
                            0
                            • da_WoodyD da_Woody

                              @aphofis glaubst du dein gerät hat die selbe id wie meines?

                              AphofisA Offline
                              AphofisA Offline
                              Aphofis
                              schrieb am zuletzt editiert von
                              #635

                              @da_woody
                              Nein aus deinem Fehler

                              roborock.0
                              2024-08-26 09:10:33.642	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.consumables.filter_element_work_time" has no existing object, this might lead to an error in future versions
                              

                              lese ich nur das dieses Gerät

                              EVnNq0ALqIbfYLSuqFpq
                              

                              nichts mit dem Gerät aus dem Foto des Datenpunktes zu tun hat

                              5umEnoJEB0hmM5U
                              
                              L 1 Antwort Letzte Antwort
                              0
                              • AphofisA Aphofis

                                @da_woody
                                Nein aus deinem Fehler

                                roborock.0
                                2024-08-26 09:10:33.642	warn	State "roborock.0.Devices.EVnNq0ALqIbfYLSuqFpq.consumables.filter_element_work_time" has no existing object, this might lead to an error in future versions
                                

                                lese ich nur das dieses Gerät

                                EVnNq0ALqIbfYLSuqFpq
                                

                                nichts mit dem Gerät aus dem Foto des Datenpunktes zu tun hat

                                5umEnoJEB0hmM5U
                                
                                L Offline
                                L Offline
                                lustig29
                                schrieb am zuletzt editiert von
                                #636

                                cec231ac-e2a5-41e7-a000-7835580065b9-image.png

                                Ich dachte ich könnte die verschiedenen Programme durch diese Auswahl einfach starten. Aber so einfach geht es wohl nicht...

                                1 Antwort Letzte Antwort
                                0
                                • copystringC Offline
                                  copystringC Offline
                                  copystring
                                  schrieb am zuletzt editiert von
                                  #637

                                  Hallo Leute! In der latest Repo könnt ihr ab sofort 0.6.7 finden.
                                  Dort sind sehr viele Fehler behoben. Der Adapter sollte deutlich stabiler als zuvor laufen.

                                  Hier das Changelog:

                                  • Update dependencies
                                  • Many bug fixes
                                  • Improve support for: Q Revo Pro
                                  • Add parsing of dss in deviceStatus as docking station status
                                  • Add resume_segment_clean & stop_segment_clean
                                  • Improve reconnect intervall of direct connection
                                  • Add missing translations
                                  • Fix cleaningInfo of older Robots like S6 etc
                                  • General logging improvements

                                  Unterstütze meine Arbeit gerne mit einer Spende über PayPal:
                                  https://paypal.me/copystring

                                  T 1 Antwort Letzte Antwort
                                  0
                                  • copystringC copystring

                                    Hallo Leute! In der latest Repo könnt ihr ab sofort 0.6.7 finden.
                                    Dort sind sehr viele Fehler behoben. Der Adapter sollte deutlich stabiler als zuvor laufen.

                                    Hier das Changelog:

                                    • Update dependencies
                                    • Many bug fixes
                                    • Improve support for: Q Revo Pro
                                    • Add parsing of dss in deviceStatus as docking station status
                                    • Add resume_segment_clean & stop_segment_clean
                                    • Improve reconnect intervall of direct connection
                                    • Add missing translations
                                    • Fix cleaningInfo of older Robots like S6 etc
                                    • General logging improvements
                                    T Offline
                                    T Offline
                                    tritanium
                                    schrieb am zuletzt editiert von tritanium
                                    #638

                                    @copystring

                                    So, Update, check, 0.6.7 läuft ;-)

                                    ...ich berichte...

                                    EDIT:

                                    27c97585-9015-4453-b9c2-f1eac65935a0-grafik.png

                                    copystringC 1 Antwort Letzte Antwort
                                    0
                                    • T tritanium

                                      @copystring

                                      So, Update, check, 0.6.7 läuft ;-)

                                      ...ich berichte...

                                      EDIT:

                                      27c97585-9015-4453-b9c2-f1eac65935a0-grafik.png

                                      copystringC Offline
                                      copystringC Offline
                                      copystring
                                      schrieb am zuletzt editiert von
                                      #639

                                      @tritanium OK. Dann funktioniert mein Code neue unbekannte Parameter zu finden einwandfrei!
                                      Erstell bitte ein Issue auf GitHub mit Debuglog. Dann baue ich den neu erkannten Wert ein!

                                      Unterstütze meine Arbeit gerne mit einer Spende über PayPal:
                                      https://paypal.me/copystring

                                      T 1 Antwort Letzte Antwort
                                      0
                                      • copystringC copystring

                                        @tritanium OK. Dann funktioniert mein Code neue unbekannte Parameter zu finden einwandfrei!
                                        Erstell bitte ein Issue auf GitHub mit Debuglog. Dann baue ich den neu erkannten Wert ein!

                                        T Offline
                                        T Offline
                                        tritanium
                                        schrieb am zuletzt editiert von tritanium
                                        #640

                                        @copystring okay :-) sehr gerne...

                                        Brauchst du auch die Firmware Stände der Robis ?? ...oder steht das im Debug ?

                                        Wir haben einen Q Revo & einen Q7 Max+

                                        EDIT:

                                        Aaaalter, jetzt legt er los :-D

                                        eeef7062-f4e0-4140-9644-3adc1e1dd349-grafik.png

                                        1 Antwort Letzte Antwort
                                        0
                                        • copystringC Offline
                                          copystringC Offline
                                          copystring
                                          schrieb am zuletzt editiert von
                                          #641

                                          Debuglog reicht.

                                          Unterstütze meine Arbeit gerne mit einer Spende über PayPal:
                                          https://paypal.me/copystring

                                          T D 2 Antworten Letzte Antwort
                                          0
                                          Antworten
                                          • In einem neuen Thema antworten
                                          Anmelden zum Antworten
                                          • Älteste zuerst
                                          • Neuste zuerst
                                          • Meiste Stimmen


                                          Support us

                                          ioBroker
                                          Community Adapters
                                          Donate
                                          FAQ Cloud / IOT
                                          HowTo: Node.js-Update
                                          HowTo: Backup/Restore
                                          Downloads
                                          BLOG

                                          758

                                          Online

                                          32.4k

                                          Benutzer

                                          81.5k

                                          Themen

                                          1.3m

                                          Beiträge
                                          Community
                                          Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen | Einwilligungseinstellungen
                                          ioBroker Community 2014-2025
                                          logo
                                          • Anmelden

                                          • Du hast noch kein Konto? Registrieren

                                          • Anmelden oder registrieren, um zu suchen
                                          • Erster Beitrag
                                            Letzter Beitrag
                                          0
                                          • Home
                                          • Aktuell
                                          • Tags
                                          • Ungelesen 0
                                          • Kategorien
                                          • Unreplied
                                          • Beliebt
                                          • GitHub
                                          • Docu
                                          • Hilfe