Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. Skripten / Logik
    4. Homematic Funkgong HmIP-MP3P über Blockly steuern

    NEWS

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

    • ioBroker goes Matter ... Matter Adapter in Stable

    • Monatsrückblick - April 2025

    Homematic Funkgong HmIP-MP3P über Blockly steuern

    This topic has been deleted. Only users with topic management privileges can see it.
    • Homoran
      Homoran Global Moderator Administrators @heli-wolf last edited by

      @heli-wolf sagte in Homematic Funkgong HmIP-MP3P über Blockly steuern:

      jetzt

      ja! 👍

      1 Reply Last reply Reply Quote 0
      • Homoran
        Homoran Global Moderator Administrators last edited by

        Das war jetzt der Exkurs zu Objekten!
        jetzt bitte nochmal die Fehlermeldung provozieren und diese vollständig als Text in code-tags posten.
        Der Screenshot scheint zusätzlich noch abgeschnitten zu sein.

        H 1 Reply Last reply Reply Quote 0
        • H
          heli-wolf @Homoran last edited by

          @homoran

          hm-rpc.5
          	122096	2023-01-06 19:40:04.297	error	Cannot call setValue: XML-RPC fault: Invalid parameter or value
          hm-rpc.5
          	122096	2023-01-06 19:40:04.297	error	xmlrpc -> setValue ["001518A9A59DBF:2","PROCESS",1] ENUM
          javascript.0
          	101206	2023-01-06 19:40:02.762	warn	Read-only state "hm-rpc.5.001518A9A59DBF.2.PROCESS" has been written without ack-flag with value "1"
          hm-rpc.5
          	122096	2023-01-06 19:39:54.310	error	Cannot call setValue: XML-RPC fault: Invalid parameter or value
          hm-rpc.5
          	122096	2023-01-06 19:39:54.309	error	xmlrpc -> setValue ["001518A9A59DBF:2","PROCESS",1] ENUM
          javascript.0
          	101206	2023-01-06 19:39:52.726	warn	Read-only state "hm-rpc.5.001518A9A59DBF.2.PROCESS" has been written without ack-flag with value "1"
          javascript.0
          	101206	2023-01-06 19:39:45.933	info	script.js.common.Meine_Skripte.Waschmaschine_fertig: registered 1 subscription, 0 schedules, 0 messages, 0 logs and 0 file subscriptions
          javascript.0
          	101206	2023-01-06 19:39:45.914	info	Start javascript script.js.common.Meine_Skripte.Waschmaschine_fertig
          hm-rpc.3
          	122119	2023-01-06 19:39:10.137	info	xmlrpc -> listDevices 0
          
          Homoran 2 Replies Last reply Reply Quote 0
          • Homoran
            Homoran Global Moderator Administrators @heli-wolf last edited by

            @heli-wolf und jetzt bitte mal die javascript Ansicht des Blocklys

            1 Reply Last reply Reply Quote 0
            • Homoran
              Homoran Global Moderator Administrators @heli-wolf last edited by

              @heli-wolf wenn ich das richtig sehe ist process nicht zum beschreiben.
              deaktiviere den Block mal über die rechte Maustaste. und trigger neu.

              H 1 Reply Last reply Reply Quote 0
              • H
                heli-wolf @Homoran last edited by

                @homoran

                var timeout;
                
                // Beschreibe diese Funktion …
                async function Funkgong_Waschmaschine() {
                  setState("hm-rpc.5.001518A9A59DBF.2.SOUNDFILE"/*Funkgong_flachHmIP-MP3P 001518A9A59DBF:2.SOUNDFILE*/, 11);
                  setState("hm-rpc.5.001518A9A59DBF.2.PROCESS"/*Funkgong_flachHmIP-MP3P 001518A9A59DBF:2.PROCESS*/, 1);
                  setState("hm-rpc.5.001518A9A59DBF.2.LEVEL"/*Funkgong_flachHmIP-MP3P 001518A9A59DBF:2.LEVEL*/, 80);
                  setState("hm-rpc.5.001518A9A59DBF.6.COLOR"/*Funkgong_flachHmIP-MP3P 001518A9A59DBF:6.COLOR*/, 2);
                  setState("hm-rpc.5.001518A9A59DBF.6.LEVEL"/*Funkgong_flachHmIP-MP3P 001518A9A59DBF:6.LEVEL*/, 50);
                  setStateDelayed("hm-rpc.5.001518A9A59DBF.6.LEVEL"/*Funkgong_flachHmIP-MP3P 001518A9A59DBF:6.LEVEL*/, 0, 10000, false);
                }
                
                
                on({id: "shelly.0.SHPLG-S#4022D8898398#1.Relay0.Switch"/*Switch*/, change: "ne"}, async function (obj) {
                  var value = obj.state.val;
                  var oldValue = obj.oldState.val;
                  await Funkgong_Waschmaschine();
                  timeout = setTimeout(async function () {
                    await Funkgong_Waschmaschine();
                  }, 10000);
                });
                
                
                Homoran 1 Reply Last reply Reply Quote 0
                • Homoran
                  Homoran Global Moderator Administrators @heli-wolf last edited by

                  @heli-wolf sagte in Homematic Funkgong HmIP-MP3P über Blockly steuern:

                  setState("hm-rpc.5.001518A9A59DBF.2.PROCESS"/Funkgong_flachHmIP-MP3P 001518A9A59DBF:2.PROCESS/, 1);

                  auch da steht nix von ENUM. muss ggf. am readOnly liegen und von der CCU kommen

                  H 1 Reply Last reply Reply Quote 0
                  • H
                    heli-wolf @Homoran last edited by

                    @homoran
                    wo kann ich das in der CCU sehen?

                    Homoran 1 Reply Last reply Reply Quote 0
                    • Homoran
                      Homoran Global Moderator Administrators @heli-wolf last edited by

                      @heli-wolf keine Ahnung, ist ggf. unwichtig.

                      was ist mit

                      @homoran sagte in Homematic Funkgong HmIP-MP3P über Blockly steuern:

                      @heli-wolf wenn ich das richtig sehe ist process nicht zum beschreiben.
                      deaktiviere den Block mal über die rechte Maustaste. und trigger neu.

                      H 1 Reply Last reply Reply Quote 0
                      • H
                        heli-wolf @Homoran last edited by

                        @homoran
                        das Blockly Skript deaktivieren und neu starten - habe ich gemacht, hat aber keine Änderung gebracht.

                        Homoran 1 Reply Last reply Reply Quote 0
                        • Homoran
                          Homoran Global Moderator Administrators @heli-wolf last edited by

                          @heli-wolf sagte in Homematic Funkgong HmIP-MP3P über Blockly steuern:

                          das Blockly Skript deaktivieren und neu starten -

                          nein!
                          den Block deaktivieren

                          H 1 Reply Last reply Reply Quote 0
                          • H
                            heli-wolf @Homoran last edited by

                            @homoran

                            Sorry, stehe auf der Leitung - welchen BLOCK ??

                            Homoran 1 Reply Last reply Reply Quote 0
                            • Homoran
                              Homoran Global Moderator Administrators @heli-wolf last edited by

                              @heli-wolf den der den angemeckerten read only Datenpunkt anspricht

                              H 1 Reply Last reply Reply Quote 0
                              • H
                                heli-wolf @Homoran last edited by

                                @homoran

                                Das war das Problem, ich habe den Process DP entfernt und jetzt funktioniert alles ohne Fehlermeldungen.

                                Vielen Dank - das war für euch eine schwere Geburt - vielen Dank !!

                                1 Reply Last reply Reply Quote 0
                                • UweRLP
                                  UweRLP last edited by

                                  @heli-wolf Laut Überschrift hast du einen HMIP Funkgong wiederspricht aber der Bezeichnung HM-OU-CFM-TW danach hast du einen Homematic Funkgong keinen HMIP!

                                  Classic Homematic
                                  Homematic IP MP3 Kombisignalgeber

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

                                  Support us

                                  ioBroker
                                  Community Adapters
                                  Donate

                                  779
                                  Online

                                  31.7k
                                  Users

                                  79.8k
                                  Topics

                                  1.3m
                                  Posts

                                  6
                                  47
                                  2074
                                  Loading More Posts
                                  • Oldest to Newest
                                  • Newest to Oldest
                                  • Most Votes
                                  Reply
                                  • Reply as topic
                                  Log in to reply
                                  Community
                                  Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen
                                  The ioBroker Community 2014-2023
                                  logo