NEWS
[Gelöst] JavaScript für Jarvis Benachrichtigung
-
Hallo Zusammen,
mir fehlt hier leider das Wissen um weiterzukommen.
Derzeit leite ich eine URL an Jarivs weiter, wo eine Benachrichtigung aufploppt. Das funktioniert. Nun will ich die URL gegen einen Dateipfad vom ioBroker tauschen...var jarvisNotify = {}; //Beispiele jarvisNotify.title = "Es hat geklingelt"; // "<b>Dies ist BOLD</b>" httpAdr = "http://raspberrypi:8082/ring.0/ring_0_doorbell_609102320_HDSnapshot.jpg" httpAdr = httpAdr.replace('"',"%30"); httpAdr = httpAdr.replace('"',"%30"); jarvisNotify.message= '<img src='+ String(httpAdr) +' height="100%" width="100%"></img>'; //jarvisNotify.message= '<iFrame src='+ String(httpAdr) +' height="1000" width="100%"></iFrame>'; jarvisNotify.state = "read"; //Damit bleibt die Benachrichtigung auch nach POPUP ungelesen und wird oben angezeigt mit der Zahl jarvisNotify.criticality = "none"; // error,warning,info,success jarvisNotify.display ="popup"; //drawer,snackbar,popup, none für focusTab jarvisNotify.timeout= 60000; //5000ms -> 5 Sekunden //jarvisNotify.timeout= 180000; //5000ms -> 5 Sekunden jarvisNotify.snackbarOrigin = {}; //"snackbarOrigin": { "horizontal": "...", "vertical": "" }, // optional, applies when display is snackbar, { horizontal: 'center' | 'left' | 'right', vertical: 'bottom' | 'top' } jarvisNotify.icon = "bell-ring-outline"; //mdi Iconify jarvisNotify.iconColor = "#5D5DED"; jarvisNotify.backgroundColor = "black"; jarvisNotify.fontColor = "white"; jarvisNotify.focusTab = ""; //focus a certain tab setState('jarvis.0.addNotification',JSON.stringify(jarvisNotify));
nun würde gerne den Inhalt von httpAdress durch folgenden internen Raspipfad bzw. ist auch ein Datenpunkt tauschen.
/opt/iobroker/iobroker-data/files/ring.0/doorbell_609102320/HDsnapshot609102320_1736440114187.jpg (Die zahlen ändern sich)
funktioniert das irgendwie?
Bin absoluter Anfänger in JavaScript...
Danke Schonmal
-
@firechumper Wie lautet der DP? ring.0....file
let dpFile = 'ring.0.doorbell_609102320.HD_Snapshot.file let valueFile = getState(dpFile).val.replace('/opt/iobroker/iobroker-data/files','') let httpAdr = "http://raspberrypi:8082" + valueFile
-
@mcu
ring.0.doorbell_609102320.HD Snapshot.file -
@firechumper said in JavaScript für Jarvis Benachrichtigung:
ring.0.doorbell_609102320.HD Snapshot.file
Das war die Lösung! 1000 Dank