68 lines
1.8 KiB
HTML
68 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1">
|
|
<meta charset="utf-8">
|
|
<meta name="theme-color" content="#222222">
|
|
<title>WLED Live Preview</title>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
}
|
|
#canv {
|
|
background: black;
|
|
filter: brightness(175%);
|
|
width: 100%;
|
|
height: 100%;
|
|
position: absolute;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="canv"></div>
|
|
<script>
|
|
var ws;
|
|
try {
|
|
ws = top.window.ws;
|
|
} catch (e) {}
|
|
if (ws && ws.readyState === WebSocket.OPEN) {
|
|
//console.info("Peek uses top WS");
|
|
ws.send("{'lv':true}");
|
|
} else {
|
|
//console.info("Peek WS opening");
|
|
let l = window.location;
|
|
let pathn = l.pathname;
|
|
let paths = pathn.slice(1,pathn.endsWith('/')?-1:undefined).split("/");
|
|
let url = l.origin.replace("http","ws");
|
|
if (paths.length > 1) {
|
|
url += "/" + paths[0];
|
|
}
|
|
ws = new WebSocket(url+"/ws");
|
|
ws.onopen = function () {
|
|
//console.info("Peek WS open");
|
|
ws.send("{'lv':true}");
|
|
}
|
|
}
|
|
ws.binaryType = "arraybuffer";
|
|
ws.addEventListener('message', (e) => {
|
|
try {
|
|
if (toString.call(e.data) === '[object ArrayBuffer]') {
|
|
let leds = new Uint8Array(event.data);
|
|
if (leds[0] != 76) return; //'L'
|
|
let str = "linear-gradient(90deg,";
|
|
let len = leds.length;
|
|
let start = leds[1]==2 ? 4 : 2; // 1 = 1D, 2 = 1D/2D (leds[2]=w, leds[3]=h)
|
|
for (i = start; i < len; i+=3) {
|
|
str += `rgb(${leds[i]},${leds[i+1]},${leds[i+2]})`;
|
|
if (i < len -3) str += ","
|
|
}
|
|
str += ")";
|
|
document.getElementById("canv").style.background = str;
|
|
}
|
|
} catch (err) {
|
|
console.error("Peek WS error:",err);
|
|
}
|
|
});
|
|
</script>
|
|
</body>
|
|
</html> |