Beiträge von Rudi96
-
-
-
-
Antwort vom Support:
Dear Günther Breitenstein,
We would report this to our devs. The scripts could be done if you are using the application as a workaround.Externer Inhalt eucattachment.freshdesk.comInhalte von externen Seiten werden ohne Ihre Zustimmung nicht automatisch geladen und angezeigt. -
-
-
Der Inhalt kann nicht angezeigt werden, da er nicht mehr verfügbar ist. Ansicht vor dem Update (Rel. 1.03)
Ich lasse meine Scripte auf dem SHELLY BLU GATEWAY laufen, da ich nur wegen Bluetooth nicht jedesmal einen SHELLY PLUS PLUG S einsetzen will.
Der Inhalt kann nicht angezeigt werden, da er nicht mehr verfügbar ist. Ansicht nach dem Update (Rel. 1.0.7)
-
Wenn ich Dein Modul laufen lasse, bekomme ich einen Fehler:
Success: BTHome Active Scanner running in Background
Uncaught Error: Invalid UTF-8 string at line 6 col 75
...:', JSON.stringify(response));
stringify arbeitet wohl nicht mit nicht UTF-8 Zeichen.
Wenn ich den String
zeichenweise mit: show(response.service_data[uuid]) zeichenweise auswerte
function show(str) {
console.log("show here "+ typeof str);
let binary = '';
for (let i = 0; i < str.length; i++) {
binary = binary+str[i].charCodeAt().toString(16);
console.log(str[i]+">"+str[i].charCodeAt().toString(16)+ "<"+str[i].charCodeAt().toString(2))
}
return (binary)
}
erhalte ich:
15:52:11
show here string
15:52:22
D>44<1000100
15:52:22
>0<0
15:52:22
|>7c<1111100
15:52:22
>1<1
15:52:22
d>64<1100100
15:52:22
>5<101
15:52:22
L>4c<1001100
15:52:22
>4<100
15:52:22
>0<0
15:52:22
->2d<101101
15:52:22
>1<1
15:52:22
?>3f<111111
15:52:22
>0<0
15:52:22
>0<0
15:52:22
Received packet 4407c16454c402d13f00
Vielleicht kann jemand damit etwas anfangen. Ich komme hier nicht weiter…
-
I have a question about the new door/window module.
How can I uses a script to determine the event window will open / closed?
The event handler of the Plug S plus only recognizes the relay and the current data, but not the states of the connected door/window module.
Best regards
Günther