2019-11-27 22:28:13 +01:00
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<meta name="viewport" content="width=500">
|
|
|
|
|
<title>Sync Settings</title>
|
|
|
|
|
<script>
|
|
|
|
|
function H()
|
|
|
|
|
{
|
|
|
|
|
window.open("https://github.com/Aircoookie/WLED/wiki/Settings#sync-settings");
|
|
|
|
|
}
|
|
|
|
|
function B()
|
|
|
|
|
{
|
|
|
|
|
window.open("/settings","_self");
|
|
|
|
|
}
|
|
|
|
|
function GetV()
|
|
|
|
|
{
|
|
|
|
|
//values injected by server while sending HTML
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
<style>
|
|
|
|
|
:root {
|
|
|
|
|
--aCol: #abc;
|
|
|
|
|
--bCol: #fff;
|
|
|
|
|
--cCol: #ddd;
|
|
|
|
|
--dCol: #000;
|
|
|
|
|
--sCol: #0004;
|
|
|
|
|
}
|
|
|
|
|
body {
|
|
|
|
|
font-family: Verdana, Helvetica, sans-serif;
|
|
|
|
|
text-align: center;
|
|
|
|
|
background: var(--cCol);
|
|
|
|
|
color: var(--dCol);
|
|
|
|
|
line-height: 200%;
|
|
|
|
|
margin: 0;
|
|
|
|
|
background-attachment: fixed;
|
|
|
|
|
}
|
|
|
|
|
hr {
|
|
|
|
|
border-color: var(--dCol);
|
|
|
|
|
filter: drop-shadow( -5px -5px 5px var(--sCol) );
|
|
|
|
|
}
|
|
|
|
|
button {
|
|
|
|
|
background: var(--bCol);
|
|
|
|
|
color: var(--dCol);
|
|
|
|
|
border: 0.3ch solid var(--bCol);
|
|
|
|
|
display: inline-block;
|
|
|
|
|
filter: drop-shadow( -5px -5px 5px var(--sCol) );
|
|
|
|
|
font-size: 20px;
|
|
|
|
|
margin: 8px;
|
|
|
|
|
margin-top: 12px;
|
|
|
|
|
}
|
|
|
|
|
.helpB {
|
|
|
|
|
text-align: left;
|
|
|
|
|
position: absolute;
|
|
|
|
|
width:60px;
|
|
|
|
|
}
|
|
|
|
|
input {
|
|
|
|
|
background: var(--bCol);
|
|
|
|
|
color: var(--dCol);
|
|
|
|
|
border: 0.5ch solid var(--bCol);
|
|
|
|
|
filter: drop-shadow( -5px -5px 5px var(--sCol) );
|
|
|
|
|
}
|
|
|
|
|
input[type=number] {
|
|
|
|
|
width: 3em;
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
</head>
|
|
|
|
|
<body onload="GetV()">
|
|
|
|
|
<form id="form_s" name="Sf" method="post">
|
|
|
|
|
<div class="helpB"><button type="button" onclick="H()">?</button></div>
|
|
|
|
|
<button type="button" onclick="B()">Back</button><button type="submit">Save</button><hr>
|
|
|
|
|
<h2>Sync setup</h2>
|
|
|
|
|
<h3>Button setup</h3>
|
|
|
|
|
On/Off button enabled: <input type="checkbox" name="BT"><br>
|
|
|
|
|
Infrared receiver enabled: <input type="checkbox" name="IR"><br>
|
|
|
|
|
<a href="https://github.com/Aircoookie/WLED/wiki/Infrared-Control" target="_blank">IR info</a>
|
|
|
|
|
<h3>WLED Sync UDP Broadcast</h3>
|
|
|
|
|
UDP Port: <input name="UP" type="number" min="1" max="65535" required><br>
|
|
|
|
|
Receive <input type="checkbox" name="RB">Brightness, <input type="checkbox" name="RC">Color, and <input type="checkbox" name="RX">Effects<br>
|
|
|
|
|
Send notifications on direct change: <input type="checkbox" name="SD"><br>
|
|
|
|
|
Send notifications on button press: <input type="checkbox" name="SB"><br>
|
|
|
|
|
Send Alexa notifications: <input type="checkbox" name="SA"><br>
|
|
|
|
|
Send Philips Hue change notifications: <input type="checkbox" name="SH"><br>
|
|
|
|
|
Send Macro notifications: <input type="checkbox" name="SM"><br>
|
|
|
|
|
Send notifications twice: <input type="checkbox" name="S2">
|
|
|
|
|
<h3>Realtime</h3>
|
|
|
|
|
Receive UDP realtime: <input type="checkbox" name="RD"><br><br>
|
|
|
|
|
E1.31 (sACN)<br>
|
|
|
|
|
Multicast mode: <input type="checkbox" name="EM"><br>
|
|
|
|
|
E1.31 start universe: <input name="EU" type="number" min="1" max="63999" required><br>
|
|
|
|
|
<i>Reboot required.</i> Check out <a href="https://github.com/ahodges9/LedFx" target="_blank">LedFx</a>!<br><br>
|
|
|
|
|
Timeout: <input name="ET" type="number" min="100" max="65000" required> ms<br>
|
|
|
|
|
Force max brightness: <input type="checkbox" name="FB"><br>
|
|
|
|
|
Disable realtime gamma correction: <input type="checkbox" name="RG"><br>
|
|
|
|
|
Realtime LED offset: <input name="WO" type="number" min="-255" max="255" required>
|
|
|
|
|
<h3>Alexa Voice Assistant</h3>
|
|
|
|
|
Emulate Alexa device: <input type="checkbox" name="AL"><br>
|
|
|
|
|
Alexa invocation name: <input name="AI" maxlength="32">
|
|
|
|
|
<h3>Blynk</h3>
|
|
|
|
|
<b>Blynk, MQTT and Hue sync all connect to external hosts!<br>
|
|
|
|
|
This may impact the responsiveness of the ESP8266.</b><br>
|
|
|
|
|
For best results, only use one of these services at a time.<br>
|
|
|
|
|
(alternatively, connect a second ESP to them and use the UDP sync)<br><br>
|
|
|
|
|
Device Auth token: <input name="BK" maxlength="33"><br>
|
|
|
|
|
<i>Clear the token field to disable. </i><a href="https://github.com/Aircoookie/WLED/wiki/Blynk" target="_blank">Setup info</a>
|
|
|
|
|
<h3>MQTT</h3>
|
|
|
|
|
Broker: <input name="MS" maxlength="32"><br>
|
|
|
|
|
唉敳湲浡㩥㰠湩異⁴慮敭∽免呔单剅•慭汸湥瑧㵨㌢∲㰾牢ਾऀऀ慐獳潷摲›椼灮瑵琠灹㵥瀢獡睳牯≤椠灮瑵渠浡㵥䴢呑偔十≓洠硡敬杮桴∽㈳㸢戼㹲
|
|
|
|
|
䌉楬湥⁴䑉›椼灮瑵渠浡㵥䴢呑䍔䑉•慭汸湥瑧㵨㌢∲㰾牢ਾऀऀ䐀攀瘀椀挀攀 吀漀瀀椀挀㨀 㰀椀渀瀀甀琀 渀愀洀攀㴀∀䴀䐀∀ 洀愀砀氀攀渀最琀栀㴀∀㌀㈀∀㸀㰀戀爀㸀ഀऀऀ䜀爀漀甀瀀 吀漀瀀椀挀㨀 㰀椀渀瀀甀琀 渀愀洀攀㴀∀䴀䜀∀ 洀愀砀氀攀渀最琀栀㴀∀㌀㈀∀㸀㰀戀爀㸀ഀऀऀ㰀愀 栀爀攀昀㴀∀栀琀琀瀀猀㨀⼀⼀最椀琀栀甀戀⸀挀漀洀⼀䄀椀爀挀漀漀漀欀椀攀⼀圀䰀䔀䐀⼀眀椀欀椀⼀䴀儀吀吀∀ 琀愀爀最攀琀㴀∀开戀氀愀渀欀∀㸀䴀儀吀吀 椀渀昀漀㰀⼀愀㸀ഀऀऀ㰀栀㌀㸀倀栀椀氀椀瀀猀 䠀甀攀㰀⼀栀㌀㸀ഀऀऀ㰀椀㸀夀漀甀 挀愀渀 昀椀渀搀 琀栀攀 戀爀椀搀最攀 䤀倀 愀渀搀 琀栀攀 氀椀最栀琀 渀甀洀戀攀爀 椀渀 琀栀攀 ✀䄀戀漀甀琀✀ 猀攀挀琀椀漀渀 漀昀 琀栀攀 栀甀攀 愀瀀瀀⸀㰀⼀椀㸀㰀戀爀㸀ഀऀऀ倀漀氀氀 䠀甀攀 氀椀最栀琀 㰀椀渀瀀甀琀 渀愀洀攀㴀∀䠀䰀∀ 琀礀瀀攀㴀∀渀甀洀戀攀爀∀ 洀椀渀㴀∀∀ 洀愀砀㴀∀㤀㤀∀ 爀攀焀甀椀爀攀搀㸀 攀瘀攀爀礀 㰀椀渀瀀甀琀 渀愀洀攀㴀∀䠀䤀∀ 琀礀瀀攀㴀∀渀甀洀戀攀爀∀ 洀椀渀㴀∀ ∀ 洀愀砀㴀∀㘀㔀 ∀ 爀攀焀甀椀爀攀搀㸀 洀猀㨀 㰀椀渀瀀甀琀 琀礀瀀攀㴀∀挀栀攀挀欀戀漀砀∀ 渀愀洀攀㴀∀䠀倀∀㸀㰀戀爀㸀ഀऀऀ吀栀攀渀Ⰰ 爀攀挀攀椀瘀攀 㰀椀渀瀀甀琀 琀礀瀀攀㴀∀挀栀攀挀欀戀漀砀∀ 渀愀洀攀㴀∀䠀伀∀㸀 伀渀⼀伀昀昀Ⰰ 㰀椀渀瀀甀琀 琀礀瀀攀㴀∀挀栀攀挀欀戀漀砀∀ 渀愀洀攀㴀∀䠀䈀∀㸀 䈀爀椀最栀琀渀攀猀猀Ⰰ 愀渀搀 㰀椀渀瀀甀琀 琀礀瀀攀㴀∀挀栀攀挀欀戀漀砀∀ 渀愀洀攀㴀∀䠀䌀∀㸀 䌀漀氀漀爀㰀戀爀㸀ഀऀऀ䠀甀攀 䈀爀椀搀最攀 䤀倀㨀㰀戀爀㸀ഀऀऀ㰀椀渀瀀甀琀 渀愀洀攀㴀∀䠀 ∀ 琀礀瀀攀㴀∀渀甀洀戀攀爀∀ 洀椀渀㴀∀ ∀ 洀愀砀㴀∀㈀㔀㔀∀ 爀攀焀甀椀爀攀搀㸀 ⸀ഀऀऀ㰀椀渀瀀甀琀 渀愀洀攀㴀∀䠀∀ 琀礀瀀攀㴀∀渀甀洀戀攀爀∀ 洀椀渀㴀∀ ∀ 洀愀砀㴀∀㈀㔀㔀∀ 爀攀焀甀椀爀攀搀㸀 ⸀ഀऀऀ㰀椀渀瀀甀琀 渀愀洀攀㴀∀䠀㈀∀ 琀礀瀀攀㴀∀渀甀洀戀攀爀∀ 洀椀渀㴀∀ ∀ 洀愀砀㴀∀㈀㔀㔀∀ 爀攀焀甀椀爀攀搀㸀 ⸀ഀऀऀ㰀椀渀瀀甀琀 渀愀洀攀㴀∀䠀㌀∀ 琀礀瀀攀㴀∀渀甀洀戀攀爀∀ 洀椀渀㴀∀ ∀ 洀愀砀㴀∀㈀㔀㔀∀ 爀攀焀甀椀爀攀搀㸀㰀戀爀㸀ഀऀऀ㰀戀㸀倀爀攀猀猀 琀栀攀 瀀甀猀栀氀椀渀欀 戀甀琀琀漀渀 漀渀 琀栀攀 戀爀椀搀最攀Ⰰ 愀昀琀攀爀 琀栀愀琀 猀愀瘀攀 琀栀椀猀 瀀愀最攀℀㰀⼀戀㸀㰀戀爀㸀ഀऀऀ⠀眀栀攀渀 昀椀爀猀琀 挀漀渀渀攀挀琀椀渀最⤀㰀戀爀㸀ഀऀऀ㰀℀ⴀⴀ唀瀀搀愀琀攀 䠀甀攀 最爀漀甀瀀 㰀椀渀瀀甀琀 渀愀洀攀㴀∀䠀唀䔀䜀刀∀ 琀礀瀀攀㴀∀渀甀洀戀攀爀∀ 洀椀渀㴀∀ ∀ 洀愀砀㴀∀㤀㤀∀ 爀攀焀甀椀爀攀搀㸀 㰀戀爀㸀ഀऀऀ匀攀渀搀 㰀椀渀瀀甀琀 琀礀瀀攀㴀∀挀栀攀挀欀戀漀砀∀ 渀愀洀攀㴀∀䠀唀䔀䤀伀∀㸀 伀渀⼀伀昀昀Ⰰ 㰀椀渀瀀甀琀 琀礀瀀攀㴀∀挀栀攀挀欀戀漀砀∀ 渀愀洀攀㴀∀䠀唀䔀䈀刀∀㸀 䈀爀椀最栀琀渀攀猀猀Ⰰ 愀渀搀 㰀椀渀瀀甀琀 琀礀瀀攀㴀∀挀栀攀挀欀戀漀砀∀ 渀愀洀攀㴀∀䠀唀䔀䌀䰀∀㸀 䌀漀氀漀爀㰀戀爀㸀ⴀⴀ㸀ഀऀऀ㰀℀ⴀⴀ䄀昀琀攀爀 搀攀瘀椀挀攀 挀漀氀漀爀 甀瀀搀愀琀攀Ⰰ 椀最渀漀爀<E6BC80><E78880>
|