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. Skripten / Logik
  4. JavaScript
  5. [Vorlage] Busch Jäger Radio iNet 8216 U

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

[Vorlage] Busch Jäger Radio iNet 8216 U

Geplant Angeheftet Gesperrt Verschoben JavaScript
38 Beiträge 8 Kommentatoren 5.7k Aufrufe 7 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.
  • crunchipC crunchip

    @cko ich kann zwar überhaupt kein Javascript, aber ich denke, es müsste, da sämtliche angelegten Datenpunkte nicht beschreibbar (write : false)
    entsprechend bei setState......am Schluss der Zeile folgendes anhängen, falls nicht schon vorhanden

    , true)
    
    W Offline
    W Offline
    Weissnicht
    schrieb am zuletzt editiert von
    #28

    @crunchip @CKO

    ja, so ist es (wohl). Habe diese Korrektur bei mir bereits vorgenommen, daher hier gerne zum C&P.

    Und wirklich, funktioniert prima als Skript! :+1: Aber ein Adapter wäre auch etwas schönes :-)

    Off topic: Seit iOS15 ist die Busch Jäger App nicht mal mehr aufrufbar am Telefon

    /* Change history:
    v1.2
    - added ack: true to setstates() command when states are updated by the radio
    
    v1.1
    - comment of line var RadioIpaddress as no longer used due to multi radio support
    - found bug: if IP address not correct, the jscript adapter crashes; has to be fixed. How?
    - added function onClose to relese the socket binding when script ist stopped / restarted
      otherwise restart throws an error due to binding to port not possible as still blocked
    
    v1.0 script copy of ioBroker forum from user intruder7
    */
    
    var pfad = 'Geraete.BuschJaeger.RadioINet.';
    var pfad2 = 'javascript.0.' + pfad
     // vollständiger id Pfad wird: pfad2 + radio.pfad
    
    var UDPListenPort = 4242; //nicht ändern 
    var UDPPort = 4244; //nicht ändern 
    // var RadioIPadress = '192.168.2.67' // IP Adresse des Radios
    var HOST = '0.0.0.0'; //nicht ändern 
    
    var logging = false;
     
    /* ToDo: 
    - wenn IP nicht korrekt, stürzt der komplette jscript Adapter ab!
      Grund: Das sende-Kommando kann nicht gebaut werden: radio.path ist undefined für die IP
    - Prüfen, ob sendcmd und sendcmdToIP vereinheitlicht werden kann
      sendcmd: sendet an alle Radios
      sendcmdToIP: sendet nur an ein bestimmtes Radio
    */
    
    const radios =  [
         {
                 IP: '192.168.2.67',
                 pfad: 'Bad'
         }/*,
        {
                 IP: '192.168.100.74',
                 pfad: 'Keller'
                }        */
    ];
    
    
    // ab hier nichts mehr ändern 
    
    var dgram = require('dgram');
    var socket = dgram.createSocket('udp4');
    var server = dgram.createSocket('udp4');
    //var server2 = dgram.createSocket('udp4');
     
    
    const getRadioForIP= (IP)=>{
        return radios.find(radio=>radio.IP == IP )
    }
    
    const createAllStates = ()=>{    
        radios.forEach((radio)=>{createRadioState(radio);});    
    };
    
    const createRadioState = (radio)=>{
    createState(pfad+ radio.pfad +"."+ "Command", '', { type: 'string', name: 'Last command', write: false });
    createState(pfad+ radio.pfad +"."+ "WLAN_STRENGTH", '', { type: 'string', name: 'WLAN strength', write: false, unit: 'dBm' });
    createState(pfad+ radio.pfad +"."+ "NAME", '', { type: 'string', name: 'Name of radio', write: false });
    createState(pfad+ radio.pfad +"."+ "ID", '', { type: 'string', name: 'UDP ID', write: false });
    createState(pfad+ radio.pfad +"."+ "IPADDR", '', { type: 'string', name: 'IP adress', write: false });
    createState(pfad+ radio.pfad +"."+ "IPMASK", '', { type: 'string', name: 'IP Mask', write: false });
    createState(pfad+ radio.pfad +"."+ "IPMODE", '', { type: 'string', name: 'IP  Mode', write: false });
    createState(pfad+ radio.pfad +"."+ "GATEWAY", '', { type: 'string', name: 'Gateway', write: false });
    createState(pfad+ radio.pfad +"."+ "SSID", '', { type: 'string', name: 'SSID', write: false });
    createState(pfad+ radio.pfad +"."+ "MAC_ADRESS", '', { type: 'string', name: 'MAC adress', write: false });
    createState(pfad+ radio.pfad +"."+ "COUNTRY", '', { type: 'string', name: 'Country', write: false });
    createState(pfad+ radio.pfad +"."+ "SERIAL_NR", '', { type: 'string', name: 'Serial Nr', write: false });
    createState(pfad+ radio.pfad +"."+ "SW-VERSION", '', { type: 'string', name: 'Software version', write: false });
    createState(pfad+ radio.pfad +"."+ "WLAN-FW", '', { type: 'string', name: 'WLAN Firmware', write: false });
    
    createState(pfad +radio.pfad+ "." + "POWER", '', { type: 'string', name: 'Current state of radio', write: false });
    createState(pfad +radio.pfad+ "." + "ENERGY_MODE", '', { type: 'string', name: '', write: false });
    createState(pfad +radio.pfad+ "." + "VOLUME", '', { type: 'number', name: 'VOLUME', write: false });
    createState(pfad +radio.pfad+ "." + "PLAYING_MODE", '', { type: 'string', name: '', write: false });
    createState(pfad +radio.pfad+ "." + "PLAYING", '', { type: 'string', name: '', write: false });
    createState(pfad +radio.pfad+ "." + "STATION_ID_PLAYING", '', { type: 'string', name: '', write: false });
    createState(pfad +radio.pfad+ "." + "STATION_URL_PLAYING", '', { type: 'string', name: '', write: false });
    createState(pfad +radio.pfad+ "." + "STATION_PLAYING", '', { type: 'string', name: '', write: false });
    createState(pfad +radio.pfad+ "." + "TUNEIN_ID", '', { type: 'string', name: '', write: false });
    createState(pfad +radio.pfad+ "." + "TUNEIN_SNR", '', { type: 'string', name: '', write: false });
    
    createState(pfad +radio.pfad+ "." + "STATIONS.STATION_1_NAME", '', { type: 'string', name: '', write: false });
    createState(pfad +radio.pfad+ "." + "STATIONS.STATION_1_URL", '', { type: 'string', name: '', write: false });
    createState(pfad +radio.pfad+ "." + "STATIONS.STATION_2_NAME", '', { type: 'string', name: '', write: false });
    createState(pfad +radio.pfad+ "." + "STATIONS.STATION_2_URL", '', { type: 'string', name: '', write: false });
    createState(pfad +radio.pfad+ "." + "STATIONS.STATION_3_NAME", '', { type: 'string', name: '', write: false });
    createState(pfad +radio.pfad+ "." + "STATIONS.STATION_3_URL", '', { type: 'string', name: '', write: false });
    createState(pfad +radio.pfad+ "." + "STATIONS.STATION_4_NAME", '', { type: 'string', name: '', write: false });
    createState(pfad +radio.pfad+ "." + "STATIONS.STATION_4_URL", '', { type: 'string', name: '', write: false });
    createState(pfad +radio.pfad+ "." + "STATIONS.STATION_5_NAME", '', { type: 'string', name: '', write: false });
    createState(pfad +radio.pfad+ "." + "STATIONS.STATION_5_URL", '', { type: 'string', name: '', write: false });
    createState(pfad +radio.pfad+ "." + "STATIONS.STATION_6_NAME", '', { type: 'string', name: '', write: false });
    createState(pfad +radio.pfad+ "." + "STATIONS.STATION_6_URL", '', { type: 'string', name: '', write: false });
    createState(pfad +radio.pfad+ "." + "STATIONS.STATION_7_NAME", '', { type: 'string', name: '', write: false });
    createState(pfad +radio.pfad+ "." + "STATIONS.STATION_7_URL", '', { type: 'string', name: '', write: false });
    createState(pfad +radio.pfad+ "." + "STATIONS.STATION_8_NAME", '', { type: 'string', name: '', write: false });
    createState(pfad +radio.pfad+ "." + "STATIONS.STATION_8_URL", '', { type: 'string', name: '', write: false });
    
    createState(pfad + radio.pfad +"." + "COMMAND.VOLUME_INC", false, { type: 'boolean', name: '', read: false, write: true, role: 'button' });
    createState(pfad + radio.pfad +"." + "COMMAND.VOLUME_DEC", false, { type: 'boolean', name: '', read: false, write: true, role: 'button' });
    createState(pfad + radio.pfad +"." + "COMMAND.VOLUME_MUTE", false, { type: 'boolean', name: '', read: false, write: true, role: 'switch' });
    createState(pfad + radio.pfad +"." + "COMMAND.RADIO_ON", false, { type: 'boolean', name: '', read: false, write: true, role: 'switch' });
    createState(pfad + radio.pfad +"." + "COMMAND.PLAY_STATION", 1, { type: 'number', name: 'PLAYING STATION 1-8', read: false, write: true });
    createState(pfad + radio.pfad +"." + "COMMAND.VOLUME_SET", 1, { type: 'number', name: 'SET VOLUME 0-31', read: false, write: true });
    };
    
    createAllStates();
     server.on('error', (err) => {
        log(`server error:\n${err.stack}`);
        server.close();
    });
    
    server.on('listening', function () {
        var address = server.address();
        log('UDP Server listening on ' + address.address + ":" + address.port);
    });
    
    try{
    server.bind(UDPListenPort);
    }
    
    catch(error){console.log(error);}
     
    
    /* server2.on('listening', function () {
    
        server2.setBroadcast(true);
    
        server2.setMulticastLoopback(true);
    
        var address = server2.address();
    
       log('UDP Server 2 listening on ' + address.address + ":" + address.port);
    
    });
    
    server2.bind(PORT2, HOST); */
    
     
    
    // Antworten vom Radio auf Abfragen
    
    server.on('message', function (message, remote) {   
        if (logging) log('(148) Meldung vom RADIO: ' + message);
        const radio = getRadioForIP(remote.address);
        var command = findstr("COMMAND:", message);
        if (command == "GET") {
    
        if (message.indexOf("INFO_BLOCK") >= 0) {
    
            setState(pfad + radio.pfad + "." + "Command", findstr("COMMAND:", message),true);
    
            setState(pfad + radio.pfad + "." + "WLAN_STRENGTH", findstr("WLAN STRENGTH:", message),true);
    
            setState(pfad + radio.pfad + "." + "NAME", findstr("NAME:", message),true);
    
            setState(pfad + radio.pfad + "." + "ID", findstr("ID:", message),true);
    
            setState(pfad + radio.pfad + "." + "IPADDR", findstr("IPADDR:", message),true);
    
            setState(pfad + radio.pfad + "." + "IPMASK", findstr("IPMASK:", message),true);
    
            setState(pfad + radio.pfad + "." + "IPMODE", findstr("IPMODE:", message),true);
    
            setState(pfad + radio.pfad + "." + "GATEWAY", findstr("GATEWAY:", message),true);
    
            setState(pfad + radio.pfad + "." + "SSID", findstr("SSID:", message),true);
    
            setState(pfad + radio.pfad + "." + "MAC_ADRESS", findstr("MAC:", message),true);
    
            setState(pfad + radio.pfad + "." + "COUNTRY", findstr("COUNTRY:", message),true);
    
            setState(pfad + radio.pfad + "." + "SERIAL_NR", findstr("SERNO:", message),true);
    
            setState(pfad + radio.pfad + "." + "SW-VERSION", findstr("SW-VERSION:", message),true);
    
            setState(pfad + radio.pfad + "." + "WLAN-FW", findstr("WLAN-FW:", message),true);
    
        } else if (message.indexOf("VOLUME") >= 0) {
    
            setState(pfad + radio.pfad + "." + "Command", findstr("COMMAND:", message),true);
    
            setState(pfad + radio.pfad + "." + "ID", findstr("ID:", message),true);
    
            setState(pfad + radio.pfad + "." + "VOLUME", parseInt(findstr("VOLUME_SET:", message)),true);
    
            if (parseInt(findstr("VOLUME_SET:", message)) >= 0 && parseInt(findstr("VOLUME_SET:", message)) <= 31 && message.indexOf("RESPONSE:ACK") >= 0) {
    
                setState(pfad + radio.pfad + "." + "COMMAND.VOLUME_SET", parseInt(findstr("VOLUME_SET:", message)), true);
    
            }
    
        } else if (message.indexOf("POWER_STATUS") >= 0) {
    
            setState(pfad + radio.pfad + "." + "Command", findstr("COMMAND:", message),true);
    
            setState(pfad + radio.pfad + "." + "ID", findstr("ID:", message),true);
    
            setState(pfad + radio.pfad + "." + "POWER", findstr("POWER:", message),true);
    
            if (findstr("POWER:", message) == "ON") {
    
                setState(pfad + radio.pfad + "." + "COMMAND.RADIO_ON", true, true)
    
            } else if (findstr("POWER:", message) == "OFF") {
    
                setState(pfad + radio.pfad + "." + "COMMAND.RADIO_ON", false, true)
    
            };
    
            setState(pfad + radio.pfad + "." + "ENERGY_MODE", findstr("ENERGY_MODE:", message),true);
    
        } else if (message.indexOf("TUNEIN_PARTNER_ID") >= 0) {
    
            setState(pfad + radio.pfad + "." + "Command", findstr("COMMAND:", message),true);
    
            setState(pfad + radio.pfad + "." + "ID", findstr("ID:", message),true);
    
            setState(pfad + radio.pfad + "." + "TUNEIN_ID", findstr("PARTNERID:", message),true);
    
            setState(pfad + radio.pfad + "." + "TUNEIN_SNR", findstr("SERNO:", message),true);
    
        } else if (message.indexOf("ALL_STATION_INFO") >= 0) {
    
            setState(pfad + radio.pfad + "." + "Command", findstr("COMMAND:", message),true);
    
            setState(pfad + radio.pfad + "." + "ID", findstr("ID:", message),true);
    
            setState(pfad + radio.pfad + "." + "STATIONS.STATION_1_NAME", findstr("1\r\nNAME:", message),true);
    
            setState(pfad + radio.pfad + "." + "STATIONS.STATION_1_URL", findstr(findstr("1\r\nNAME:", message) + '\r\nURL:', message),true);
    
            setState(pfad + radio.pfad + "." + "STATIONS.STATION_2_NAME", findstr("2\r\nNAME:", message),true);
    
            setState(pfad + radio.pfad + "." + "STATIONS.STATION_2_URL", findstr(findstr("2\r\nNAME:", message) + '\r\nURL:', message),true);
    
            setState(pfad + radio.pfad + "." + "STATIONS.STATION_3_NAME", findstr("3\r\nNAME:", message),true);
    
            setState(pfad + radio.pfad + "." + "STATIONS.STATION_3_URL", findstr(findstr("3\r\nNAME:", message) + '\r\nURL:', message),true);
    
            setState(pfad + radio.pfad + "." + "STATIONS.STATION_4_NAME", findstr("4\r\nNAME:", message),true);
    
            setState(pfad + radio.pfad + "." + "STATIONS.STATION_4_URL", findstr(findstr("4\r\nNAME:", message) + '\r\nURL:', message),true);
    
            setState(pfad + radio.pfad + "." + "STATIONS.STATION_5_NAME", findstr("5\r\nNAME:", message),true);
    
            setState(pfad + radio.pfad + "." + "STATIONS.STATION_5_URL", findstr(findstr("5\r\nNAME:", message) + '\r\nURL:', message),true);
    
            setState(pfad + radio.pfad + "." + "STATIONS.STATION_6_NAME", findstr("6\r\nNAME:", message),true);
    
            setState(pfad + radio.pfad + "." + "STATIONS.STATION_6_URL", findstr(findstr("6\r\nNAME:", message) + '\r\nURL:', message),true);
    
            setState(pfad + radio.pfad + "." + "STATIONS.STATION_7_NAME", findstr("7\r\nNAME:", message),true);
    
            setState(pfad + radio.pfad + "." + "STATIONS.STATION_7_URL", findstr(findstr("7\r\nNAME:", message) + '\r\nURL:', message),true);
    
            setState(pfad + radio.pfad + "." + "STATIONS.STATION_8_NAME", findstr("8\r\nNAME:", message),true);
    
            setState(pfad + radio.pfad + "." + "STATIONS.STATION_8_URL", findstr(findstr("8\r\nNAME:", message) + '\r\nURL:', message),true);
    
        } else if (message.indexOf("PLAYING_MODE") >= 0) {
    
            setState(pfad + radio.pfad + "." + "Command", findstr("COMMAND:", message),true);
    
            setState(pfad + radio.pfad + "." + "ID", findstr("ID:", message),true);
    
            setState(pfad + radio.pfad + "." + "PLAYING_MODE", findstr("MODE:", message),true);
    
            setState(pfad + radio.pfad + "." + "PLAYING", findstr("PLAYING:", message),true);
    
            setState(pfad + radio.pfad + "." + "STATION_ID_PLAYING", findstr("N\r\nID:", message),true);
    
            setState(pfad + radio.pfad + "." + "STATION_URL_PLAYING", findstr("URL:", message),true);
    
            setState(pfad + radio.pfad + "." + "STATION_PLAYING", findstr("NAME:", message),true);
    
        };
    
    } else if (command == "NOTIFICATION") {
    
        var event = findstr("EVENT:", message);
    
        setState(pfad + radio.pfad + "." + "Command", findstr("COMMAND:", message),true);
    
        setState(pfad + radio.pfad + "." + "IPADDR", findstr("IP:", message),true);
    
        setState(pfad + radio.pfad + "." + "NAME", findstr("NAME:", message),true);
    
        if (logging) log("Event = '" + event + "'");
    
       
    
        if (event == 'POWER_OFF' || event == 'POWER_ON') {
    
            sendcmd('COMMAND:GET\r\nPOWER_STATUS\r\nID:ioBroker\r\n\r\n');
    
        };
    
        if (event == "VOLUME_CHANGED") {
    
            sendcmd('COMMAND:GET\r\nVOLUME\r\nID:ioBroker\r\n\r\n');
    
        };
    
        if (event == 'STATION_CHANGED') {
    
        };
    
    } else if (command == "SET") {
    
        if (message.indexOf("VOLUME_ABSOLUTE") >= 0 && message.indexOf("RESPONSE:ACK") >= 0) {
    
            setState(pfad + radio.pfad + "." + "VOLUME", parseInt(findstr("VOLUME_SET:", message)), true);
    
            setState(pfad + radio.pfad + "." + "COMMAND.VOLUME_SET", parseInt(findstr("VOLUME_SET:", message)), true)
    
        }
    
        if (message.indexOf("VOLUME_DEC") >= 0 && message.indexOf("RESPONSE:ACK") >= 0) {
    
            setState(pfad + radio.pfad + "." + "VOLUME", parseInt(findstr("VOLUME_SET:", message)), true);
    
            setState(pfad + radio.pfad + "." + "COMMAND.VOLUME_SET", parseInt(findstr("VOLUME_SET:", message)), true)
    
        }
    
        if (message.indexOf("VOLUME_INC") >= 0 && message.indexOf("RESPONSE:ACK") >= 0) {
    
            setState(pfad + radio.pfad + "." + "VOLUME", parseInt(findstr("VOLUME_SET:", message)), true);
    
            setState(pfad + radio.pfad + "." + "COMMAND.VOLUME_SET", parseInt(findstr("VOLUME_SET:", message)), true)
    
        }
    
        if (message.indexOf("VOLUME_UNMUTE") >= 0 && message.indexOf("RESPONSE:ACK") >= 0) {
    
            setState(pfad + radio.pfad + "." + "COMMAND.VOLUME_MUTE", false, true)
    
        }
    
        if (message.indexOf("VOLUME_MUTE") >= 0 && message.indexOf("RESPONSE:ACK") >= 0) {
    
            setState(pfad + radio.pfad + "." + "COMMAND.VOLUME_MUTE", true, true)
    
        }
    
        if (message.indexOf("RADIO_OFF") >= 0 && message.indexOf("RESPONSE:ACK") >= 0) {
    
            setState(pfad + radio.pfad + "." + "COMMAND.RADIO_ON", false, true);
    
            setState(pfad + radio.pfad + "." + "POWER", "OFF",true);
    
        }
    
        if (message.indexOf("RADIO_ON") >= 0 && message.indexOf("RESPONSE:ACK") >= 0) {
    
            setState(pfad + radio.pfad + "." + "COMMAND.RADIO_ON", true, true);
    
            setState(pfad + radio.pfad + "." + "POWER", "ON",true);
    
        }
    
    } else if (command == "PLAY") {
    
        if (message.indexOf("STATION") >= 0 && message.indexOf("RESPONSE:ACK") >= 0) {
    
            setState(pfad + radio.pfad + "." + "COMMAND.PLAY_STATION", parseInt(findstr("STATION:", message)), true);
    
            setState(pfad + radio.pfad + "." + "STATION_ID_PLAYING", parseInt(findstr("STATION:", message)), true);
    
            setState(pfad + radio.pfad + "." + "STATION_PLAYING", findstr("PLAYING:", message), true);
    
        }
    
    } else {
    
     
    
        if (logging) log('unexpected message: ' + message);
    
     
    
    }
    
    });
    
     
    
    // starten der Abfragen nach Empfang von Broadcasts
    
    /* var timer = null;
    
     
    
    server2.on('message', function (message, remote) {
    
        if (timer) clearTimeout(timer);
    
        if (logging) log('Broadcast vom Radio: ' + message);
    
        if (logging) log(JSON.stringify(message));
    
        //var obj = JSON.parse('{'+message+'}');
    
        sendcmd(buf2);
    
        timer = setTimeout(function () {
    
            sendcmd(buf3);
    
        }, 1000);
    
    }); */
    
    function findstr(name, str) {
    
        var suchstring = String(name);
    
        var teststring = String(str);
    
        var pos = (teststring.indexOf(suchstring) + suchstring.length);
    
        var zaehler = (pos) + 1;
    
        //log("String: " + suchstring + "befindet sich an " + pos + " Stelle")
    
        do {
    
            var Zeichen = String(teststring).charCodeAt(zaehler);
    
            //log ("Zeichen: " + Zeichen + " Zähler: " + (zaehler - pos));
    
            zaehler = zaehler + 1;
    
        } while (Zeichen != 13 && zaehler - pos <= 100);
    
     
    
     
    
        //log("Start: " + pos + "Ende: " + zaehler);
    
        var ergebnis = String(str).substring(pos, zaehler - 1);
    
        if (teststring.indexOf(suchstring) == -1) {
    
            ergebnis = ""
    
        };
    
     
    
        //log("Objekt: " + name + " Wert: '" + ergebnis + "'");
    
        return ergebnis
    
    }
    
     
    
     
    
    function sendcmd(cmd) {
    
        radios.forEach(radio=>{       
    
        socket.send(cmd, 0, cmd.length, UDPPort, radio.IP, function (err, result) {
    
            if (err) log('Fehler Senden ' + cmd, 'error');
    
            else {
    
                if (logging) log('(477) Kommando gesendet: ' + cmd);
    
            }
    
        });})   
    
    }
    
     
    
    function sendcmdToIp(cmd,IP) {    
    
        socket.send(cmd, 0, cmd.length, UDPPort, IP, function (err, result) {
    
            if (err) log('Fehler Senden ' + cmd, 'error');
    
            else {
    
                if (logging) log('(495) Kommando gesendet: ' + cmd);
    
            }
    
        });   
    
    }
    
     
    
    //einmalige Ausführung beim  Starten des Skriptes
    
    sendcmd('COMMAND:GET\r\nPOWER_STATUS\r\nID:ioBroker\r\n\r\n');
    
    sendcmd('COMMAND:GET\r\nVOLUME\r\nID:ioBroker\r\n\r\n');
    
    sendcmd('COMMAND:GET\r\nINFO_BLOCK\r\nID:ioBroker\r\n\r\n');
    
    sendcmd('COMMAND:GET\r\nPLAYING_MODE\r\nID:ioBroker\r\n\r\n');
    
    sendcmd('COMMAND:GET\r\nALL_STATION_INFO\r\nID:ioBroker\r\n\r\n');
    
     
    
     
    
    var timer1 = null;
    
    var timer2 = null;
    
    var timer3 = null;
    
    var timer4 = null;
    
    schedule('*/1 * * * *', function () {  // jede Minute die wichtigsten Infos aktualisieren
    
     
    
        if (timer1) clearTimeout(timer1);
    
        timer1 = setTimeout(function () {
    
            sendcmd('COMMAND:GET\r\nPOWER_STATUS\r\nID:ioBroker\r\n\r\n');
    
        }, 1000);
    
        if (timer2) clearTimeout(timer2);
    
        timer2 = setTimeout(function () {
    
            sendcmd('COMMAND:GET\r\nVOLUME\r\nID:ioBroker\r\n\r\n');
    
        }, 2000);
    
        if (timer3) clearTimeout(timer3);
    
        timer3 = setTimeout(function () {
    
            sendcmd('COMMAND:GET\r\nINFO_BLOCK\r\nID:ioBroker\r\n\r\n');
    
        }, 3000);
    
        if (timer4) clearTimeout(timer4);
    
        timer4 = setTimeout(function () {
    
            sendcmd('COMMAND:GET\r\nPLAYING_MODE\r\nID:ioBroker\r\n\r\n');
    
        }, 4000);
    
    });
    
     
    
    schedule('*/30 * * * *', function () {  // alle 30 Minuten die Stationsliste aktualisieren
    
        sendcmd('COMMAND:GET\r\nALL_STATION_INFO\r\nID:ioBroker\r\n\r\n');
    
    });
    
     
    
    const initOnForAllRadios =()=>{
    
        radios.forEach(radio=>
    
        {
    
          on({ id: pfad2 + radio.pfad + ".COMMAND.VOLUME_INC", val: true }, function (obj) {                        
    
                
    
                     sendcmdToIp('COMMAND:SET\r\nVOLUME_INC\r\nID:ioBroker\r\n\r\n',radio.IP);
    
                     sendcmdToIp('COMMAND:GET\r\nVOLUME\r\nID:ioBroker\r\n\r\n',radio.IP);
    
                 });                                                                         
    
     
    
           on({ id: pfad2 + radio.pfad + ".COMMAND.VOLUME_DEC", val: true }, function (obj) {        
    
             sendcmdToIp('COMMAND:SET\r\nVOLUME_DEC\r\nID:ioBroker\r\n\r\n',radio.IP);
    
             sendcmdToIp('COMMAND:GET\r\nVOLUME\r\nID:ioBroker\r\n\r\n',radio.IP);});
    
           on({ id: pfad2  + radio.pfad + ".COMMAND.VOLUME_MUTE", change: "ne" }, function (obj) {            
    
                if (obj.state.val === true) {
    
                    sendcmdToIp('COMMAND:SET\r\nVOLUME_MUTE\r\nID:ioBroker\r\n\r\n',radio.IP);}
    
                if (obj.state.val === false) {
    
                  sendcmdToIp('COMMAND:SET\r\nVOLUME_UNMUTE\r\nID:ioBroker\r\n\r\n',radio.IP);
    
                }
    
             sendcmdToIp('COMMAND:GET\r\nVOLUME\r\nID:ioBroker\r\n\r\n',radio.IP);
    
             });
    
           on({ id: pfad2 +radio.pfad+ ".COMMAND.RADIO_ON", change: "ne", ack: false }, function (obj) {    
    
                    if (obj.state.val === true) 
    
                        sendcmdToIp('COMMAND:SET\r\nRADIO_ON\r\nID:ioBroker\r\n\r\n',radio.IP);                
    
                    if (obj.state.val === false) 
    
                        sendcmdToIp('COMMAND:SET\r\nRADIO_OFF\r\nID:ioBroker\r\n\r\n',radio.IP);    
    
                    sendcmdToIp('COMMAND:GET\r\nPOWER_STATUS\r\nID:ioBroker\r\n\r\n',radio.IP);});
    
          on({ id: pfad2 +radio.pfad+ ".COMMAND.PLAY_STATION", change: "ne", ack: false }, function (obj) {    
    
            if (obj.state.val <= 8 && obj.state.val > 0) {
    
                sendcmdToIp('COMMAND:PLAY\r\nSTATION:' + obj.state.val + '\r\nID:ioBroker\r\n\r\n',radio.IP);}}); 
    
          on({ id: pfad2+radio.pfad + ".COMMAND.VOLUME_SET", change: "ne", ack: false }, function (obj) {    
    
            if (obj.state.val <= 31 && obj.state.val >= 0) {
    
                sendcmdToIp('COMMAND:SET\r\nVOLUME_ABSOLUTE:' + obj.state.val + '\r\nID:ioBroker\r\n\r\n',radio.IP);}});         
    
        });
    
    };
    
    initOnForAllRadios();
    
    onStop(() => { 
    
        socket.close();
        server.close();
    
    });
    
    MaigoldM 1 Antwort Letzte Antwort
    0
    • W Weissnicht

      @crunchip @CKO

      ja, so ist es (wohl). Habe diese Korrektur bei mir bereits vorgenommen, daher hier gerne zum C&P.

      Und wirklich, funktioniert prima als Skript! :+1: Aber ein Adapter wäre auch etwas schönes :-)

      Off topic: Seit iOS15 ist die Busch Jäger App nicht mal mehr aufrufbar am Telefon

      /* Change history:
      v1.2
      - added ack: true to setstates() command when states are updated by the radio
      
      v1.1
      - comment of line var RadioIpaddress as no longer used due to multi radio support
      - found bug: if IP address not correct, the jscript adapter crashes; has to be fixed. How?
      - added function onClose to relese the socket binding when script ist stopped / restarted
        otherwise restart throws an error due to binding to port not possible as still blocked
      
      v1.0 script copy of ioBroker forum from user intruder7
      */
      
      var pfad = 'Geraete.BuschJaeger.RadioINet.';
      var pfad2 = 'javascript.0.' + pfad
       // vollständiger id Pfad wird: pfad2 + radio.pfad
      
      var UDPListenPort = 4242; //nicht ändern 
      var UDPPort = 4244; //nicht ändern 
      // var RadioIPadress = '192.168.2.67' // IP Adresse des Radios
      var HOST = '0.0.0.0'; //nicht ändern 
      
      var logging = false;
       
      /* ToDo: 
      - wenn IP nicht korrekt, stürzt der komplette jscript Adapter ab!
        Grund: Das sende-Kommando kann nicht gebaut werden: radio.path ist undefined für die IP
      - Prüfen, ob sendcmd und sendcmdToIP vereinheitlicht werden kann
        sendcmd: sendet an alle Radios
        sendcmdToIP: sendet nur an ein bestimmtes Radio
      */
      
      const radios =  [
           {
                   IP: '192.168.2.67',
                   pfad: 'Bad'
           }/*,
          {
                   IP: '192.168.100.74',
                   pfad: 'Keller'
                  }        */
      ];
      
      
      // ab hier nichts mehr ändern 
      
      var dgram = require('dgram');
      var socket = dgram.createSocket('udp4');
      var server = dgram.createSocket('udp4');
      //var server2 = dgram.createSocket('udp4');
       
      
      const getRadioForIP= (IP)=>{
          return radios.find(radio=>radio.IP == IP )
      }
      
      const createAllStates = ()=>{    
          radios.forEach((radio)=>{createRadioState(radio);});    
      };
      
      const createRadioState = (radio)=>{
      createState(pfad+ radio.pfad +"."+ "Command", '', { type: 'string', name: 'Last command', write: false });
      createState(pfad+ radio.pfad +"."+ "WLAN_STRENGTH", '', { type: 'string', name: 'WLAN strength', write: false, unit: 'dBm' });
      createState(pfad+ radio.pfad +"."+ "NAME", '', { type: 'string', name: 'Name of radio', write: false });
      createState(pfad+ radio.pfad +"."+ "ID", '', { type: 'string', name: 'UDP ID', write: false });
      createState(pfad+ radio.pfad +"."+ "IPADDR", '', { type: 'string', name: 'IP adress', write: false });
      createState(pfad+ radio.pfad +"."+ "IPMASK", '', { type: 'string', name: 'IP Mask', write: false });
      createState(pfad+ radio.pfad +"."+ "IPMODE", '', { type: 'string', name: 'IP  Mode', write: false });
      createState(pfad+ radio.pfad +"."+ "GATEWAY", '', { type: 'string', name: 'Gateway', write: false });
      createState(pfad+ radio.pfad +"."+ "SSID", '', { type: 'string', name: 'SSID', write: false });
      createState(pfad+ radio.pfad +"."+ "MAC_ADRESS", '', { type: 'string', name: 'MAC adress', write: false });
      createState(pfad+ radio.pfad +"."+ "COUNTRY", '', { type: 'string', name: 'Country', write: false });
      createState(pfad+ radio.pfad +"."+ "SERIAL_NR", '', { type: 'string', name: 'Serial Nr', write: false });
      createState(pfad+ radio.pfad +"."+ "SW-VERSION", '', { type: 'string', name: 'Software version', write: false });
      createState(pfad+ radio.pfad +"."+ "WLAN-FW", '', { type: 'string', name: 'WLAN Firmware', write: false });
      
      createState(pfad +radio.pfad+ "." + "POWER", '', { type: 'string', name: 'Current state of radio', write: false });
      createState(pfad +radio.pfad+ "." + "ENERGY_MODE", '', { type: 'string', name: '', write: false });
      createState(pfad +radio.pfad+ "." + "VOLUME", '', { type: 'number', name: 'VOLUME', write: false });
      createState(pfad +radio.pfad+ "." + "PLAYING_MODE", '', { type: 'string', name: '', write: false });
      createState(pfad +radio.pfad+ "." + "PLAYING", '', { type: 'string', name: '', write: false });
      createState(pfad +radio.pfad+ "." + "STATION_ID_PLAYING", '', { type: 'string', name: '', write: false });
      createState(pfad +radio.pfad+ "." + "STATION_URL_PLAYING", '', { type: 'string', name: '', write: false });
      createState(pfad +radio.pfad+ "." + "STATION_PLAYING", '', { type: 'string', name: '', write: false });
      createState(pfad +radio.pfad+ "." + "TUNEIN_ID", '', { type: 'string', name: '', write: false });
      createState(pfad +radio.pfad+ "." + "TUNEIN_SNR", '', { type: 'string', name: '', write: false });
      
      createState(pfad +radio.pfad+ "." + "STATIONS.STATION_1_NAME", '', { type: 'string', name: '', write: false });
      createState(pfad +radio.pfad+ "." + "STATIONS.STATION_1_URL", '', { type: 'string', name: '', write: false });
      createState(pfad +radio.pfad+ "." + "STATIONS.STATION_2_NAME", '', { type: 'string', name: '', write: false });
      createState(pfad +radio.pfad+ "." + "STATIONS.STATION_2_URL", '', { type: 'string', name: '', write: false });
      createState(pfad +radio.pfad+ "." + "STATIONS.STATION_3_NAME", '', { type: 'string', name: '', write: false });
      createState(pfad +radio.pfad+ "." + "STATIONS.STATION_3_URL", '', { type: 'string', name: '', write: false });
      createState(pfad +radio.pfad+ "." + "STATIONS.STATION_4_NAME", '', { type: 'string', name: '', write: false });
      createState(pfad +radio.pfad+ "." + "STATIONS.STATION_4_URL", '', { type: 'string', name: '', write: false });
      createState(pfad +radio.pfad+ "." + "STATIONS.STATION_5_NAME", '', { type: 'string', name: '', write: false });
      createState(pfad +radio.pfad+ "." + "STATIONS.STATION_5_URL", '', { type: 'string', name: '', write: false });
      createState(pfad +radio.pfad+ "." + "STATIONS.STATION_6_NAME", '', { type: 'string', name: '', write: false });
      createState(pfad +radio.pfad+ "." + "STATIONS.STATION_6_URL", '', { type: 'string', name: '', write: false });
      createState(pfad +radio.pfad+ "." + "STATIONS.STATION_7_NAME", '', { type: 'string', name: '', write: false });
      createState(pfad +radio.pfad+ "." + "STATIONS.STATION_7_URL", '', { type: 'string', name: '', write: false });
      createState(pfad +radio.pfad+ "." + "STATIONS.STATION_8_NAME", '', { type: 'string', name: '', write: false });
      createState(pfad +radio.pfad+ "." + "STATIONS.STATION_8_URL", '', { type: 'string', name: '', write: false });
      
      createState(pfad + radio.pfad +"." + "COMMAND.VOLUME_INC", false, { type: 'boolean', name: '', read: false, write: true, role: 'button' });
      createState(pfad + radio.pfad +"." + "COMMAND.VOLUME_DEC", false, { type: 'boolean', name: '', read: false, write: true, role: 'button' });
      createState(pfad + radio.pfad +"." + "COMMAND.VOLUME_MUTE", false, { type: 'boolean', name: '', read: false, write: true, role: 'switch' });
      createState(pfad + radio.pfad +"." + "COMMAND.RADIO_ON", false, { type: 'boolean', name: '', read: false, write: true, role: 'switch' });
      createState(pfad + radio.pfad +"." + "COMMAND.PLAY_STATION", 1, { type: 'number', name: 'PLAYING STATION 1-8', read: false, write: true });
      createState(pfad + radio.pfad +"." + "COMMAND.VOLUME_SET", 1, { type: 'number', name: 'SET VOLUME 0-31', read: false, write: true });
      };
      
      createAllStates();
       server.on('error', (err) => {
          log(`server error:\n${err.stack}`);
          server.close();
      });
      
      server.on('listening', function () {
          var address = server.address();
          log('UDP Server listening on ' + address.address + ":" + address.port);
      });
      
      try{
      server.bind(UDPListenPort);
      }
      
      catch(error){console.log(error);}
       
      
      /* server2.on('listening', function () {
      
          server2.setBroadcast(true);
      
          server2.setMulticastLoopback(true);
      
          var address = server2.address();
      
         log('UDP Server 2 listening on ' + address.address + ":" + address.port);
      
      });
      
      server2.bind(PORT2, HOST); */
      
       
      
      // Antworten vom Radio auf Abfragen
      
      server.on('message', function (message, remote) {   
          if (logging) log('(148) Meldung vom RADIO: ' + message);
          const radio = getRadioForIP(remote.address);
          var command = findstr("COMMAND:", message);
          if (command == "GET") {
      
          if (message.indexOf("INFO_BLOCK") >= 0) {
      
              setState(pfad + radio.pfad + "." + "Command", findstr("COMMAND:", message),true);
      
              setState(pfad + radio.pfad + "." + "WLAN_STRENGTH", findstr("WLAN STRENGTH:", message),true);
      
              setState(pfad + radio.pfad + "." + "NAME", findstr("NAME:", message),true);
      
              setState(pfad + radio.pfad + "." + "ID", findstr("ID:", message),true);
      
              setState(pfad + radio.pfad + "." + "IPADDR", findstr("IPADDR:", message),true);
      
              setState(pfad + radio.pfad + "." + "IPMASK", findstr("IPMASK:", message),true);
      
              setState(pfad + radio.pfad + "." + "IPMODE", findstr("IPMODE:", message),true);
      
              setState(pfad + radio.pfad + "." + "GATEWAY", findstr("GATEWAY:", message),true);
      
              setState(pfad + radio.pfad + "." + "SSID", findstr("SSID:", message),true);
      
              setState(pfad + radio.pfad + "." + "MAC_ADRESS", findstr("MAC:", message),true);
      
              setState(pfad + radio.pfad + "." + "COUNTRY", findstr("COUNTRY:", message),true);
      
              setState(pfad + radio.pfad + "." + "SERIAL_NR", findstr("SERNO:", message),true);
      
              setState(pfad + radio.pfad + "." + "SW-VERSION", findstr("SW-VERSION:", message),true);
      
              setState(pfad + radio.pfad + "." + "WLAN-FW", findstr("WLAN-FW:", message),true);
      
          } else if (message.indexOf("VOLUME") >= 0) {
      
              setState(pfad + radio.pfad + "." + "Command", findstr("COMMAND:", message),true);
      
              setState(pfad + radio.pfad + "." + "ID", findstr("ID:", message),true);
      
              setState(pfad + radio.pfad + "." + "VOLUME", parseInt(findstr("VOLUME_SET:", message)),true);
      
              if (parseInt(findstr("VOLUME_SET:", message)) >= 0 && parseInt(findstr("VOLUME_SET:", message)) <= 31 && message.indexOf("RESPONSE:ACK") >= 0) {
      
                  setState(pfad + radio.pfad + "." + "COMMAND.VOLUME_SET", parseInt(findstr("VOLUME_SET:", message)), true);
      
              }
      
          } else if (message.indexOf("POWER_STATUS") >= 0) {
      
              setState(pfad + radio.pfad + "." + "Command", findstr("COMMAND:", message),true);
      
              setState(pfad + radio.pfad + "." + "ID", findstr("ID:", message),true);
      
              setState(pfad + radio.pfad + "." + "POWER", findstr("POWER:", message),true);
      
              if (findstr("POWER:", message) == "ON") {
      
                  setState(pfad + radio.pfad + "." + "COMMAND.RADIO_ON", true, true)
      
              } else if (findstr("POWER:", message) == "OFF") {
      
                  setState(pfad + radio.pfad + "." + "COMMAND.RADIO_ON", false, true)
      
              };
      
              setState(pfad + radio.pfad + "." + "ENERGY_MODE", findstr("ENERGY_MODE:", message),true);
      
          } else if (message.indexOf("TUNEIN_PARTNER_ID") >= 0) {
      
              setState(pfad + radio.pfad + "." + "Command", findstr("COMMAND:", message),true);
      
              setState(pfad + radio.pfad + "." + "ID", findstr("ID:", message),true);
      
              setState(pfad + radio.pfad + "." + "TUNEIN_ID", findstr("PARTNERID:", message),true);
      
              setState(pfad + radio.pfad + "." + "TUNEIN_SNR", findstr("SERNO:", message),true);
      
          } else if (message.indexOf("ALL_STATION_INFO") >= 0) {
      
              setState(pfad + radio.pfad + "." + "Command", findstr("COMMAND:", message),true);
      
              setState(pfad + radio.pfad + "." + "ID", findstr("ID:", message),true);
      
              setState(pfad + radio.pfad + "." + "STATIONS.STATION_1_NAME", findstr("1\r\nNAME:", message),true);
      
              setState(pfad + radio.pfad + "." + "STATIONS.STATION_1_URL", findstr(findstr("1\r\nNAME:", message) + '\r\nURL:', message),true);
      
              setState(pfad + radio.pfad + "." + "STATIONS.STATION_2_NAME", findstr("2\r\nNAME:", message),true);
      
              setState(pfad + radio.pfad + "." + "STATIONS.STATION_2_URL", findstr(findstr("2\r\nNAME:", message) + '\r\nURL:', message),true);
      
              setState(pfad + radio.pfad + "." + "STATIONS.STATION_3_NAME", findstr("3\r\nNAME:", message),true);
      
              setState(pfad + radio.pfad + "." + "STATIONS.STATION_3_URL", findstr(findstr("3\r\nNAME:", message) + '\r\nURL:', message),true);
      
              setState(pfad + radio.pfad + "." + "STATIONS.STATION_4_NAME", findstr("4\r\nNAME:", message),true);
      
              setState(pfad + radio.pfad + "." + "STATIONS.STATION_4_URL", findstr(findstr("4\r\nNAME:", message) + '\r\nURL:', message),true);
      
              setState(pfad + radio.pfad + "." + "STATIONS.STATION_5_NAME", findstr("5\r\nNAME:", message),true);
      
              setState(pfad + radio.pfad + "." + "STATIONS.STATION_5_URL", findstr(findstr("5\r\nNAME:", message) + '\r\nURL:', message),true);
      
              setState(pfad + radio.pfad + "." + "STATIONS.STATION_6_NAME", findstr("6\r\nNAME:", message),true);
      
              setState(pfad + radio.pfad + "." + "STATIONS.STATION_6_URL", findstr(findstr("6\r\nNAME:", message) + '\r\nURL:', message),true);
      
              setState(pfad + radio.pfad + "." + "STATIONS.STATION_7_NAME", findstr("7\r\nNAME:", message),true);
      
              setState(pfad + radio.pfad + "." + "STATIONS.STATION_7_URL", findstr(findstr("7\r\nNAME:", message) + '\r\nURL:', message),true);
      
              setState(pfad + radio.pfad + "." + "STATIONS.STATION_8_NAME", findstr("8\r\nNAME:", message),true);
      
              setState(pfad + radio.pfad + "." + "STATIONS.STATION_8_URL", findstr(findstr("8\r\nNAME:", message) + '\r\nURL:', message),true);
      
          } else if (message.indexOf("PLAYING_MODE") >= 0) {
      
              setState(pfad + radio.pfad + "." + "Command", findstr("COMMAND:", message),true);
      
              setState(pfad + radio.pfad + "." + "ID", findstr("ID:", message),true);
      
              setState(pfad + radio.pfad + "." + "PLAYING_MODE", findstr("MODE:", message),true);
      
              setState(pfad + radio.pfad + "." + "PLAYING", findstr("PLAYING:", message),true);
      
              setState(pfad + radio.pfad + "." + "STATION_ID_PLAYING", findstr("N\r\nID:", message),true);
      
              setState(pfad + radio.pfad + "." + "STATION_URL_PLAYING", findstr("URL:", message),true);
      
              setState(pfad + radio.pfad + "." + "STATION_PLAYING", findstr("NAME:", message),true);
      
          };
      
      } else if (command == "NOTIFICATION") {
      
          var event = findstr("EVENT:", message);
      
          setState(pfad + radio.pfad + "." + "Command", findstr("COMMAND:", message),true);
      
          setState(pfad + radio.pfad + "." + "IPADDR", findstr("IP:", message),true);
      
          setState(pfad + radio.pfad + "." + "NAME", findstr("NAME:", message),true);
      
          if (logging) log("Event = '" + event + "'");
      
         
      
          if (event == 'POWER_OFF' || event == 'POWER_ON') {
      
              sendcmd('COMMAND:GET\r\nPOWER_STATUS\r\nID:ioBroker\r\n\r\n');
      
          };
      
          if (event == "VOLUME_CHANGED") {
      
              sendcmd('COMMAND:GET\r\nVOLUME\r\nID:ioBroker\r\n\r\n');
      
          };
      
          if (event == 'STATION_CHANGED') {
      
          };
      
      } else if (command == "SET") {
      
          if (message.indexOf("VOLUME_ABSOLUTE") >= 0 && message.indexOf("RESPONSE:ACK") >= 0) {
      
              setState(pfad + radio.pfad + "." + "VOLUME", parseInt(findstr("VOLUME_SET:", message)), true);
      
              setState(pfad + radio.pfad + "." + "COMMAND.VOLUME_SET", parseInt(findstr("VOLUME_SET:", message)), true)
      
          }
      
          if (message.indexOf("VOLUME_DEC") >= 0 && message.indexOf("RESPONSE:ACK") >= 0) {
      
              setState(pfad + radio.pfad + "." + "VOLUME", parseInt(findstr("VOLUME_SET:", message)), true);
      
              setState(pfad + radio.pfad + "." + "COMMAND.VOLUME_SET", parseInt(findstr("VOLUME_SET:", message)), true)
      
          }
      
          if (message.indexOf("VOLUME_INC") >= 0 && message.indexOf("RESPONSE:ACK") >= 0) {
      
              setState(pfad + radio.pfad + "." + "VOLUME", parseInt(findstr("VOLUME_SET:", message)), true);
      
              setState(pfad + radio.pfad + "." + "COMMAND.VOLUME_SET", parseInt(findstr("VOLUME_SET:", message)), true)
      
          }
      
          if (message.indexOf("VOLUME_UNMUTE") >= 0 && message.indexOf("RESPONSE:ACK") >= 0) {
      
              setState(pfad + radio.pfad + "." + "COMMAND.VOLUME_MUTE", false, true)
      
          }
      
          if (message.indexOf("VOLUME_MUTE") >= 0 && message.indexOf("RESPONSE:ACK") >= 0) {
      
              setState(pfad + radio.pfad + "." + "COMMAND.VOLUME_MUTE", true, true)
      
          }
      
          if (message.indexOf("RADIO_OFF") >= 0 && message.indexOf("RESPONSE:ACK") >= 0) {
      
              setState(pfad + radio.pfad + "." + "COMMAND.RADIO_ON", false, true);
      
              setState(pfad + radio.pfad + "." + "POWER", "OFF",true);
      
          }
      
          if (message.indexOf("RADIO_ON") >= 0 && message.indexOf("RESPONSE:ACK") >= 0) {
      
              setState(pfad + radio.pfad + "." + "COMMAND.RADIO_ON", true, true);
      
              setState(pfad + radio.pfad + "." + "POWER", "ON",true);
      
          }
      
      } else if (command == "PLAY") {
      
          if (message.indexOf("STATION") >= 0 && message.indexOf("RESPONSE:ACK") >= 0) {
      
              setState(pfad + radio.pfad + "." + "COMMAND.PLAY_STATION", parseInt(findstr("STATION:", message)), true);
      
              setState(pfad + radio.pfad + "." + "STATION_ID_PLAYING", parseInt(findstr("STATION:", message)), true);
      
              setState(pfad + radio.pfad + "." + "STATION_PLAYING", findstr("PLAYING:", message), true);
      
          }
      
      } else {
      
       
      
          if (logging) log('unexpected message: ' + message);
      
       
      
      }
      
      });
      
       
      
      // starten der Abfragen nach Empfang von Broadcasts
      
      /* var timer = null;
      
       
      
      server2.on('message', function (message, remote) {
      
          if (timer) clearTimeout(timer);
      
          if (logging) log('Broadcast vom Radio: ' + message);
      
          if (logging) log(JSON.stringify(message));
      
          //var obj = JSON.parse('{'+message+'}');
      
          sendcmd(buf2);
      
          timer = setTimeout(function () {
      
              sendcmd(buf3);
      
          }, 1000);
      
      }); */
      
      function findstr(name, str) {
      
          var suchstring = String(name);
      
          var teststring = String(str);
      
          var pos = (teststring.indexOf(suchstring) + suchstring.length);
      
          var zaehler = (pos) + 1;
      
          //log("String: " + suchstring + "befindet sich an " + pos + " Stelle")
      
          do {
      
              var Zeichen = String(teststring).charCodeAt(zaehler);
      
              //log ("Zeichen: " + Zeichen + " Zähler: " + (zaehler - pos));
      
              zaehler = zaehler + 1;
      
          } while (Zeichen != 13 && zaehler - pos <= 100);
      
       
      
       
      
          //log("Start: " + pos + "Ende: " + zaehler);
      
          var ergebnis = String(str).substring(pos, zaehler - 1);
      
          if (teststring.indexOf(suchstring) == -1) {
      
              ergebnis = ""
      
          };
      
       
      
          //log("Objekt: " + name + " Wert: '" + ergebnis + "'");
      
          return ergebnis
      
      }
      
       
      
       
      
      function sendcmd(cmd) {
      
          radios.forEach(radio=>{       
      
          socket.send(cmd, 0, cmd.length, UDPPort, radio.IP, function (err, result) {
      
              if (err) log('Fehler Senden ' + cmd, 'error');
      
              else {
      
                  if (logging) log('(477) Kommando gesendet: ' + cmd);
      
              }
      
          });})   
      
      }
      
       
      
      function sendcmdToIp(cmd,IP) {    
      
          socket.send(cmd, 0, cmd.length, UDPPort, IP, function (err, result) {
      
              if (err) log('Fehler Senden ' + cmd, 'error');
      
              else {
      
                  if (logging) log('(495) Kommando gesendet: ' + cmd);
      
              }
      
          });   
      
      }
      
       
      
      //einmalige Ausführung beim  Starten des Skriptes
      
      sendcmd('COMMAND:GET\r\nPOWER_STATUS\r\nID:ioBroker\r\n\r\n');
      
      sendcmd('COMMAND:GET\r\nVOLUME\r\nID:ioBroker\r\n\r\n');
      
      sendcmd('COMMAND:GET\r\nINFO_BLOCK\r\nID:ioBroker\r\n\r\n');
      
      sendcmd('COMMAND:GET\r\nPLAYING_MODE\r\nID:ioBroker\r\n\r\n');
      
      sendcmd('COMMAND:GET\r\nALL_STATION_INFO\r\nID:ioBroker\r\n\r\n');
      
       
      
       
      
      var timer1 = null;
      
      var timer2 = null;
      
      var timer3 = null;
      
      var timer4 = null;
      
      schedule('*/1 * * * *', function () {  // jede Minute die wichtigsten Infos aktualisieren
      
       
      
          if (timer1) clearTimeout(timer1);
      
          timer1 = setTimeout(function () {
      
              sendcmd('COMMAND:GET\r\nPOWER_STATUS\r\nID:ioBroker\r\n\r\n');
      
          }, 1000);
      
          if (timer2) clearTimeout(timer2);
      
          timer2 = setTimeout(function () {
      
              sendcmd('COMMAND:GET\r\nVOLUME\r\nID:ioBroker\r\n\r\n');
      
          }, 2000);
      
          if (timer3) clearTimeout(timer3);
      
          timer3 = setTimeout(function () {
      
              sendcmd('COMMAND:GET\r\nINFO_BLOCK\r\nID:ioBroker\r\n\r\n');
      
          }, 3000);
      
          if (timer4) clearTimeout(timer4);
      
          timer4 = setTimeout(function () {
      
              sendcmd('COMMAND:GET\r\nPLAYING_MODE\r\nID:ioBroker\r\n\r\n');
      
          }, 4000);
      
      });
      
       
      
      schedule('*/30 * * * *', function () {  // alle 30 Minuten die Stationsliste aktualisieren
      
          sendcmd('COMMAND:GET\r\nALL_STATION_INFO\r\nID:ioBroker\r\n\r\n');
      
      });
      
       
      
      const initOnForAllRadios =()=>{
      
          radios.forEach(radio=>
      
          {
      
            on({ id: pfad2 + radio.pfad + ".COMMAND.VOLUME_INC", val: true }, function (obj) {                        
      
                  
      
                       sendcmdToIp('COMMAND:SET\r\nVOLUME_INC\r\nID:ioBroker\r\n\r\n',radio.IP);
      
                       sendcmdToIp('COMMAND:GET\r\nVOLUME\r\nID:ioBroker\r\n\r\n',radio.IP);
      
                   });                                                                         
      
       
      
             on({ id: pfad2 + radio.pfad + ".COMMAND.VOLUME_DEC", val: true }, function (obj) {        
      
               sendcmdToIp('COMMAND:SET\r\nVOLUME_DEC\r\nID:ioBroker\r\n\r\n',radio.IP);
      
               sendcmdToIp('COMMAND:GET\r\nVOLUME\r\nID:ioBroker\r\n\r\n',radio.IP);});
      
             on({ id: pfad2  + radio.pfad + ".COMMAND.VOLUME_MUTE", change: "ne" }, function (obj) {            
      
                  if (obj.state.val === true) {
      
                      sendcmdToIp('COMMAND:SET\r\nVOLUME_MUTE\r\nID:ioBroker\r\n\r\n',radio.IP);}
      
                  if (obj.state.val === false) {
      
                    sendcmdToIp('COMMAND:SET\r\nVOLUME_UNMUTE\r\nID:ioBroker\r\n\r\n',radio.IP);
      
                  }
      
               sendcmdToIp('COMMAND:GET\r\nVOLUME\r\nID:ioBroker\r\n\r\n',radio.IP);
      
               });
      
             on({ id: pfad2 +radio.pfad+ ".COMMAND.RADIO_ON", change: "ne", ack: false }, function (obj) {    
      
                      if (obj.state.val === true) 
      
                          sendcmdToIp('COMMAND:SET\r\nRADIO_ON\r\nID:ioBroker\r\n\r\n',radio.IP);                
      
                      if (obj.state.val === false) 
      
                          sendcmdToIp('COMMAND:SET\r\nRADIO_OFF\r\nID:ioBroker\r\n\r\n',radio.IP);    
      
                      sendcmdToIp('COMMAND:GET\r\nPOWER_STATUS\r\nID:ioBroker\r\n\r\n',radio.IP);});
      
            on({ id: pfad2 +radio.pfad+ ".COMMAND.PLAY_STATION", change: "ne", ack: false }, function (obj) {    
      
              if (obj.state.val <= 8 && obj.state.val > 0) {
      
                  sendcmdToIp('COMMAND:PLAY\r\nSTATION:' + obj.state.val + '\r\nID:ioBroker\r\n\r\n',radio.IP);}}); 
      
            on({ id: pfad2+radio.pfad + ".COMMAND.VOLUME_SET", change: "ne", ack: false }, function (obj) {    
      
              if (obj.state.val <= 31 && obj.state.val >= 0) {
      
                  sendcmdToIp('COMMAND:SET\r\nVOLUME_ABSOLUTE:' + obj.state.val + '\r\nID:ioBroker\r\n\r\n',radio.IP);}});         
      
          });
      
      };
      
      initOnForAllRadios();
      
      onStop(() => { 
      
          socket.close();
          server.close();
      
      });
      
      MaigoldM Offline
      MaigoldM Offline
      Maigold
      schrieb am zuletzt editiert von
      #29

      @weissnicht @crunchip @CKO

      Habe das Script für meine 3 Radios implementiert - was soll ich sagen: ein Traum!
      Nur eine Sache bekomme ich nicht hin, ich habe alle Radios auch mit AUX-In belegt und streame so zentral Musik auf die Räume, bekomme aber die Umstellung/COMMAND Punkt für PLAYING nicht hin. Hatte verstanden, dass dieser entweder auf STATION oder AUX_IDCOCK stehen muss.
      Irgendjemand eine Idee wie man das im Script anpassen muss?

      crunchipC E 2 Antworten Letzte Antwort
      0
      • MaigoldM Maigold

        @weissnicht @crunchip @CKO

        Habe das Script für meine 3 Radios implementiert - was soll ich sagen: ein Traum!
        Nur eine Sache bekomme ich nicht hin, ich habe alle Radios auch mit AUX-In belegt und streame so zentral Musik auf die Räume, bekomme aber die Umstellung/COMMAND Punkt für PLAYING nicht hin. Hatte verstanden, dass dieser entweder auf STATION oder AUX_IDCOCK stehen muss.
        Irgendjemand eine Idee wie man das im Script anpassen muss?

        crunchipC Offline
        crunchipC Offline
        crunchip
        Forum Testing Most Active
        schrieb am zuletzt editiert von
        #30

        @maigold kann ich leider nicht weiterhelfen

        umgestiegen von Proxmox auf Unraid

        MaigoldM 1 Antwort Letzte Antwort
        0
        • MaigoldM Maigold

          @weissnicht @crunchip @CKO

          Habe das Script für meine 3 Radios implementiert - was soll ich sagen: ein Traum!
          Nur eine Sache bekomme ich nicht hin, ich habe alle Radios auch mit AUX-In belegt und streame so zentral Musik auf die Räume, bekomme aber die Umstellung/COMMAND Punkt für PLAYING nicht hin. Hatte verstanden, dass dieser entweder auf STATION oder AUX_IDCOCK stehen muss.
          Irgendjemand eine Idee wie man das im Script anpassen muss?

          E Offline
          E Offline
          e-s
          schrieb am zuletzt editiert von
          #31

          @maigold
          In Zwischenzeit ist auch ein adapter dafür erschienen, hast du den mal getestet?

          crunchipC MaigoldM 2 Antworten Letzte Antwort
          0
          • E e-s

            @maigold
            In Zwischenzeit ist auch ein adapter dafür erschienen, hast du den mal getestet?

            crunchipC Offline
            crunchipC Offline
            crunchip
            Forum Testing Most Active
            schrieb am zuletzt editiert von
            #32

            @e-s wirklich?
            Gar nicht mitbekommen

            umgestiegen von Proxmox auf Unraid

            1 Antwort Letzte Antwort
            0
            • E e-s

              @maigold
              In Zwischenzeit ist auch ein adapter dafür erschienen, hast du den mal getestet?

              MaigoldM Offline
              MaigoldM Offline
              Maigold
              schrieb am zuletzt editiert von
              #33

              @e-s
              Kann nichts dazu finden - hast Du einen Link o.ä.?

              E 1 Antwort Letzte Antwort
              0
              • MaigoldM Maigold

                @e-s
                Kann nichts dazu finden - hast Du einen Link o.ä.?

                E Offline
                E Offline
                e-s
                schrieb am zuletzt editiert von e-s
                #34

                @maigold @crunchip
                Hier mal der github link

                W MaigoldM 2 Antworten Letzte Antwort
                0
                • E e-s

                  @maigold @crunchip
                  Hier mal der github link

                  W Offline
                  W Offline
                  Weissnicht
                  schrieb am zuletzt editiert von
                  #35

                  @e-s
                  Ah, danke!
                  Interessant, hätte ich nie gefunden :baby:

                  Sieht auf den ersten Blick noch rudimentär aus aber werde ich bei Gelegenheit mal testen.
                  Mit dem Skript läuft es ganz gut. Lediglich der Erfolg, die Lautstärke automatisch anzupassen, wenn das Radio (z.B. spät Abends) eingeschaltet wird, ist vom Zeitpunkt des Befehls abhängig, ob es klappt.
                  Naja, gut zu wissen.

                  1 Antwort Letzte Antwort
                  0
                  • E e-s

                    @maigold @crunchip
                    Hier mal der github link

                    MaigoldM Offline
                    MaigoldM Offline
                    Maigold
                    schrieb am zuletzt editiert von
                    #36

                    @e-s @crunchip

                    Habe den Adapter mal ausprobiert und der funktioniert mal gar nicht.
                    Außer der IP und eine PIN kann man nichts konfigurieren bzw. falsch machen. Eine PIN braucht der 8216 U nicht, aber egal, ob leer gelassen oder eine Random-PIN eingegeben, der Adapter stürzt ab.
                    Wenn jemand hier andere Erfahrungen macht, bitte man Ping!

                    E 1 Antwort Letzte Antwort
                    0
                    • MaigoldM Maigold

                      @e-s @crunchip

                      Habe den Adapter mal ausprobiert und der funktioniert mal gar nicht.
                      Außer der IP und eine PIN kann man nichts konfigurieren bzw. falsch machen. Eine PIN braucht der 8216 U nicht, aber egal, ob leer gelassen oder eine Random-PIN eingegeben, der Adapter stürzt ab.
                      Wenn jemand hier andere Erfahrungen macht, bitte man Ping!

                      E Offline
                      E Offline
                      e-s
                      schrieb am zuletzt editiert von e-s
                      #37

                      @maigold
                      Habe ich mich vielleicht geirrt und das busch Jäger Radio passt doch nicht zum Adapter. Ich hatte damals diesen thread und ein ein paar andere abonniert weil die alle zum selben thema waren.
                      Kannst du dein Radio mit der undok app bedienen?

                      1 Antwort Letzte Antwort
                      0
                      • crunchipC crunchip

                        @maigold kann ich leider nicht weiterhelfen

                        MaigoldM Offline
                        MaigoldM Offline
                        Maigold
                        schrieb am zuletzt editiert von
                        #38

                        @intruder7

                        Kannst Du hier weiterhelfen?

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


                        Support us

                        ioBroker
                        Community Adapters
                        Donate

                        746

                        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