Compare commits
14 Commits
f02eaa6bad
...
beta-1.08
| Author | SHA1 | Date | |
|---|---|---|---|
| cb9758b97b | |||
| aab62efd4f | |||
| 2382ef16a1 | |||
| cfdd6de291 | |||
| d682753e42 | |||
| 53976cdd70 | |||
| 94635a8cc7 | |||
| de0547615c | |||
| 78dc8ffc77 | |||
| 2cf019079e | |||
| b87382d2be | |||
| 1a69fabd98 | |||
| 4fc3f46866 | |||
| f4ef85c182 |
8
Pipfile
@@ -6,6 +6,7 @@ name = "pypi"
|
|||||||
[packages]
|
[packages]
|
||||||
mpremote = "*"
|
mpremote = "*"
|
||||||
pyserial = "*"
|
pyserial = "*"
|
||||||
|
pyserial-asyncio = "*"
|
||||||
esptool = "*"
|
esptool = "*"
|
||||||
pyjwt = "*"
|
pyjwt = "*"
|
||||||
watchfiles = "*"
|
watchfiles = "*"
|
||||||
@@ -13,9 +14,12 @@ requests = "*"
|
|||||||
selenium = "*"
|
selenium = "*"
|
||||||
adafruit-ampy = "*"
|
adafruit-ampy = "*"
|
||||||
microdot = "*"
|
microdot = "*"
|
||||||
|
fastapi = "*"
|
||||||
websockets = "*"
|
websockets = "*"
|
||||||
|
httpx = "*"
|
||||||
numpy = "*"
|
numpy = "*"
|
||||||
sounddevice = "*"
|
sounddevice = "*"
|
||||||
|
uvicorn = {extras = ["standard"], version = "*"}
|
||||||
|
|
||||||
[dev-packages]
|
[dev-packages]
|
||||||
pytest = "*"
|
pytest = "*"
|
||||||
@@ -26,8 +30,8 @@ python_version = "3.11"
|
|||||||
[scripts]
|
[scripts]
|
||||||
web = "python tests/web.py"
|
web = "python tests/web.py"
|
||||||
watch = "python -m watchfiles \"python tests/web.py\" src tests"
|
watch = "python -m watchfiles \"python tests/web.py\" src tests"
|
||||||
run = "sh -c 'cd src && python main.py'"
|
run = "sh -c 'cd src && uvicorn fastapi_app:app --host 0.0.0.0 --port \"${PORT:-80}\"'"
|
||||||
dev = "python -m watchfiles \"sh -c 'cd src && LED_CONTROLLER_LIVE_RELOAD=1 python main.py'\" src"
|
dev = "sh -c 'cd src && LED_CONTROLLER_LIVE_RELOAD=1 uvicorn fastapi_app:app --host 0.0.0.0 --port \"${PORT:-80}\" --reload --reload-dir . --reload-include \"**/*.html\" --reload-include \"**/*.css\" --reload-include \"**/*.js\" --reload-exclude \"**/db/**\" --reload-exclude \"**/settings.json\" --reload-exclude \"**/settings.json.*\"'"
|
||||||
test = "python -m pytest"
|
test = "python -m pytest"
|
||||||
test-browser = "sh -c 'python tests/web.py > /tmp/led-controller-web.log 2>&1 & pid=$!; trap \"kill $pid\" EXIT; sleep 2; LED_CONTROLLER_RUN_BROWSER_TESTS=1 LED_CONTROLLER_DEVICE_IP=http://127.0.0.1:5000 python -m pytest tests/test_browser.py'"
|
test-browser = "sh -c 'python tests/web.py > /tmp/led-controller-web.log 2>&1 & pid=$!; trap \"kill $pid\" EXIT; sleep 2; LED_CONTROLLER_RUN_BROWSER_TESTS=1 LED_CONTROLLER_DEVICE_IP=http://127.0.0.1:5000 python -m pytest tests/test_browser.py'"
|
||||||
test-browser-device = "sh -c 'LED_CONTROLLER_RUN_BROWSER_TESTS=1 python -m pytest tests/test_browser.py'"
|
test-browser-device = "sh -c 'LED_CONTROLLER_RUN_BROWSER_TESTS=1 python -m pytest tests/test_browser.py'"
|
||||||
|
|||||||
763
Pipfile.lock
generated
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"_meta": {
|
"_meta": {
|
||||||
"hash": {
|
"hash": {
|
||||||
"sha256": "7975a888034cb3e0f68c7b866f7e69e5a1db7a5228fe1f02d6cb5f9c180de557"
|
"sha256": "b6783f8de9b1f98387fccab1d9fed190f2acbf66f0f188e43fe91f28a6950ad1"
|
||||||
},
|
},
|
||||||
"pipfile-spec": 6,
|
"pipfile-spec": 6,
|
||||||
"requires": {
|
"requires": {
|
||||||
@@ -24,6 +24,22 @@
|
|||||||
"index": "pypi",
|
"index": "pypi",
|
||||||
"version": "==1.1.0"
|
"version": "==1.1.0"
|
||||||
},
|
},
|
||||||
|
"annotated-doc": {
|
||||||
|
"hashes": [
|
||||||
|
"sha256:571ac1dc6991c450b25a9c2d84a3705e2ae7a53467b5d111c24fa8baabbed320",
|
||||||
|
"sha256:fbcda96e87e9c92ad167c2e53839e57503ecfda18804ea28102353485033faa4"
|
||||||
|
],
|
||||||
|
"markers": "python_version >= '3.8'",
|
||||||
|
"version": "==0.0.4"
|
||||||
|
},
|
||||||
|
"annotated-types": {
|
||||||
|
"hashes": [
|
||||||
|
"sha256:1f02e8b43a8fbbc3f3e0d4f0f4bfc8131bcb4eebe8849b8e5c773f3a1c582a53",
|
||||||
|
"sha256:aff07c09a53a08bc8cfccb9c85b05f1aa9a2a6f23728d790723543408344ce89"
|
||||||
|
],
|
||||||
|
"markers": "python_version >= '3.8'",
|
||||||
|
"version": "==0.7.0"
|
||||||
|
},
|
||||||
"anyio": {
|
"anyio": {
|
||||||
"hashes": [
|
"hashes": [
|
||||||
"sha256:08b310f9e24a9594186fd75b4f73f4a4152069e3853f1ed8bfbf58369f4ad708",
|
"sha256:08b310f9e24a9594186fd75b4f73f4a4152069e3853f1ed8bfbf58369f4ad708",
|
||||||
@@ -40,13 +56,6 @@
|
|||||||
"markers": "python_version >= '3.9'",
|
"markers": "python_version >= '3.9'",
|
||||||
"version": "==26.1.0"
|
"version": "==26.1.0"
|
||||||
},
|
},
|
||||||
"aubio": {
|
|
||||||
"hashes": [
|
|
||||||
"sha256:df1244f6c4cf5bea382c8c2d35aa43bc31f4cf631fe325ae3992c219546a4202"
|
|
||||||
],
|
|
||||||
"index": "pypi",
|
|
||||||
"version": "==0.4.9"
|
|
||||||
},
|
|
||||||
"bitarray": {
|
"bitarray": {
|
||||||
"hashes": [
|
"hashes": [
|
||||||
"sha256:0256d57e294414bfe4fec4f852fd1d9ae361228c71b082332bf81c8b8fc69f80",
|
"sha256:0256d57e294414bfe4fec4f852fd1d9ae361228c71b082332bf81c8b8fc69f80",
|
||||||
@@ -166,11 +175,11 @@
|
|||||||
},
|
},
|
||||||
"certifi": {
|
"certifi": {
|
||||||
"hashes": [
|
"hashes": [
|
||||||
"sha256:3cb2210c8f88ba2318d29b0388d1023c8492ff72ecdde4ebdaddbb13a31b1c4a",
|
"sha256:3c52e209ba0a4ad7aebe60436a4ab349c39e1e602e8c134221e546902ad25897",
|
||||||
"sha256:8d455352a37b71bf76a79caa83a3d6c25afee4a385d632127b6afb3963f1c580"
|
"sha256:69dea482ab64caa7b9f6aba1c6bf48bb6a5448d1c0f1b17ab42ad8c763a5344d"
|
||||||
],
|
],
|
||||||
"markers": "python_version >= '3.7'",
|
"markers": "python_version >= '3.7'",
|
||||||
"version": "==2026.4.22"
|
"version": "==2026.5.20"
|
||||||
},
|
},
|
||||||
"cffi": {
|
"cffi": {
|
||||||
"hashes": [
|
"hashes": [
|
||||||
@@ -399,11 +408,11 @@
|
|||||||
},
|
},
|
||||||
"click": {
|
"click": {
|
||||||
"hashes": [
|
"hashes": [
|
||||||
"sha256:398329ad4837b2ff7cbe1dd166a4c0f8900c3ca3a218de04466f38f6497f18a2",
|
"sha256:482be17c6991b8c19c5429a1e995d9b0efdbb63172824c41f99965dc0ade8ec2",
|
||||||
"sha256:a2bf429bb3033c89fa4936ffb35d5cb471e3719e1f3c8a7c3fff0b8314305613"
|
"sha256:918b5633eddf6b41c32d4f454bf0de810065c74e3f7dbf8ee5452f8be88d3e96"
|
||||||
],
|
],
|
||||||
"markers": "python_version >= '3.10'",
|
"markers": "python_version >= '3.10'",
|
||||||
"version": "==8.3.3"
|
"version": "==8.4.1"
|
||||||
},
|
},
|
||||||
"cryptography": {
|
"cryptography": {
|
||||||
"hashes": [
|
"hashes": [
|
||||||
@@ -462,11 +471,20 @@
|
|||||||
},
|
},
|
||||||
"esptool": {
|
"esptool": {
|
||||||
"hashes": [
|
"hashes": [
|
||||||
"sha256:9c355b7d6331cc92979cc710ae5c41f59830d1ea29ec24c467c6005a092c06d6"
|
"sha256:0a077cb3ee8e60e223882c06ab7dae9b3686816c2547904d7472a42e6284e7de"
|
||||||
],
|
],
|
||||||
"index": "pypi",
|
"index": "pypi",
|
||||||
"markers": "python_version >= '3.10'",
|
"markers": "python_version >= '3.10'",
|
||||||
"version": "==5.2.0"
|
"version": "==5.3.0"
|
||||||
|
},
|
||||||
|
"fastapi": {
|
||||||
|
"hashes": [
|
||||||
|
"sha256:3d2a69bdf04b7e9f3afa292c3bc7a98816bbfafa10bc9b45f3f3700d2f761620",
|
||||||
|
"sha256:e487fae93ad408e6f47641ee4dfe389864fd7bec92e547ea8498fc13f43e83ab"
|
||||||
|
],
|
||||||
|
"index": "pypi",
|
||||||
|
"markers": "python_version >= '3.10'",
|
||||||
|
"version": "==0.136.3"
|
||||||
},
|
},
|
||||||
"h11": {
|
"h11": {
|
||||||
"hashes": [
|
"hashes": [
|
||||||
@@ -476,13 +494,85 @@
|
|||||||
"markers": "python_version >= '3.8'",
|
"markers": "python_version >= '3.8'",
|
||||||
"version": "==0.16.0"
|
"version": "==0.16.0"
|
||||||
},
|
},
|
||||||
"idna": {
|
"httpcore": {
|
||||||
"hashes": [
|
"hashes": [
|
||||||
"sha256:585ea8fe5d69b9181ec1afba340451fba6ba764af97026f92a91d4eef164a242",
|
"sha256:2d400746a40668fc9dec9810239072b40b4484b640a8c38fd654a024c7a1bf55",
|
||||||
"sha256:892ea0cde124a99ce773decba204c5552b69c3c67ffd5f232eb7696135bc8bb3"
|
"sha256:6e34463af53fd2ab5d807f399a9b45ea31c3dfa2276f15a2c3f00afff6e176e8"
|
||||||
],
|
],
|
||||||
"markers": "python_version >= '3.8'",
|
"markers": "python_version >= '3.8'",
|
||||||
"version": "==3.13"
|
"version": "==1.0.9"
|
||||||
|
},
|
||||||
|
"httptools": {
|
||||||
|
"hashes": [
|
||||||
|
"sha256:0770728beb05094c809b98e814edff5fef69d26ad7d21185f2f6d5884a0ba683",
|
||||||
|
"sha256:0ea897f0c729581ebf72131a438a7932d9b14efef72d75ada966700cac3caaeb",
|
||||||
|
"sha256:159e9ab5f701ccd42e555a12f1ad8ff69702910fc1c996cf2bb66e5fcb7a231b",
|
||||||
|
"sha256:19d1ee275bb59ba2643ba9a3a1e51cc0c788caf2b8df506368e03f56fdd08527",
|
||||||
|
"sha256:20b4aac66ff65f7db06a375808b78f42a94970aa22e826b3cb2b43eb09174124",
|
||||||
|
"sha256:2a021c3a8e65cc125390d72f59b968afca3bdcaff25bd67965e0a055a14946ca",
|
||||||
|
"sha256:2c032fa028f46871ec7e1fc59fc15e8023eab3e6bbe6ece786a1611719a5d081",
|
||||||
|
"sha256:2d689918c15a013c65ef52d9fd495d766893ab831a2c8d89f2ac5940a5df847c",
|
||||||
|
"sha256:384c17174464c8e873398b7af24f0b1f44d992c820328413951a625323155d77",
|
||||||
|
"sha256:425f83884fd6343828d8c565f046cb72b6d19063f6924093e11bcd8e1548cd09",
|
||||||
|
"sha256:48774d39cbb70e2b1f71f88852a3087ae1d3a1eb80482bb48c13067ab080c14f",
|
||||||
|
"sha256:52dd695b865fe96d9d2b16b64a895f3f57bf3cb064e8383cd3b5713a069e8085",
|
||||||
|
"sha256:57278e6fa0424c42a8a3e454828ab4f0aff27b40cddf9679579b98c6dce6a376",
|
||||||
|
"sha256:5931891fb7b441b8a3853cf1b85c82c903defce084dd5f6771ca46e31bf862c5",
|
||||||
|
"sha256:5d7fa4ba7292c1139c0526f0b5aad507c6263c948206ea1b1cbca015c8af1b62",
|
||||||
|
"sha256:5eb911c515b96ee44bbd861e42cbefc488681d450545b1d02127f6136e3a86f5",
|
||||||
|
"sha256:614ceea8ea606848bece2338ac03b3ce5324bcb4be8dc7d377ed708012fa4db8",
|
||||||
|
"sha256:6a43c9dd399758ccc0531acb0a3c4a6c299ee893ee9400e9c893b7bdcfae0681",
|
||||||
|
"sha256:6b2a32f18d97e16e90827d7a819ffa8dbd8cc245fc4e1fa9d1095b54ef4bd999",
|
||||||
|
"sha256:7685df791fad561384bfb139e77fde27a1ffd93134e016f95a0db424ffbf77b1",
|
||||||
|
"sha256:7b71e7d7031928c650e1006e6c03e911bf967f7c69c011d37d541c3e7bf55005",
|
||||||
|
"sha256:880490234c10f70a9830743097e8958d6e4b9f5a0ffc24515023afeef984054d",
|
||||||
|
"sha256:88bdd940f2b5d487b4d032c6afa5489a7dc4694410d43de3c38c4fb3af0dc45d",
|
||||||
|
"sha256:88eead8ec8680a9f146c655bc88445a325bd7921cfd8194c7337e9467282427d",
|
||||||
|
"sha256:9518c406d7b310f05adb1a37f80acabac40504a575d7c0da6d3e365c695ac20d",
|
||||||
|
"sha256:9878eb2785ba5eb70631ad269b37976f73d647955e26c91d490eb8a4edfda4ba",
|
||||||
|
"sha256:9fc1644f415372cec4f8a5be3a64183737398f10dbb1263602a036427fe75247",
|
||||||
|
"sha256:a1afd7c9fbff0d9f5d489c4ce2768bd09c84a46ddefc7161e6aa82ae35c85745",
|
||||||
|
"sha256:a1b4c8e7a489a0d750d91894e9a8cdc295838f1924c0ca903ae993456fddec07",
|
||||||
|
"sha256:a3b7387147361c3fd47a0bde763c5c91b5b4cd4dc9989b8ece84ff436c99843b",
|
||||||
|
"sha256:a6f21e2a3b0067bbe7f67e34cfd16276af556e5e52f4c7503be0cb5f90e905e4",
|
||||||
|
"sha256:b15fc622b0f869d19207c4089a501d9bcc63ca5e071ffdd2f03f922df882dcb2",
|
||||||
|
"sha256:b205e5f5523fa039679da0dfe5a10132b2a4abeae6a86fdd1ddc035f7f836557",
|
||||||
|
"sha256:bbb8caadb2b742d293169d2b458b5c001ef70e3158704aa3d3ef9597624c5d1d",
|
||||||
|
"sha256:bf3b6f807c8541503cecfbb8a8dffb385640d0d96102f3d112aa8740f9b7c826",
|
||||||
|
"sha256:c08ffe3e79756e0963cbc8fe410139f38a5884874b6f2e17761bef6563fdcd9b",
|
||||||
|
"sha256:c0d726cc107fceb7d45f978483b4b70dd8caa836f5914d3434bb18628eb73813",
|
||||||
|
"sha256:c4a9f1707e4823d54dfec6c33fa3697d302aed536ed352a7ebb5a061ddb869d0",
|
||||||
|
"sha256:cd96f29b4bab1d42fa6e3d008711c75e0f79e94e06827330160e3a304227f150",
|
||||||
|
"sha256:d76ad7b951387e3632c8716a9bb03ac5b45c5f16119aa409db0459520887944e",
|
||||||
|
"sha256:da684f2e1aa2ee9bdcb083f3f3a68c5956750b375bc5df864d3a5f0c42a40b77",
|
||||||
|
"sha256:de1ed58a974e75d56560acc7e7fed01a454994429456f65209789992e41f2568",
|
||||||
|
"sha256:de242a49b5d18e0a8776e654e9f6bf6d89f3875a5c35b425a0e7ce940feb3fd6",
|
||||||
|
"sha256:df31ef5494f406ab6cf827b7e64a22841c6e2d654100e6a116ea15b46d02d5e8",
|
||||||
|
"sha256:e93c227b595c6926c1acee96891dd9da4be338cfbe82e5cd3bb9d8dd7dc4ac0b",
|
||||||
|
"sha256:eb3028cca2fc0a6d720e52ef61d8ebb62fcbfeb1de56874546d858d3f25a26b7",
|
||||||
|
"sha256:ed377e64805bdba4943c82717333f8f8603a13b09aff9cead2717c6c817fb168",
|
||||||
|
"sha256:ef7c3c97f4311c7be57e2986629df89d49cb434dbff78eafcd48c2bff986b15a",
|
||||||
|
"sha256:f256d6ce930c52ca1cb2a960b7da03548c454e7d28b06059ad41bfe789036ce0",
|
||||||
|
"sha256:fe2a4c95aeba2209434e7b31172da572846cae8ca0bf1e7013e61b99fbbf5e72"
|
||||||
|
],
|
||||||
|
"version": "==0.8.0"
|
||||||
|
},
|
||||||
|
"httpx": {
|
||||||
|
"hashes": [
|
||||||
|
"sha256:75e98c5f16b0f35b567856f597f06ff2270a374470a5c2392242528e3e3e42fc",
|
||||||
|
"sha256:d909fcccc110f8c7faf814ca82a9a4d816bc5a6dbfea25d6591d6985b8ba59ad"
|
||||||
|
],
|
||||||
|
"index": "pypi",
|
||||||
|
"markers": "python_version >= '3.8'",
|
||||||
|
"version": "==0.28.1"
|
||||||
|
},
|
||||||
|
"idna": {
|
||||||
|
"hashes": [
|
||||||
|
"sha256:7f952cbe720b688055e3f87de14f5c3e5fdaa8bc3928985c4077ca689de849a2",
|
||||||
|
"sha256:ffb385a7e039654cef1ab9ef32c6fafe283c0c0467bba1d9029738ce4a14a848"
|
||||||
|
],
|
||||||
|
"markers": "python_version >= '3.9'",
|
||||||
|
"version": "==3.18"
|
||||||
},
|
},
|
||||||
"intelhex": {
|
"intelhex": {
|
||||||
"hashes": [
|
"hashes": [
|
||||||
@@ -509,12 +599,12 @@
|
|||||||
},
|
},
|
||||||
"microdot": {
|
"microdot": {
|
||||||
"hashes": [
|
"hashes": [
|
||||||
"sha256:3ba8bab39ae52bca08ee7024dfc71afb7cff089f0b6611d2a1f617abfcee749c",
|
"sha256:206c52870e3b1d5e6d387802e2ed0afae8c4598c80542a21e3efe377efc128c8",
|
||||||
"sha256:d56824f4510e628dac711c86121957894ceaf833298e4d25f06c29d2b19a1721"
|
"sha256:7bb9a69fa97a47d8fe07e61d9dd405804744132ca52d26705cf1173431ff7f4b"
|
||||||
],
|
],
|
||||||
"index": "pypi",
|
"index": "pypi",
|
||||||
"markers": "python_version >= '3.8'",
|
"markers": "python_version >= '3.8'",
|
||||||
"version": "==2.6.1"
|
"version": "==2.6.2"
|
||||||
},
|
},
|
||||||
"mpremote": {
|
"mpremote": {
|
||||||
"hashes": [
|
"hashes": [
|
||||||
@@ -527,82 +617,82 @@
|
|||||||
},
|
},
|
||||||
"numpy": {
|
"numpy": {
|
||||||
"hashes": [
|
"hashes": [
|
||||||
"sha256:07077278157d02f65c43b1b26a3886bce886f95d20aabd11f87932750dfb14ed",
|
"sha256:001fbb8e08d942dd57599e781f2472269ee7f2755fae407b4f67b2f0b17da3f1",
|
||||||
"sha256:08f2e31ed5e6f04b118e49821397f12767934cfdd12a1ce86a058f91e004ee50",
|
"sha256:0280e0356c0829a18d9de1cb7eee50ec22ca639878d7240307ca0943d73cd2c4",
|
||||||
"sha256:0aec54fd785890ecca25a6003fd9a5aed47ad607bbac5cd64f836ad8666f4959",
|
"sha256:043191bfa8eab18c776647b62723ac9dddece59743b13f49b2016094129c2b3f",
|
||||||
"sha256:0d35aea54ad1d420c812bfa0385c71cd7cc5bcf7c65fed95fc2cd02fe8c79827",
|
"sha256:06ca2f61ec4385a07a6977c55ba998a4466c123642b4a32694d3128fce18c079",
|
||||||
"sha256:0d4e437e295f18ec29bc79daf55e8a47a9113df44d66f702f02a293d93a2d6dd",
|
"sha256:0a041d3d761dc3c35cc56ce0351506a02bcbc25f7b169f652435141a17db9096",
|
||||||
"sha256:0dfd3f9d3adbe2920b68b5cd3d51444e13a10792ec7154cd0a2f6e74d4ab3233",
|
"sha256:0ab0a9c4ffb1a6d95ef519fe4247dba8eb6b18ad93999f76b7f657039acabd47",
|
||||||
"sha256:1378871da56ca8943c2ba674530924bb8ca40cd228358a3b5f302ad60cf875fc",
|
"sha256:0c9136e14ed34a9e343a31c533d78a9813a69a3148332bce5e9821cb2f996e66",
|
||||||
"sha256:15716cfef24d3a9762e3acdf87e27f58dc823d1348f765bbea6bef8c639bfa1b",
|
"sha256:110f8b71aacb688ec69062bb7f6938a0f8acb01b7c1c4beb453c65b6d234584d",
|
||||||
"sha256:19710a9ca9992d7174e9c52f643d4272dcd1558c5f7af7f6f8190f633bd651a7",
|
"sha256:112b06a867b235ef466ed3508ddf0238050df9c727cafb5301ac385b899189a1",
|
||||||
"sha256:23cbfd4c17357c81021f21540da84ee282b9c8fba38a03b7b9d09ba6b951421e",
|
"sha256:17f9ade344e7d9b464a084d69bcf18fc691cb1db67c62ed80820bf4926d78f0e",
|
||||||
"sha256:2483e4584a1cb3092da4470b38866634bafb223cbcd551ee047633fd2584599a",
|
"sha256:1e254a00cdf42b1e4d5b3d68d33af63268d41340d8885df2ab6470f2e1500147",
|
||||||
"sha256:27a8d92cd10f1382a67d7cf4db7ce18341b66438bdd9f691d7b0e48d104c2a9d",
|
"sha256:1e978ec1e8bd0e0e4de6bb75de9d30cbb74db6b6a2bb727618613703ca0167dd",
|
||||||
"sha256:28a650663f7314afc3e6ec620f44f333c386aad9f6fc472030865dc0ebb26ee3",
|
"sha256:25c692919ac5a01f170a3bfcd62d745b24fd095c353d50812637d6fcab442e75",
|
||||||
"sha256:2aa0613a5177c264ff5921051a5719d20095ea586ca88cc802c5c218d1c67d3e",
|
"sha256:260a5d70215b61ab4fadf5c7baacd64821842975eea312125ed3c39a6391b063",
|
||||||
"sha256:2c194dd721e54ecad9ad387c1d35e63dce5c4450c6dc7dd5611283dda239aabb",
|
"sha256:2803abfebfc990042cd494d8ce2d5f82e9d847af6d35ec486923aa19dbad5e73",
|
||||||
"sha256:2d19e6e2095506d1736b7d80595e0f252d76b89f5e715c35e06e937679ea7d7a",
|
"sha256:29a287e0cf63ff528da061de6b9f64a4618da591ca1046aafc54062e40ca7eab",
|
||||||
"sha256:2d390634c5182175533585cc89f3608a4682ccb173cc9bb940b2881c8d6f8fa0",
|
"sha256:29cb7f67d10b479ff07c17d33e39f78c07f71c40ef30d63c153d340e96cd3fb4",
|
||||||
"sha256:30caa73029a225b2d40d9fae193e008e24b2026b7ee1a867b7ee8d96ca1a448e",
|
"sha256:3213d622a0283a39a93d188f3cf72b26862df52fbb4ca3697f51705016523d41",
|
||||||
"sha256:42c16925aa5a02362f986765f9ebabf20de75cdefdca827d14315c568dcab113",
|
"sha256:33111801a01c12a8a1e3721f0a9232f8cfc8ae2c6b7098167e6f623c6073f402",
|
||||||
"sha256:45dbed2ab436a9e826e302fcdcbe9133f9b0006e5af7168afb8963a6520da103",
|
"sha256:357cc07a6d7b0b182ff02249616a03742827ebb1277546b5c7cd7f7620a45698",
|
||||||
"sha256:4636de7fd195197b7535f231b5de9e4b36d2c440b6e566d2e4e4746e6af0ca93",
|
"sha256:38efbc8de75c7a0fc1ac190162d892787f3f47b57cc291231aafee36b80982b7",
|
||||||
"sha256:4a19d9dba1a76618dd86b164d608566f393f8ec6ac7c44f0cc879011c45e65af",
|
"sha256:4081eb135ac24158bd51cdfbef16f1c64df7063b1143f24731387137c092bec8",
|
||||||
"sha256:4bbc7f303d125971f60ec0aaad5e12c62d0d2c925f0ab1273debd0e4ba37aba5",
|
"sha256:40fdc1ae7125e518ea98e53e69a4ebc27e1fd50510c47b7ea130cf21e5e1d42b",
|
||||||
"sha256:4d6d57903571f86180eb98f8f0c839fa9ebbfb031356d87f1361be91e433f5b7",
|
"sha256:4cfe66903cc32a9921a6733d96b19bb6abf310397581bbad89c228f5abaf0ee8",
|
||||||
"sha256:4e874c976154687c1f71715b034739b45c7711bec81db01914770373d125e392",
|
"sha256:511dbaf848decaaaf4b4ca48032619fb3138710c4bf7da7617765edad1ef96b0",
|
||||||
"sha256:51fc224f7ca4d92656d5a5eb315f12eb5fe2c97a66249aa7b5f562528a3be38c",
|
"sha256:55cced7c52e981362f708ad635198e97a752dfba412cc03c23bbf3bd8d5cd662",
|
||||||
"sha256:58c8b5929fcb8287cbd6f0a3fae19c6e03a5c48402ae792962ac465224a629a4",
|
"sha256:56b39e5e0622a09a25bf5baf62f4bcf0cb8a41ae6e2819cf49bbc5a74c083f91",
|
||||||
"sha256:5a285b3b96f951841799528cd1f4f01cd70e7e0204b4abebac9463eecfcf2a40",
|
"sha256:5dbbdb29840ca3d91ee0fece42fc29278886d908280bfec0a5846c6f901a3eb0",
|
||||||
"sha256:5c70f1cc1c4efbe316a572e2d8b9b9cc44e89b95f79ca3331553fbb63716e2bf",
|
"sha256:5f9fb9157b4ce2971008323afe46053787b526ef624fea915b261468a8421a0f",
|
||||||
"sha256:62d6b0f03b694173f9fcb1fb317f7222fd0b0b103e784c6549f5e53a27718c44",
|
"sha256:6180d8b35af935aed8ece3a85e0a43f87393ae0ac87c8d2c8bd2c993f7270ef3",
|
||||||
"sha256:6a246d5914aa1c820c9443ddcee9c02bec3e203b0c080349533fae17727dfd1b",
|
"sha256:68a5124b13fa6cc2086764a20005d30bc0548146f7f5322f02fce212ca14317f",
|
||||||
"sha256:6aa3236c78803afbcb255045fbef97a9e25a1f6c9888357d205ddc42f4d6eba5",
|
"sha256:68bb27509ac1b9a3443094260f6326150663b06abe40b73a2f81160623da5b67",
|
||||||
"sha256:6bbe4eb67390b0a0265a2c25458f6b90a409d5d069f1041e6aff1e27e3d9a79e",
|
"sha256:6f41ae150c4e32db4f3310cdaf64b1593a03dbabe29eec77fc9b50fe64061df6",
|
||||||
"sha256:715d1c092715954784bc79e1174fc2a90093dc4dc84ea15eb14dad8abdcdeb74",
|
"sha256:7265a2f3d436e54ef9f2b52b5c937e6be778781bd97a590319d7348f1c1ca997",
|
||||||
"sha256:72944b19f2324114e9dc86a159787333b77874143efcf89a5167ef83cfee8af0",
|
"sha256:72fbe16c6fac95aedf5937fa873445cec2110be35d8a4e9433d7501fd98dae6b",
|
||||||
"sha256:81f4a14bee47aec54f883e0cad2d73986640c1590eb9bfaaba7ad17394481e6e",
|
"sha256:7d92c3819208a60205a12a245c91ad70cb0a85336659b19b834205573ac8456e",
|
||||||
"sha256:846300f379b5b12cc769334464656bc882e0735d27d9726568bc932fdc49d5ec",
|
"sha256:8155154c7c691289fe18f510b5d4657c68c67989f293f0535a91360392ff6538",
|
||||||
"sha256:86b6f55f5a352b48d7fbfd2dbc3d5b780b2d79f4d3c121f33eb6efb22e9a2015",
|
"sha256:81a1cca95ed5bb92aa8b10dd2cdc9a0d3853a50fad926c28b5d7e8ea54389627",
|
||||||
"sha256:874f200b2a981c647340f841730fc3a2b54c9d940566a3c4149099591e2c4c3d",
|
"sha256:89cd468399cfd2504718f0ba50e410dca55a170b61a02ad92bb18c8a65186e93",
|
||||||
"sha256:8a87ec22c87be071b6bdbd27920b129b94f2fc964358ce38f3822635a3e2e03d",
|
"sha256:8ad03c0965fb3c692200e74d458ca28c1dbb4ce96f9a479a8aa041ad5fabca02",
|
||||||
"sha256:8b3b60bb7cba2c8c81837661c488637eee696f59a877788a396d33150c35d842",
|
"sha256:90f9849678c75fe7afa2d348ac842c168b0a4d3d61919687216dfc547976d853",
|
||||||
"sha256:8e3ed142f2728df44263aaf5fb1f5b0b99f4070c553a0d7f033be65338329150",
|
"sha256:948424b06129ce883307e8cff868c31396d8dc7630a59c61d70d98dbe70f222c",
|
||||||
"sha256:93e15038125dc1e5345d9b5b68aa7f996ec33b98118d18c6ca0d0b7d6198b7e8",
|
"sha256:9cd5ffd25db4e7ba6a375693b3fc0fc1791ec636c17db3720da19bde7180ec43",
|
||||||
"sha256:989824e9faf85f96ec9c7761cd8d29c531ad857bfa1daa930cba85baaecf1a9a",
|
"sha256:a0df0043bdb289bde1f62da130d20df23d58b45429f752bc7a8fc5325a225ecd",
|
||||||
"sha256:99d838547ace2c4aace6c4f76e879ddfe02bb58a80c1549928477862b7a6d6ed",
|
"sha256:a2c306dea656c12c68f51f4cea133cbe78ca7435eb28c735eac1d3ebe73be6e8",
|
||||||
"sha256:9b2aec6af35c113b05695ebb5749a787acd63cafc83086a05771d1e1cd1e555f",
|
"sha256:a7830bab239b79cda9c08c2da014761cafb48da6150e1da17ac06283f43b6089",
|
||||||
"sha256:9c585a1790d5436a5374bac930dad6ed244c046ed91b2b2a3634eb2971d21008",
|
"sha256:a7c711e21628b52034bb5ab8d1bce291f752fcc5e92accc615778acee1ff4778",
|
||||||
"sha256:a7164afb23be6e37ad90b2f10426149fd75aee07ca55653d2aa41e66c4ef697e",
|
"sha256:aaf159caa35993cb1f56fb9b8e4610d35758e7ca005412eb1daa856a78c9c4b1",
|
||||||
"sha256:ac6b31e35612a26483e20750126d30d0941f949426974cace8e6b5c58a3657b0",
|
"sha256:ae506e6902902557576a26ff33eda8695e7ecb3cb36c3b573a0765dee114ebdb",
|
||||||
"sha256:ad2e2ef14e0b04e544ea2fa0a36463f847f113d314aa02e5b402fdf910ef309e",
|
"sha256:b507f5c4c1d508876d1819b6bf9a49d365b96320b5d4993426b33a23ca4b8261",
|
||||||
"sha256:b268594bccac7d7cf5844c7732e3f20c50921d94e36d7ec9b79e9857694b1b2f",
|
"sha256:bf162abab1c1a736333192707cef898e735a5ca00f38f27eeedf44b39d9e85eb",
|
||||||
"sha256:b5f0362dc928a6ecd9db58868fca5e48485205e3855957bdedea308f8672ea4a",
|
"sha256:c1a2af6c6ef86344a6b0db6b97834208bf598db514f2b155042439b62605601a",
|
||||||
"sha256:ba1f4fc670ed79f876f70082eff4f9583c15fb9a4b89d6188412de4d18ae2f40",
|
"sha256:c2d37ab77531417474168eb79d6d80b14f821a966818505d03013d0833edb7a8",
|
||||||
"sha256:ba203255017337d39f89bdd58417f03c4426f12beed0440cfd933cb15f8669c7",
|
"sha256:c4fc99836233ea196540b17ab0983aff60ed07941751930f5f4d05bc3b3b7359",
|
||||||
"sha256:c901b15172510173f5cb310eae652908340f8dede90fff9e3bf6c0d8dfd92f83",
|
"sha256:d581b735e177fdcdce6fed8e7e8880a3fb6ee4e3653a3ac6af01c6f4c03effc5",
|
||||||
"sha256:c9b39d38a9bd2ae1becd7eac1303d031c5c110ad31f2b319c6e7d98b135c934d",
|
"sha256:d6da64deb6b8ed903e7560180a92f2d804ee1ba5eeb849ac2748b8c1aba1f6d7",
|
||||||
"sha256:d2a8490669bfe99a233298348acc2d824d496dee0e66e31b66a6022c2ad74a5c",
|
"sha256:d8e8286dd7cea7895157318d1b91cdacac64c479f3cbc8dce548331728484751",
|
||||||
"sha256:dddbbd259598d7240b18c9d87c56a9d2fb3b02fe266f49a7c101532e78c1d871",
|
"sha256:ddea102b48f9e339f3948bf22040944184627a30fdf7f858667673b9c5f033c8",
|
||||||
"sha256:df3775294accfdd75f32c74ae39fcba920c9a378a2fc18a12b6820aa8c1fb502",
|
"sha256:dfa20cc6ca228e6b155b11da03825975ce66aea520985dbbddf0f2a5a495c605",
|
||||||
"sha256:e44319a2953c738205bf3354537979eaa3998ed673395b964c1176083dd46252",
|
"sha256:e3e5193ef5a3dc73bceee50f7fdc2c90dbb76c42df8d8fae3d1067a583df579e",
|
||||||
"sha256:e4a010c27ff6f210ff4c6ef34394cd61470d01014439b192ec22552ee867f2a8",
|
"sha256:e3eeb0aabd6bd5ce64faae67e9935203a6991b4bc2a485a767fbafb2c5125f45",
|
||||||
"sha256:e823b8b6edc81e747526f70f71a9c0a07ac4e7ad13020aa736bb7c9d67196115",
|
"sha256:e5805d5a22fd19c8ccff10a9561f9df94436b0545619ea579db2d3c35294bce2",
|
||||||
"sha256:e892aff75639bbef0d2a2cfd55535510df26ff92f63c92cd84ef8d4ba5a5557f",
|
"sha256:e85b752a1e912b70eaad4fafbd4d1238007ab221de2009b9a2f5ae7461239895",
|
||||||
"sha256:eea7ac5d2dce4189771cedb559c738a71512768210dc4e4753b107a2048b3d0e",
|
"sha256:eaf7fa2de5c0be8ae6ff8e9bea2ccd725e980541244521d8d4b5f3354a27babe",
|
||||||
"sha256:ef4059d6e5152fa1a39f888e344c73fdc926e1b2dd58c771d67b0acfbf2aa67d",
|
"sha256:ebfb099f8dcf083deef3ac1ca4c1503f387cf76296fcb3816b66f5ecb5f54fdb",
|
||||||
"sha256:f169b9a863d34f5d11b8698ead99febeaa17a13ca044961aa8e2662a6c7766a0",
|
"sha256:ece3d2cfe132e7d51f44a832b303895e6f2d499c5e74dfbdb06ee246147a304a",
|
||||||
"sha256:f2cf083b324a467e1ab358c105f6cad5ea950f50524668a80c486ff1db24e119",
|
"sha256:ed9749eef4cbd126da3dc1d6bcb3a57f5eb7ac6a6484146bdbf743f552dfc577",
|
||||||
"sha256:f8474c4241bc18b750be2abea9d7a9ec84f46ef861dbacf86a4f6e043401f79e",
|
"sha256:ede83e07a75dd06bc501566c1eca2afc0d61677c1472ac9ad93fdee6e638a48d",
|
||||||
"sha256:f983334aea213c99992053ede6168500e5f086ce74fbc4acc3f2b00f5762e9db",
|
"sha256:ef4aea96ce4d3b074422cb4f2f64e216bf9e213004bb58ecfdf50ea02ea8eb9a",
|
||||||
"sha256:f9e75681b59ddaa5e659898085ae0eaea229d054f2ac0c7e563a62205a700121",
|
"sha256:f3a3570c4a2a16746ac2c31a7c7c7b0c186b95ce902e33db6f28094ed7387dda",
|
||||||
"sha256:fbc356aae7adf9e6336d336b9c8111d390a05df88f1805573ebb0807bd06fd1d",
|
"sha256:f407cb6b8e9d6d8c626bc73c945db1706035af8fd632295547bf1c9e46d092d6",
|
||||||
"sha256:fcfe2045fd2e8f3cb0ce9d4ba6dba6333b8fa05bb8a4939c908cd43322d14c7e"
|
"sha256:f74a575920ab21fe304421a3fc28793d82e299cae9eccb37084e9fc7f3617c20"
|
||||||
],
|
],
|
||||||
"index": "pypi",
|
"index": "pypi",
|
||||||
"markers": "python_version >= '3.11'",
|
"markers": "python_version >= '3.11'",
|
||||||
"version": "==2.4.4"
|
"version": "==2.4.6"
|
||||||
},
|
},
|
||||||
"outcome": {
|
"outcome": {
|
||||||
"hashes": [
|
"hashes": [
|
||||||
@@ -614,11 +704,11 @@
|
|||||||
},
|
},
|
||||||
"platformdirs": {
|
"platformdirs": {
|
||||||
"hashes": [
|
"hashes": [
|
||||||
"sha256:3bfa75b0ad0db84096ae777218481852c0ebc6c727b3168c1b9e0118e458cf0a",
|
"sha256:31e761a6a0ca04faf7353ea759bdba55652be214725111e5aac52dfa29d4bef7",
|
||||||
"sha256:e61adb1d5e5cb3441b4b7710bea7e4c12250ca49439228cc1021c00dcfac0917"
|
"sha256:fb516cdb12eb0d857d0cd85a7c57cea4d060bee4578d6cf5a14dfdf8cbf8784a"
|
||||||
],
|
],
|
||||||
"markers": "python_version >= '3.10'",
|
"markers": "python_version >= '3.10'",
|
||||||
"version": "==4.9.6"
|
"version": "==4.10.0"
|
||||||
},
|
},
|
||||||
"pycparser": {
|
"pycparser": {
|
||||||
"hashes": [
|
"hashes": [
|
||||||
@@ -628,6 +718,140 @@
|
|||||||
"markers": "implementation_name != 'PyPy'",
|
"markers": "implementation_name != 'PyPy'",
|
||||||
"version": "==3.0"
|
"version": "==3.0"
|
||||||
},
|
},
|
||||||
|
"pydantic": {
|
||||||
|
"hashes": [
|
||||||
|
"sha256:45a282cde31d808236fd7ea9d919b128653c8b38b393d1c4ab335c62924d9aba",
|
||||||
|
"sha256:c40756b57adaa8b1efeeced5c196f3f3b7c435f90e84ea7f443901bec8099ef6"
|
||||||
|
],
|
||||||
|
"markers": "python_version >= '3.9'",
|
||||||
|
"version": "==2.13.4"
|
||||||
|
},
|
||||||
|
"pydantic-core": {
|
||||||
|
"hashes": [
|
||||||
|
"sha256:00c603d540afdd6b80eb39f078f33ebd46211f02f33e34a32d9f053bba711de0",
|
||||||
|
"sha256:0186750b482eefa11d7f435892b09c5c606193ef3375bcf94aa00ae6bfb66262",
|
||||||
|
"sha256:041bde0a48fd37cf71cab1c9d56d3e8625a3793fef1f7dd232b3ff37e978ecda",
|
||||||
|
"sha256:0c563b08bca408dc7f65f700633d8442fffb2421fc47b8101377e9fd65051ff0",
|
||||||
|
"sha256:0cbe8b01f948de4286c74cdd6c667aceb38f5c1e26f0693b3983d9d74887c65e",
|
||||||
|
"sha256:0ce40cd7b21210e99342afafbd4d0f76d784eb5b1d60f3bdc566be4983c6c73b",
|
||||||
|
"sha256:0e96592440881c74a213e5ad528e2b24d3d4f940de2766bed9010ab1d9e51594",
|
||||||
|
"sha256:10e17cbb10a330363733efc4d7c4d0dd827ac0909b8f6a6542298fed1ea62f29",
|
||||||
|
"sha256:133878133d271ade3d41d1bfb2a45ec38dbdbda40bc065921c6b04e4630127e2",
|
||||||
|
"sha256:14d4edf427bdcf950a8a02d7cb44a08614388dd6e1bdcbf4f67504fa7887da9c",
|
||||||
|
"sha256:14f4c5d6db102bd796a627bbb3a17b4cf4574b9ae861d8b7c9a9661c6dd3362d",
|
||||||
|
"sha256:17299feefe090f2caa5b8e37222bb5f663e4935a8bfa6931d4102e5df1a9f398",
|
||||||
|
"sha256:184c081504d17f1c1066e430e117142b2c77d9448a97f7b65c6ac9fd9aee238d",
|
||||||
|
"sha256:18e5ceec2ab67e6d5f1a9085e5a24c9c4e2ac4545730bfe668680bca05e555f3",
|
||||||
|
"sha256:19e51f073cd3df251856a8a4189fbdf1de4012c3ebacfb1884f94f1eb406079f",
|
||||||
|
"sha256:1a7dd0b3ee80d90150e3495a3a13ac34dbcbfd4f012996a6a1d8900e91b5c0fb",
|
||||||
|
"sha256:1d8ba486450b14f3b1d63bc521d410ec7565e52f887b9fb671791886436a42f7",
|
||||||
|
"sha256:2108ba5c1c1eca18030634489dc544844144ee36357f2f9f780b93e7ddbb44b5",
|
||||||
|
"sha256:228ee9bae8bef5b1e97ec58302f80357c37199e0d0a99174e138d28e6957b9d9",
|
||||||
|
"sha256:23ace664830ee0bfe014a0c7bc248b1f7f25ed7ad103852c317624a1083af462",
|
||||||
|
"sha256:2412e734dcb48da14d4e4006b82b46b74f2518b8a26ee7e58c6844a6cd6d03c4",
|
||||||
|
"sha256:29c61fc04a3d840155ff08e475a04809278972fe6aef51e2720554e96367e34b",
|
||||||
|
"sha256:2f84c03c8607173d16b5a854ec68a2f9079ae03237a54fb506d13af47e1d018d",
|
||||||
|
"sha256:3009f12e4e90b7f88b4f9adb1b0c4a3d58fe7820f3238c190047209d148026df",
|
||||||
|
"sha256:3245406455a5d98187ec35530fd772b1d799b26667980872c8d4614991e2c4a2",
|
||||||
|
"sha256:3447661d99f75a3683a4cf5c87da72f2161964611864dbbeac7fbb118bb4bfc0",
|
||||||
|
"sha256:372429a130e469c9cd698925ce5fc50940b7a1336b0d82038e63d5bbc4edc519",
|
||||||
|
"sha256:395aebd9183f9d112f569aeb5b2214d1a10a33bec8456447f7fbdfa51d38d4cd",
|
||||||
|
"sha256:3a233125ac121aa3ffba9a2b59edfc4a985a76092dc8279586ab4b71390875e7",
|
||||||
|
"sha256:3be77f45df024d789a672ae34f8b06fb346c4f9f46ea714956660ea4862e89ac",
|
||||||
|
"sha256:3bf92c5d0e00fefaab325a4d27828fe6b6e2a21848686b5b60d2d9eeb09d76c6",
|
||||||
|
"sha256:3ecbc122d18468d06ca279dc26a8c2e2d5acb10943bb35e36ae92096dc3b5565",
|
||||||
|
"sha256:3fb702cd90b0446a3a1c5e470bfa0dd23c0233b676a9099ddcc964fa6ca13898",
|
||||||
|
"sha256:428e04521a40150c85216fc8b85e8d39fece235a9cf5e383761238c7fa9b96fb",
|
||||||
|
"sha256:432c179df7874eeb73307aad2df0755e1ae0efa61ff0ea89b93e194411ae3928",
|
||||||
|
"sha256:4a05d69cba51d852c5c3e92758653245a50c0b646ced0cf05bd793ed592839d6",
|
||||||
|
"sha256:4c63ebc82684aa89d9a3bcbd13d515b3be44250dc68dd3bd81526c1cb31286c3",
|
||||||
|
"sha256:4fc73cb559bdb54b1134a706a2802a4cddd27a0633f5abb7e53056268751ac6a",
|
||||||
|
"sha256:4fcbe087dbc2068af7eda3aa87634eba216dbda64d1ae73c8684b621d33f6596",
|
||||||
|
"sha256:56cb4851bcaf3d117eddcef4fe66afd750a50274b0da8e22be256d10e5611987",
|
||||||
|
"sha256:5855698a4856556d86e8e6cd8434bc3ac0314ee8e12089ae0e143f64c6256e4e",
|
||||||
|
"sha256:5a4330cdbc57162e4b3aa303f588ba752257694c9c9be3e7ebb11b4aca659b5d",
|
||||||
|
"sha256:5b712b53160b79a5850310b912a5ef8e57e56947c8ad690c227f5c9d7e561712",
|
||||||
|
"sha256:5d5902252db0d3cedf8d4a1bc68f70eeb430f7e4c7104c8c476753519b423008",
|
||||||
|
"sha256:617d7e2ca7dcb8c5cf6bcb8c59b8832c94b36196bbf1cbd1bfb56ed341905edd",
|
||||||
|
"sha256:62f875393d7f270851f20523dd2e29f082bcc82292d66db2b64ea71f64b6e1c1",
|
||||||
|
"sha256:633147d34cf4550417f12e2b1a0383973bdf5cdfde212cb09e9a581cf10820be",
|
||||||
|
"sha256:66ce7632c22d837c95301830e111ad0128a32b8207533b60896a96c4915192ea",
|
||||||
|
"sha256:6b3ace8194b0e5204818c92802dcdca7fc6d88aabbb799d7c795540d9cd6d292",
|
||||||
|
"sha256:6f2eeda33a839975441c86a4119e1383c50b47faf0cbb5176985565c6bb02c33",
|
||||||
|
"sha256:7027560ee92211647d0d34e3f7cd6f50da56399d26a9c8ad0da286d3869a53f3",
|
||||||
|
"sha256:7283d57845ecf5a163403eb0702dfc220cc4fbdd18919cb5ccea4f95ee1cdab4",
|
||||||
|
"sha256:7a5f930472650a82629163023e630d160863fce524c616f4e5186e5de9d9a49b",
|
||||||
|
"sha256:7bfb192b3f4b9e8a89b6277b6ce787564f62cfd272055f6e685726b111dc7826",
|
||||||
|
"sha256:811ff8e9c313ab425368bcbb36e5c4ebd7108c2bbf4e4089cfbb0b01eff63fac",
|
||||||
|
"sha256:8233f2947cf85404441fd7e0085f53b10c93e0ee78611099b5c7237e36aacbf7",
|
||||||
|
"sha256:82cf5301172168103724d49a1444d3378cb20cdee30b116a1bd6031236298a5d",
|
||||||
|
"sha256:8358a950c8909158e3df31538a7e4edc2d7265a7c54b47f0864d9e5bae9dcebf",
|
||||||
|
"sha256:85bb3611ff1802f3ee7fdd7dbff26b56f343fb432d57a4728fdd49b6ef35e2f4",
|
||||||
|
"sha256:86e1a4418c6cd97d60c95c71164158eaf7324fae7b0923264016baa993eba6fc",
|
||||||
|
"sha256:8b9bab013d1c7a79d3501ff86d0bc9c31bf587db4551677b96bec07df78c6b15",
|
||||||
|
"sha256:8c5dac79fa1614d1e06ca695109c6105923bd9c7d1d6c918d4e637b7e6b32fd3",
|
||||||
|
"sha256:8d0820e8192167f80d88d64038e609c31452eeca865b4e1d9950a27a4609b00b",
|
||||||
|
"sha256:8daafc69c93ee8a0204506a3b6b30f586ef54028f52aeeeb5c4cfc5184fd5914",
|
||||||
|
"sha256:9037063db01f09b09e237c282b6792bd4da634b5402c4e7f0c61effed7701a04",
|
||||||
|
"sha256:905a0ed8ea6f2d61c1738835f99b699348d7857379083e5fc497fa0c967a407c",
|
||||||
|
"sha256:90884113d8b48f760e9587002789ddd741e76ab9f89518cd1e43b1f1a52ec44b",
|
||||||
|
"sha256:91a06d2e259ecfbd8c901d70c3c507900458498142b3026a296b7de4d1322cc9",
|
||||||
|
"sha256:926c9541b14b12b1681dca8a0b75feb510b06c6341b70a8e500c2fdcff837cce",
|
||||||
|
"sha256:9401557acd873c3a7f3eb9383edef8ac4968f9510e340f4808d427e75667e7b4",
|
||||||
|
"sha256:9551187363ffc0de2a00b2e47c25aeaeb1020b69b668762966df15fc5659dd5a",
|
||||||
|
"sha256:962ccbab7b642487b1d8b7df90ef677e03134cf1fd8880bf698649b22a69371f",
|
||||||
|
"sha256:97e7cf2be5c77b7d1a9713a05605d49460d02c6078d38d8bef3cbe323c548424",
|
||||||
|
"sha256:9aa768456404a8bf48a4406685ac2bec8e72b62c69313734fa3b73cf33b3a894",
|
||||||
|
"sha256:9bc519fbf2b7578398853d815009ae5e4d4603d12f4e3f91da8c06852d3da3e9",
|
||||||
|
"sha256:9d56801be94b86a9da183e5f3766e6310752b99ff647e38b09a9500d88e46e76",
|
||||||
|
"sha256:9f444c499b3eefd3a92e348059471ea0c3a6e303d9c1cec09fa748fd9f895201",
|
||||||
|
"sha256:9fa8ae11da9e2b3126c6426f147e0fba88d96d65921799bb30c6abd1cb2c97fb",
|
||||||
|
"sha256:a0f62d0a58f4e7da165457e995725421e0064f2255d8eccebc49f41bbc23b109",
|
||||||
|
"sha256:a396dcc17e5a0b164dbe026896245a4fa9ff402edca1dff0be3d53a517f74de4",
|
||||||
|
"sha256:aaa2a54443eff1950ba5ddc6b6ccda0d9c84a364276a62f969bdf2a390650848",
|
||||||
|
"sha256:ad785e92e6dc634c21555edc8bd6b64957ab844541bcb96a1366c202951ae526",
|
||||||
|
"sha256:af8244b2bef6aaad6d92cda81372de7f8c8d36c9f0c3ea36e827c60e7d9467a0",
|
||||||
|
"sha256:b078afbc25f3a1436c7a1d2cd3e322497ee99615ba97c563566fdf46aff1ee01",
|
||||||
|
"sha256:b2f69dec1725e79a012d920df1707de5caf7ed5e08f3be4435e25803efc47458",
|
||||||
|
"sha256:b8458003118a712e66286df6a707db01c52c0f52f7db8e4a38f0da1d3b94fc4e",
|
||||||
|
"sha256:bb63e0198ca18aad131c089b9204c23079c3afa95487e561f4c522d519e55aba",
|
||||||
|
"sha256:bfec22eab3c8cc2ceec0248aec886624116dc079afa027ecc8ad4a7e62010f8a",
|
||||||
|
"sha256:c1747f85cee84c26985853c6f3d9bd3e75da5212912443fa111c113b9c246f39",
|
||||||
|
"sha256:c1b3f518abeca3aa13c712fd202306e145abf59a18b094a6bafb2d2bbf59192c",
|
||||||
|
"sha256:c50f2528cf200c5eed56faf3f4e22fcd5f38c157a8b78576e6ba3168ec35f000",
|
||||||
|
"sha256:c68fcd102d71ea85c5b2dfac3f4f8476eff42a9e078fd5faefff6d145063536b",
|
||||||
|
"sha256:c7a7bd4e39e8e4c12c39cd480356842b6a8a06e41b23a55a5e3e191718838ddf",
|
||||||
|
"sha256:c94f0688e7b8d0a67abf40e57a7eaaecd17cc9586706a31b76c031f63df052b4",
|
||||||
|
"sha256:cbaf13819775b7f769bf4a1f066cb6df7a28d4480081a589828ef190226881cd",
|
||||||
|
"sha256:cd2213145bcc2ba85884d0ac63d222fece9209678f77b9b4d76f054c561adb28",
|
||||||
|
"sha256:ce5c1d2a8b27468f433ca974829c44060b8097eedc39933e3c206a90ee49c4a9",
|
||||||
|
"sha256:d396ec2b979760aaf3218e76c24e65bd0aca24983298653b3a9d7a45f9e47b30",
|
||||||
|
"sha256:d51026d73fcfd93610abc7b27789c26b313920fcfb20e27462d74a7f8b06e983",
|
||||||
|
"sha256:d80ee3d731373b24cebbc10d689ca4ee1875caf0d5703a245db18efd4dd37fc1",
|
||||||
|
"sha256:d995260fdf4e1db774581b4900e0f832abe3c7c84996726bbc161b19c8f29e76",
|
||||||
|
"sha256:da4b951fe36dc7c3a1ccb4e3cd1747c3542b8c9ceede8fc86cae054e764485f5",
|
||||||
|
"sha256:daa27d92c36f24388fe3ad306b174781c747627f134452e4f128ea00ce1fe8c4",
|
||||||
|
"sha256:db06ffe51636ffe9ca531fe9023dd64bdd794be8754cb5df57c5498ae5b518a7",
|
||||||
|
"sha256:e0d65b8c354be7fb5f720c3caa8bc940bc2d20ce749c8e06135f07f8ed95dd7c",
|
||||||
|
"sha256:e68b7a074f65a2fd746c52a7ce6142ab7006074ac269ace0c25cd8ba171f8066",
|
||||||
|
"sha256:e739fee756ba1010f8bcccb534252e85a35fe45ae92c295a06059ce58b74ccd3",
|
||||||
|
"sha256:e846ae7835bf0703ae43f534ab79a867146dadd59dc9ca5c8b53d5c8f7c9ef02",
|
||||||
|
"sha256:e9c26f834c65f5752f3f06cb08cb86a913ceb7274d0db6e267808a708b46bc89",
|
||||||
|
"sha256:ea793e075b70290d89d8142074262885d3f7da19634845135751bd6344f73b50",
|
||||||
|
"sha256:f027324c56cd5406ca49c124b0db10e56c69064fec039acc571c29020cc87c76",
|
||||||
|
"sha256:f13a646d65d09fbf1bc6b3a9635d30095c8e7e5cc419ff35ecc563c5fd04cd49",
|
||||||
|
"sha256:f47286a97f0bc9b8859519809077b91b2cefe4ae47fcbf5e466a009c1c5d742b",
|
||||||
|
"sha256:f747929cf940cddb5b3668a390056ddd5ba2e5010615ea2dcf4f9c4f3ab8791d",
|
||||||
|
"sha256:f99626688942fb746e545232e7726926f3be91b5975f8b55327665fafda991c7",
|
||||||
|
"sha256:f9fa868638bf362d3d138ea55829cefb3d5f4b0d7f142234382a15e2485dbec4",
|
||||||
|
"sha256:fbdb89b3e1c94a30cc5edfce477c6e6a5dc4d8f84665b455c27582f211a1c72c",
|
||||||
|
"sha256:fc010ab034c8c7452522748bf937df58020d256ccae0874463d1f4d01758af8e",
|
||||||
|
"sha256:fc3e9034a63de20e15e8ade85358bc6efc614008cab72898b4b4952bea0509ff",
|
||||||
|
"sha256:fd8b3d9fd264be37976686c7f65cd52a83f5e84f4bfd2adf9c1d469676bbb6ae"
|
||||||
|
],
|
||||||
|
"markers": "python_version >= '3.9'",
|
||||||
|
"version": "==2.46.4"
|
||||||
|
},
|
||||||
"pygments": {
|
"pygments": {
|
||||||
"hashes": [
|
"hashes": [
|
||||||
"sha256:6757cd03768053ff99f3039c1a36d6c0aa0b263438fcab17520b30a303a82b5f",
|
"sha256:6757cd03768053ff99f3039c1a36d6c0aa0b263438fcab17520b30a303a82b5f",
|
||||||
@@ -638,12 +862,12 @@
|
|||||||
},
|
},
|
||||||
"pyjwt": {
|
"pyjwt": {
|
||||||
"hashes": [
|
"hashes": [
|
||||||
"sha256:28ca37c070cad8ba8cd9790cd940535d40274d22f80ab87f3ac6a713e6e8454c",
|
"sha256:41571c89ca91598c79e8ef18a2d07367d4810fbbd6f637794879baf1b7703423",
|
||||||
"sha256:c74a7a2adf861c04d002db713dd85f84beb242228e671280bf709d765b03672b"
|
"sha256:66adcc2aff09b3f1bbd95fc1e1577df8ac8723c978552fd43304c8a290ac5728"
|
||||||
],
|
],
|
||||||
"index": "pypi",
|
"index": "pypi",
|
||||||
"markers": "python_version >= '3.9'",
|
"markers": "python_version >= '3.9'",
|
||||||
"version": "==2.12.1"
|
"version": "==2.13.0"
|
||||||
},
|
},
|
||||||
"pyserial": {
|
"pyserial": {
|
||||||
"hashes": [
|
"hashes": [
|
||||||
@@ -653,6 +877,14 @@
|
|||||||
"index": "pypi",
|
"index": "pypi",
|
||||||
"version": "==3.5"
|
"version": "==3.5"
|
||||||
},
|
},
|
||||||
|
"pyserial-asyncio": {
|
||||||
|
"hashes": [
|
||||||
|
"sha256:b6032923e05e9d75ec17a5af9a98429c46d2839adfaf80604d52e0faacd7a32f",
|
||||||
|
"sha256:de9337922619421b62b9b1a84048634b3ac520e1d690a674ed246a2af7ce1fc5"
|
||||||
|
],
|
||||||
|
"index": "pypi",
|
||||||
|
"version": "==0.6"
|
||||||
|
},
|
||||||
"pysocks": {
|
"pysocks": {
|
||||||
"hashes": [
|
"hashes": [
|
||||||
"sha256:08e69f092cc6dbe92a0fdd16eeb9b9ffbc13cadfe5ca4c7bd92ffb078b293299",
|
"sha256:08e69f092cc6dbe92a0fdd16eeb9b9ffbc13cadfe5ca4c7bd92ffb078b293299",
|
||||||
@@ -757,12 +989,12 @@
|
|||||||
},
|
},
|
||||||
"requests": {
|
"requests": {
|
||||||
"hashes": [
|
"hashes": [
|
||||||
"sha256:18817f8c57c6263968bc123d237e3b8b08ac046f5456bd1e307ee8f4250d3517",
|
"sha256:2a0d60c172f83ac6ab31e4554906c0f3b3588d37b5cb939b1c061f4907e278e0",
|
||||||
"sha256:4e6d1ef462f3626a1f0a0a9c42dd93c63bad33f9f1c1937509b8c5c8718ab56a"
|
"sha256:f288924cae4e29463698d6d60bc6a4da69c89185ad1e0bcc4104f584e960b9ed"
|
||||||
],
|
],
|
||||||
"index": "pypi",
|
"index": "pypi",
|
||||||
"markers": "python_version >= '3.10'",
|
"markers": "python_version >= '3.10'",
|
||||||
"version": "==2.33.1"
|
"version": "==2.34.2"
|
||||||
},
|
},
|
||||||
"rich": {
|
"rich": {
|
||||||
"hashes": [
|
"hashes": [
|
||||||
@@ -774,20 +1006,20 @@
|
|||||||
},
|
},
|
||||||
"rich-click": {
|
"rich-click": {
|
||||||
"hashes": [
|
"hashes": [
|
||||||
"sha256:022997c1e30731995bdbc8ec2f82819340d42543237f033a003c7b1f843fc5dc",
|
"sha256:12873865396e6927835d4eabb1cc3996edcd65b7ac9b2391a29eca4f335a2f93",
|
||||||
"sha256:2f99120fca78f536e07b114d3b60333bc4bb2a0969053b1250869bcdc1b5351b"
|
"sha256:4008f921da88b5d91646c134ec881c1500e5a6b3f093e90e8f29400e09608371"
|
||||||
],
|
],
|
||||||
"markers": "python_version >= '3.8'",
|
"markers": "python_version >= '3.8'",
|
||||||
"version": "==1.9.7"
|
"version": "==1.9.8"
|
||||||
},
|
},
|
||||||
"selenium": {
|
"selenium": {
|
||||||
"hashes": [
|
"hashes": [
|
||||||
"sha256:4f97639055dcfa9eadf8ccf549ba7b0e49c655d4e2bde19b9a44e916b754e769",
|
"sha256:b03a831fcfcab9d912b4682f60718c48a04560d6c62f7496c16b7498c9a4427e",
|
||||||
"sha256:bada5c08a989f812728a4b5bea884d8e91894e939a441cc3a025201ce718581e"
|
"sha256:d01ea3e5ecad8149460a765f7cf5177194c21dcc0173093fc05427c289b1bf24"
|
||||||
],
|
],
|
||||||
"index": "pypi",
|
"index": "pypi",
|
||||||
"markers": "python_version >= '3.10'",
|
"markers": "python_version >= '3.10'",
|
||||||
"version": "==4.43.0"
|
"version": "==4.44.0"
|
||||||
},
|
},
|
||||||
"sniffio": {
|
"sniffio": {
|
||||||
"hashes": [
|
"hashes": [
|
||||||
@@ -817,6 +1049,14 @@
|
|||||||
"markers": "python_version >= '3.7'",
|
"markers": "python_version >= '3.7'",
|
||||||
"version": "==0.5.5"
|
"version": "==0.5.5"
|
||||||
},
|
},
|
||||||
|
"starlette": {
|
||||||
|
"hashes": [
|
||||||
|
"sha256:4de0082d08c8f6764a85a54cf1120d6939507a19905c7768acad2a9f875d2b89",
|
||||||
|
"sha256:9b9b5ebb992e67d6093741e63c2f59e4f6fff986f81163c087867bd7b924b3f6"
|
||||||
|
],
|
||||||
|
"markers": "python_version >= '3.10'",
|
||||||
|
"version": "==1.2.1"
|
||||||
|
},
|
||||||
"tibs": {
|
"tibs": {
|
||||||
"hashes": [
|
"hashes": [
|
||||||
"sha256:01ea5258bdf942d21560dc07d532082cd04f07cfef65fedd58ae84f7d0d2562a",
|
"sha256:01ea5258bdf942d21560dc07d532082cd04f07cfef65fedd58ae84f7d0d2562a",
|
||||||
@@ -878,132 +1118,203 @@
|
|||||||
"markers": "python_version >= '3.9'",
|
"markers": "python_version >= '3.9'",
|
||||||
"version": "==4.15.0"
|
"version": "==4.15.0"
|
||||||
},
|
},
|
||||||
|
"typing-inspection": {
|
||||||
|
"hashes": [
|
||||||
|
"sha256:4ed1cacbdc298c220f1bd249ed5287caa16f34d44ef4e9c3d0cbad5b521545e7",
|
||||||
|
"sha256:ba561c48a67c5958007083d386c3295464928b01faa735ab8547c5692e87f464"
|
||||||
|
],
|
||||||
|
"markers": "python_version >= '3.9'",
|
||||||
|
"version": "==0.4.2"
|
||||||
|
},
|
||||||
"urllib3": {
|
"urllib3": {
|
||||||
"extras": [
|
"extras": [
|
||||||
"socks"
|
"socks"
|
||||||
],
|
],
|
||||||
"hashes": [
|
"hashes": [
|
||||||
"sha256:1b62b6884944a57dbe321509ab94fd4d3b307075e0c2eae991ac71ee15ad38ed",
|
"sha256:231e0ec3b63ceb14667c67be60f2f2c40a518cb38b03af60abc813da26505f4c",
|
||||||
"sha256:bf272323e553dfb2e87d9bfd225ca7b0f467b919d7bbd355436d3fd37cb0acd4"
|
"sha256:9fb4c81ebbb1ce9531cce37674bbc6f1360472bc18ca9a553ede278ef7276897"
|
||||||
],
|
],
|
||||||
"markers": "python_version >= '3.9'",
|
"markers": "python_version >= '3.10'",
|
||||||
"version": "==2.6.3"
|
"version": "==2.7.0"
|
||||||
|
},
|
||||||
|
"uvicorn": {
|
||||||
|
"extras": [
|
||||||
|
"standard"
|
||||||
|
],
|
||||||
|
"hashes": [
|
||||||
|
"sha256:ba3d14c3ee7e41c6c654c46c9eb489d33213cdd30aa1696eab1374337c13f68f",
|
||||||
|
"sha256:ebf4271aa580d9de97f93192d4595176df6e91f9aae919ca73e4fc07df1e66a3"
|
||||||
|
],
|
||||||
|
"markers": "python_version >= '3.10'",
|
||||||
|
"version": "==0.49.0"
|
||||||
|
},
|
||||||
|
"uvloop": {
|
||||||
|
"hashes": [
|
||||||
|
"sha256:017bd46f9e7b78e81606329d07141d3da446f8798c6baeec124260e22c262772",
|
||||||
|
"sha256:0530a5fbad9c9e4ee3f2b33b148c6a64d47bbad8000ea63704fa8260f4cf728e",
|
||||||
|
"sha256:05e4b5f86e621cf3927631789999e697e58f0d2d32675b67d9ca9eb0bca55743",
|
||||||
|
"sha256:0ae676de143db2b2f60a9696d7eca5bb9d0dd6cc3ac3dad59a8ae7e95f9e1b54",
|
||||||
|
"sha256:1489cf791aa7b6e8c8be1c5a080bae3a672791fcb4e9e12249b05862a2ca9cec",
|
||||||
|
"sha256:17d4e97258b0172dfa107b89aa1eeba3016f4b1974ce85ca3ef6a66b35cbf659",
|
||||||
|
"sha256:1cdf5192ab3e674ca26da2eada35b288d2fa49fdd0f357a19f0e7c4e7d5077c8",
|
||||||
|
"sha256:1f38ec5e3f18c8a10ded09742f7fb8de0108796eb673f30ce7762ce1b8550cad",
|
||||||
|
"sha256:286322a90bea1f9422a470d5d2ad82d38080be0a29c4dd9b3e6384320a4d11e7",
|
||||||
|
"sha256:297c27d8003520596236bdb2335e6b3f649480bd09e00d1e3a99144b691d2a35",
|
||||||
|
"sha256:37554f70528f60cad66945b885eb01f1bb514f132d92b6eeed1c90fd54ed6289",
|
||||||
|
"sha256:3879b88423ec7e97cd4eba2a443aa26ed4e59b45e6b76aabf13fe2f27023a142",
|
||||||
|
"sha256:3b7f102bf3cb1995cfeaee9321105e8f5da76fdb104cdad8986f85461a1b7b77",
|
||||||
|
"sha256:40631b049d5972c6755b06d0bfe8233b1bd9a8a6392d9d1c45c10b6f9e9b2733",
|
||||||
|
"sha256:481c990a7abe2c6f4fc3d98781cc9426ebd7f03a9aaa7eb03d3bfc68ac2a46bd",
|
||||||
|
"sha256:4a968a72422a097b09042d5fa2c5c590251ad484acf910a651b4b620acd7f193",
|
||||||
|
"sha256:4baa86acedf1d62115c1dc6ad1e17134476688f08c6efd8a2ab076e815665c74",
|
||||||
|
"sha256:512fec6815e2dd45161054592441ef76c830eddaad55c8aa30952e6fe1ed07c0",
|
||||||
|
"sha256:51eb9bd88391483410daad430813d982010f9c9c89512321f5b60e2cddbdddd6",
|
||||||
|
"sha256:535cc37b3a04f6cd2c1ef65fa1d370c9a35b6695df735fcff5427323f2cd5473",
|
||||||
|
"sha256:53c85520781d84a4b8b230e24a5af5b0778efdb39142b424990ff1ef7c48ba21",
|
||||||
|
"sha256:55502bc2c653ed2e9692e8c55cb95b397d33f9f2911e929dc97c4d6b26d04242",
|
||||||
|
"sha256:561577354eb94200d75aca23fbde86ee11be36b00e52a4eaf8f50fb0c86b7705",
|
||||||
|
"sha256:56a2d1fae65fd82197cb8c53c367310b3eabe1bbb9fb5a04d28e3e3520e4f702",
|
||||||
|
"sha256:57df59d8b48feb0e613d9b1f5e57b7532e97cbaf0d61f7aa9aa32221e84bc4b6",
|
||||||
|
"sha256:6c84bae345b9147082b17371e3dd5d42775bddce91f885499017f4607fdaf39f",
|
||||||
|
"sha256:6cde23eeda1a25c75b2e07d39970f3374105d5eafbaab2a4482be82f272d5a5e",
|
||||||
|
"sha256:6e2ea3d6190a2968f4a14a23019d3b16870dd2190cd69c8180f7c632d21de68d",
|
||||||
|
"sha256:700e674a166ca5778255e0e1dc4e9d79ab2acc57b9171b79e65feba7184b3370",
|
||||||
|
"sha256:7b5b1ac819a3f946d3b2ee07f09149578ae76066d70b44df3fa990add49a82e4",
|
||||||
|
"sha256:7cd375a12b71d33d46af85a3343b35d98e8116134ba404bd657b3b1d15988792",
|
||||||
|
"sha256:80eee091fe128e425177fbd82f8635769e2f32ec9daf6468286ec57ec0313efa",
|
||||||
|
"sha256:93f617675b2d03af4e72a5333ef89450dfaa5321303ede6e67ba9c9d26878079",
|
||||||
|
"sha256:a592b043a47ad17911add5fbd087c76716d7c9ccc1d64ec9249ceafd735f03c2",
|
||||||
|
"sha256:ac33ed96229b7790eb729702751c0e93ac5bc3bcf52ae9eccbff30da09194b86",
|
||||||
|
"sha256:b31dc2fccbd42adc73bc4e7cdbae4fc5086cf378979e53ca5d0301838c5682c6",
|
||||||
|
"sha256:b45649628d816c030dba3c80f8e2689bab1c89518ed10d426036cdc47874dfc4",
|
||||||
|
"sha256:b76324e2dc033a0b2f435f33eb88ff9913c156ef78e153fb210e03c13da746b3",
|
||||||
|
"sha256:b91328c72635f6f9e0282e4a57da7470c7350ab1c9f48546c0f2866205349d21",
|
||||||
|
"sha256:badb4d8e58ee08dad957002027830d5c3b06aea446a6a3744483c2b3b745345c",
|
||||||
|
"sha256:bc5ef13bbc10b5335792360623cc378d52d7e62c2de64660616478c32cd0598e",
|
||||||
|
"sha256:c1955d5a1dd43198244d47664a5858082a3239766a839b2102a269aaff7a4e25",
|
||||||
|
"sha256:c3e5c6727a57cb6558592a95019e504f605d1c54eb86463ee9f7a2dbd411c820",
|
||||||
|
"sha256:c60ebcd36f7b240b30788554b6f0782454826a0ed765d8430652621b5de674b9",
|
||||||
|
"sha256:daf620c2995d193449393d6c62131b3fbd40a63bf7b307a1527856ace637fe88",
|
||||||
|
"sha256:e047cc068570bac9866237739607d1313b9253c3051ad84738cbb095be0537b2",
|
||||||
|
"sha256:ea721dd3203b809039fcc2983f14608dae82b212288b346e0bfe46ec2fab0b7c",
|
||||||
|
"sha256:ef6f0d4cc8a9fa1f6a910230cd53545d9a14479311e87e3cb225495952eb672c",
|
||||||
|
"sha256:fe94b4564e865d968414598eea1a6de60adba0c040ba4ed05ac1300de402cd42"
|
||||||
|
],
|
||||||
|
"version": "==0.22.1"
|
||||||
},
|
},
|
||||||
"watchfiles": {
|
"watchfiles": {
|
||||||
"hashes": [
|
"hashes": [
|
||||||
"sha256:00485f441d183717038ed2e887a7c868154f216877653121068107b227a2f64c",
|
"sha256:01859b11fd9fbca670f4d5da00fbac282cfea9bd67a2125d8b2833a3b5617ea9",
|
||||||
"sha256:03fa0f5237118a0c5e496185cafa92878568b652a2e9a9382a5151b1a0380a43",
|
"sha256:01ea8d66f0693b9b60a6541c8d10263091ca9a9060d242f3c1f3143f9aad2c98",
|
||||||
"sha256:04e78dd0b6352db95507fd8cb46f39d185cf8c74e4cf1e4fbad1d3df96faf510",
|
"sha256:027ae72bfdfd254862065d8b3e2a815c6ab9b1853ce41e6648ece84afd34a551",
|
||||||
"sha256:059098c3a429f62fc98e8ec62b982230ef2c8df68c79e826e37b895bc359a9c0",
|
"sha256:03b14855c6f35539e2d95c442ae9530a75762f1e26567152b9ed05f96534a74d",
|
||||||
"sha256:08af70fd77eee58549cd69c25055dc344f918d992ff626068242259f98d598a2",
|
"sha256:054dc20fd2e3132b4c3883b4a00d72fd6e1f56fdaf89fccd12e8057d74cd74d7",
|
||||||
"sha256:0b495de0bb386df6a12b18335a0285dda90260f51bdb505503c02bcd1ce27a8b",
|
"sha256:094b9b70103d4e963499bdea001ee3c2697b144cd9ae6218a62c0f89ec9e31db",
|
||||||
"sha256:130e4876309e8686a5e37dba7d5e9bc77e6ed908266996ca26572437a5271e18",
|
"sha256:0a105bc2283f67e8fbec74253ec2d94925de92ed72c0393f1206bf326b7b7b69",
|
||||||
"sha256:14e0b1fe858430fc0251737ef3824c54027bedb8c37c38114488b8e131cf8219",
|
"sha256:0a37faaed405c67e28e6be45a1fa4f206ef5a2860f27c237db9fa30704c38242",
|
||||||
"sha256:17ef139237dfced9da49fb7f2232c86ca9421f666d78c264c7ffca6601d154c3",
|
"sha256:0c4997d4e4a55f0d02b6cde327322daf3a0400e5df6c6b15948994bf72497925",
|
||||||
"sha256:1a0bb430adb19ef49389e1ad368450193a90038b5b752f4ac089ec6942c4dff4",
|
"sha256:0cb4d80e212f116474a545c21c912b445f16bb0cef9e6a73a498164223e14e2f",
|
||||||
"sha256:1db5d7ae38ff20153d542460752ff397fcf5c96090c1230803713cf3147a6803",
|
"sha256:0d191c054d0715c3c95c99df9b8dbf6fd096d8c1e021e8f212e1bd8bc444ccb5",
|
||||||
"sha256:28475ddbde92df1874b6c5c8aaeb24ad5be47a11f87cde5a28ef3835932e3e94",
|
"sha256:0e831a271c035d89789cffc386b6aa1375f39f1cd25eb7ca0997e4970d152fc5",
|
||||||
"sha256:2edc3553362b1c38d9f06242416a5d8e9fe235c204a4072e988ce2e5bb1f69f6",
|
"sha256:10d86db20695afe7997ac9e1717637d6714a8d0220458c33f3d2061f54cec427",
|
||||||
"sha256:30f7da3fb3f2844259cba4720c3fc7138eb0f7b659c38f3bfa65084c7fc7abce",
|
"sha256:11743adfa510bfffebe97659fb280182b5c9b238708f667e866f308c3430dc19",
|
||||||
"sha256:311ff15a0bae3714ffb603e6ba6dbfba4065ab60865d15a6ec544133bdb21099",
|
"sha256:1bc6195825b7dcd217968bb1f801a60fd4c16e8eeab5bedc7fe917d7d5995ab4",
|
||||||
"sha256:319b27255aacd9923b8a276bb14d21a5f7ff82564c744235fc5eae58d95422ae",
|
"sha256:204f299afcbd65918ab78dbc52626b0ae45e9d8cef403fdbf33ecf9e40eac66e",
|
||||||
"sha256:35c53bd62a0b885bf653ebf6b700d1bf05debb78ad9292cf2a942b23513dc4c4",
|
"sha256:20aa0e708b920bde876a4aa82dc7dd6ebea228a63a67cda6632c2fc87b787efa",
|
||||||
"sha256:36193ed342f5b9842edd3532729a2ad55c4160ffcfa3700e0d54be496b70dd43",
|
"sha256:23282a321c8baf9b3a3c4afff673f9fe65eb7fdc2338d765ccad9d3d1916a5ba",
|
||||||
"sha256:39574d6370c4579d7f5d0ad940ce5b20db0e4117444e39b6d8f99db5676c52fd",
|
"sha256:24b2405c0a46738dd9e1cf7135aa5dbdb9d42d024628651b3b13d5117e99f8df",
|
||||||
"sha256:399600947b170270e80134ac854e21b3ccdefa11a9529a3decc1327088180f10",
|
"sha256:2581a94056e55d7d0a31a823ea92bf73749c489ca2285bfdc0fbe6b2bb49d50c",
|
||||||
"sha256:3a476189be23c3686bc2f4321dd501cb329c0a0469e77b7b534ee10129ae6374",
|
"sha256:2995c176de7692b86a2e4c58d9ec718f753150a979cb4a754e2b4ffa38e70906",
|
||||||
"sha256:3ad9fe1dae4ab4212d8c91e80b832425e24f421703b5a42ef2e4a1e215aff051",
|
"sha256:2b37d10b5a63bd4d87e18472d80fa525bd670586fae62e5dd580452764879b65",
|
||||||
"sha256:3bc570d6c01c206c46deb6e935a260be44f186a2f05179f52f7fcd2be086a94d",
|
"sha256:2cb93af48550faf1cea04c303107c8b75833de7013e57ce27d3b8d21d8d0f58c",
|
||||||
"sha256:3dbd8cbadd46984f802f6d479b7e3afa86c42d13e8f0f322d669d79722c8ec34",
|
"sha256:2d95ddc1eb6914154253d239089900813f6a767e174b8e6a50e7fdacb7e4236c",
|
||||||
"sha256:3e6f39af2eab0118338902798b5aa6664f46ff66bc0280de76fca67a7f262a49",
|
"sha256:3416ff151bb6b5a8d8d11664974fbef4d9305b9b2957839ab5a270468fd8df30",
|
||||||
"sha256:3f53fa183d53a1d7a8852277c92b967ae99c2d4dcee2bfacff8868e6e30b15f7",
|
"sha256:3651aa7058595e9cfb75d35dd5ada2bf9f48a5b8a0f3562821d3e210c507e077",
|
||||||
"sha256:3f6d37644155fb5beca5378feb8c1708d5783145f2a0f1c4d5a061a210254844",
|
"sha256:37a6721cdf3f65dbb13aa9503510ccb4451603ac837e44d265d7992a597e1374",
|
||||||
"sha256:3f7eb7da0eb23aa2ba036d4f616d46906013a68caf61b7fdbe42fc8b25132e77",
|
"sha256:41bc1199f7523b3f82843c88cbb979180c949caef0342cf90968f178e5d49b01",
|
||||||
"sha256:3fa0b59c92278b5a7800d3ee7733da9d096d4aabcfabb9a928918bd276ef9b9b",
|
"sha256:43d818978d06062d9b22c4fab2ebe44cf5213d42dc8e62bda8c2760cfa2eeb33",
|
||||||
"sha256:421e29339983e1bebc281fab40d812742268ad057db4aee8c4d2bce0af43b741",
|
"sha256:4429f3b105524a10b72c3a819b091c495d2811d419c1e1e8df773a5a5974f831",
|
||||||
"sha256:4b943d3668d61cfa528eb949577479d3b077fd25fb83c641235437bc0b5bc60e",
|
"sha256:4543579a9bdb0c9560039b4ffddbdb39545707659fbc430ce4c10f3f68d557f9",
|
||||||
"sha256:526e86aced14a65a5b0ec50827c745597c782ff46b571dbfe46192ab9e0b3c33",
|
"sha256:4674d49eb94706dfe666c069fc0a1b646ffcf920473492e209f6d5f60d3f0cc2",
|
||||||
"sha256:52e06553899e11e8074503c8e716d574adeeb7e68913115c4b3653c53f9bae42",
|
"sha256:4c887eba18b7945ac73067a8b4a66f21cd46c2539b2bc68588f7be6c7eb6d26b",
|
||||||
"sha256:544364b2b51a9b0c7000a4b4b02f90e9423d97fbbf7e06689236443ebcad81ab",
|
"sha256:4e4ff8e37f99cf1da89e255e07c9c4b37c214038c4283707bdec308cb1b0ea1f",
|
||||||
"sha256:5524298e3827105b61951a29c3512deb9578586abf3a7c5da4a8069df247cccc",
|
"sha256:4f34e26a19f91f710c08e0183429f0d1d15df734e6bc78c31e77b9ea9c433658",
|
||||||
"sha256:55c7475190662e202c08c6c0f4d9e345a29367438cf8e8037f3155e10a88d5a5",
|
"sha256:5327989a465505f05cfe06f04fa9d0c2fd5432bb243e10e6f012b1bdca3c8579",
|
||||||
"sha256:563b116874a9a7ce6f96f87cd0b94f7faf92d08d0021e837796f0a14318ef8da",
|
"sha256:53b2290c92e0506d102cd448fbc610d87079553f86caa39d67440856a8b8bba5",
|
||||||
"sha256:57ca5281a8b5e27593cb7d82c2ac927ad88a96ed406aa446f6344e4328208e9e",
|
"sha256:56d8641cf834c2836922899105bd3ce3d0dfc69291d52edf0b4d0436829b34c0",
|
||||||
"sha256:5c85794a4cfa094714fb9c08d4a218375b2b95b8ed1666e8677c349906246c05",
|
"sha256:57a2d9fa4fb4c2ecae57b13dfff2c7ab53e21a2ba674fe9f05506680fcdcc0d7",
|
||||||
"sha256:5f3bde70f157f84ece3765b42b4a52c6ac1a50334903c6eaf765362f6ccca88a",
|
"sha256:63ac26eefbf4af1741247d6fb68b11c49a25b2f7413fbd318a83a12aaa9cf666",
|
||||||
"sha256:5f3f58818dc0b07f7d9aa7fe9eb1037aecb9700e63e1f6acfed13e9fef648f5d",
|
"sha256:6543cf55d170003296d185c0af981f3e1311564907e1f4e08671fc7693a890a5",
|
||||||
"sha256:5fac835b4ab3c6487b5dbad78c4b3724e26bcc468e886f8ba8cc4306f68f6701",
|
"sha256:704fd259e332e01f9b9c178f4bce9e49027e5587cc2600eeeaf8e76e1c846201",
|
||||||
"sha256:620bae625f4cb18427b1bb1a2d9426dc0dd5a5ba74c7c2cdb9de405f7b129863",
|
"sha256:71283b39fd17e5408eb123bd37aeecfd9d54c81fc184421943208aadb879d103",
|
||||||
"sha256:672b8adf25b1a0d35c96b5888b7b18699d27d4194bac8beeae75be4b7a3fc9b2",
|
"sha256:71cd71740ed2c15211ebb237ced4e39a1cdf6f80566e5fe95428da1626f4fde6",
|
||||||
"sha256:6aae418a8b323732fa89721d86f39ec8f092fc2af67f4217a2b07fd3e93c6101",
|
"sha256:7571e4464cb6e434958f867f7f730b8ab0b75e3f8e5eac0499168486ab3c33a8",
|
||||||
"sha256:6c3631058c37e4a0ec440bf583bc53cdbd13e5661bb6f465bc1d88ee9a0a4d02",
|
"sha256:772b80df316480d894a0e3165fdd19cf77f5d17f9a787f94029465ad0e3529d1",
|
||||||
"sha256:6c9c9262f454d1c4d8aaa7050121eb4f3aea197360553699520767daebf2180b",
|
"sha256:77a0feab9af4c021c581f695258c642b3d10c5fd4c676e33a0d8606425d82631",
|
||||||
"sha256:6e43d39a741e972bab5d8100b5cdacf69db64e34eb19b6e9af162bccf63c5cc6",
|
"sha256:7a2cffd17d27d2ecbb310c2b1d8174f222a5495b1a721894afa88ec11e25b898",
|
||||||
"sha256:7365b92c2e69ee952902e8f70f3ba6360d0d596d9299d55d7d386df84b6941fb",
|
"sha256:7a7ce236284f002a156f70add88efe5c70879cccbb658be0822c54b1306fc09d",
|
||||||
"sha256:743185e7372b7bc7c389e1badcc606931a827112fbbd37f14c537320fca08620",
|
"sha256:7ba0480b9a74af058f43b337e937a451e109295c420916d68ad24e3dc02f5e44",
|
||||||
"sha256:74472234c8370669850e1c312490f6026d132ca2d396abfad8830b4f1c096957",
|
"sha256:8520a4ab0e37f770afc34459c4f8f7019e153f9124dc101c15538365875d1ab2",
|
||||||
"sha256:74d5012b7630714b66be7b7b7a78855ef7ad58e8650c73afc4c076a1f480a8d6",
|
"sha256:86bc13c25a8d1fcd70b51d0ce7c9b65e90de5666fcbfd3e34957cc73ee19aeb5",
|
||||||
"sha256:77a13aea58bc2b90173bc69f2a90de8e282648939a00a602e1dc4ee23e26b66d",
|
"sha256:89d8c2394a065ca86f5d2910ff263ae67c127e1376ccc4f9fc35c71db879f80a",
|
||||||
"sha256:79ff6c6eadf2e3fc0d7786331362e6ef1e51125892c75f1004bd6b52155fb956",
|
"sha256:8c520725602756229f045b032a1ff33d7ef0f7404189d62f6c2438cb6d8ef6a1",
|
||||||
"sha256:831a62658609f0e5c64178211c942ace999517f5770fe9436be4c2faeba0c0ef",
|
"sha256:8f200104103feb097de4cab8fe4f5dd18a2026934c7dea98c55a2f5fd6d5a33b",
|
||||||
"sha256:836398932192dae4146c8f6f737d74baeac8b70ce14831a239bdb1ca882fc261",
|
"sha256:8f70d8b291ef6e88d19b1f297a6905ddb978888d9272b0d05e6f53309856bcfc",
|
||||||
"sha256:842178b126593addc05acf6fce960d28bc5fae7afbaa2c6c1b3a7b9460e5be02",
|
"sha256:8fa585ede612ee9f9e91b18bebf9ba11b9ae29a4e3a0d0cf6fca3e382133f0d5",
|
||||||
"sha256:8526e8f916bb5b9a0a777c8317c23ce65de259422bba5b31325a6fa6029d33af",
|
"sha256:922c0e019fe68b3ae392965a766b02a71ba1168c932cebc3733cd52c5fe5b377",
|
||||||
"sha256:859e43a1951717cc8de7f4c77674a6d389b106361585951d9e69572823f311d9",
|
"sha256:9342472aff9b093c5acd4f6d8f70ae0937964ab56542502bcf5579782da69ae8",
|
||||||
"sha256:88863fbbc1a7312972f1c511f202eb30866370ebb8493aef2812b9ff28156a21",
|
"sha256:9649193aa27bd9ff2e80ff29bfaa93085496c7a3a377592823cc58b77ee88add",
|
||||||
"sha256:89eef07eee5e9d1fda06e38822ad167a044153457e6fd997f8a858ab7564a336",
|
"sha256:9f04b092229ad2c50126dd3c922c8822e51e605993764a33058d4a791ab42281",
|
||||||
"sha256:8c89f9f2f740a6b7dcc753140dd5e1ab9215966f7a3530d0c0705c83b401bd7d",
|
"sha256:a0f27f01bee51861392bb6b7c4fdb290b27d1eb194e9e28788d68102a0e898d9",
|
||||||
"sha256:8c91ed27800188c2ae96d16e3149f199d62f86c7af5f5f4d2c61a3ed8cd3666c",
|
"sha256:a16ffe19bf5cf9f5edaa1ad1dd830c5a816e8feec430c522302ab55483a4b994",
|
||||||
"sha256:8ca65483439f9c791897f7db49202301deb6e15fe9f8fe2fed555bf986d10c31",
|
"sha256:a204794696ffb8f9b10fba6f7cb5216d42f3b2b71860ccac6b6e42f5f10973b0",
|
||||||
"sha256:8fbe85cb3201c7d380d3d0b90e63d520f15d6afe217165d7f98c9c649654db81",
|
"sha256:a711b51aec4370d0dcda5b6c09463206f133a5759341d7744b953a7b62e1100e",
|
||||||
"sha256:91d4c9a823a8c987cce8fa2690923b069966dabb196dd8d137ea2cede885fde9",
|
"sha256:a88fc94e647bc4eec523f1caa540258eb71d14278b9daf72fa1e2658a98df0f0",
|
||||||
"sha256:9bb9f66367023ae783551042d31b1d7fd422e8289eedd91f26754a66f44d5cff",
|
"sha256:ae99b14c5f21e026e0e9d96f40e07d8570ebee6cafd9d8fc318354606daa7a28",
|
||||||
"sha256:a173cb5c16c4f40ab19cecf48a534c409f7ea983ab8fed0741304a1c0a31b3f2",
|
"sha256:b0ef001f8c25ad0fa9529f914c1600647ecd0f542d11c19b7894768c67b6acb7",
|
||||||
"sha256:a36d8efe0f290835fd0f33da35042a1bb5dc0e83cbc092dcf69bce442579e88e",
|
"sha256:b141a4891c995a039cd89e9a49e62df1dc8a559a5d1a6e4c7106d16c12777a55",
|
||||||
"sha256:a55f3e9e493158d7bfdb60a1165035f1cf7d320914e7b7ea83fe22c6023b58fc",
|
"sha256:b4e77f6a55f858504069abd35d336a637555c09bca453dde1ee1e5ada8a6a1fb",
|
||||||
"sha256:a625815d4a2bdca61953dbba5a39d60164451ef34c88d751f6c368c3ea73d404",
|
"sha256:b62f042afde2dde21ec1d2c1a74361e804673df86f51e418a999c9acfe671b07",
|
||||||
"sha256:a916a2932da8f8ab582f242c065f5c81bed3462849ca79ee357dd9551b0e9b01",
|
"sha256:b718bf356bbc15e559bd8ef41782b573b8ae0e3f177ab244b440568d7ea02cfb",
|
||||||
"sha256:ac3cc5759570cd02662b15fbcd9d917f7ecd47efe0d6b40474eafd246f91ea18",
|
"sha256:b8c8358484d5fa12ef34f05b7f4168eaf1932f408725ff6d023c33ec17bd79d4",
|
||||||
"sha256:acb08650863767cbc58bca4813b92df4d6c648459dcaa3d4155681962b2aa2d3",
|
"sha256:b974946a10af379d425e2eef5b62f5c6ebeaccf91d45eaad6f5b27ecd4f91aa0",
|
||||||
"sha256:aebfd0861a83e6c3d1110b78ad54704486555246e542be3e2bb94195eabb2606",
|
"sha256:b9909cc2b48468b575eefa944919e1fe8a36c5849d5c7c168f80a8c1db69398e",
|
||||||
"sha256:afaeff7696e0ad9f02cbb8f56365ff4686ab205fcf9c4c5b6fdfaaa16549dd04",
|
"sha256:b9f732dc58b2dbe69e464ccf8fff7a03b0dd0be439da4c0720d3558527d3d6b4",
|
||||||
"sha256:b27cf2eb1dda37b2089e3907d8ea92922b673c0c427886d4edc6b94d8dfe5db3",
|
"sha256:bb68bf4df85abebe5efddc53cf2075520f243a59868d9b3973278b23e76962a9",
|
||||||
"sha256:b2cd9e04277e756a2e2d2543d65d1e2166d6fd4c9b183f8808634fda23f17b14",
|
"sha256:bb7e52ecf68ba46d22df23467b87cffeb2146908aa523ebfe803019618cfda06",
|
||||||
"sha256:b9c4702f29ca48e023ffd9b7ff6b822acdf47cb1ff44cb490a3f1d5ec8987e9c",
|
"sha256:bc13eb17538be00c874699dc0abe4ee2bc8d50bb1166a6b9e175ef3fd7eb8f26",
|
||||||
"sha256:bbe1ef33d45bc71cf21364df962af171f96ecaeca06bd9e3d0b583efb12aec82",
|
"sha256:c0db965c5f79aa49fe672d297cf1febc5ad149b658594944f49a54a2b96270a7",
|
||||||
"sha256:bd404be08018c37350f0d6e34676bd1e2889990117a2b90070b3007f172d0610",
|
"sha256:c16cb06dd17d43b9d185094268459eac92c9538356f050e55b54e82cf700e1d4",
|
||||||
"sha256:bf0a91bfb5574a2f7fc223cf95eeea79abfefa404bf1ea5e339c0c1560ae99a0",
|
"sha256:c525543d91961c6955b2636b308569e84a1d1c5f5f2932041ab9ef46422f43e3",
|
||||||
"sha256:bfb5862016acc9b869bb57284e6cb35fdf8e22fe59f7548858e2f971d045f150",
|
"sha256:c5c19526f4e54a00f2666a6c0e9e40d582c09e865055ea7378bf0009aab857b3",
|
||||||
"sha256:bfff9740c69c0e4ed32416f013f3c45e2ae42ccedd1167ef2d805c000b6c71a5",
|
"sha256:c995fba777f1ea992f090f9236e9284cf7a5d1a0130dd5a3d82c598cacd76838",
|
||||||
"sha256:c1f5210f1b8fc91ead1283c6fd89f70e76fb07283ec738056cf34d51e9c1d62c",
|
"sha256:ca148d73dea36c9763aaa351e4d7a51780ec1584217c45276f4fe8239c768b71",
|
||||||
"sha256:c2047d0b6cea13b3316bdbafbfa0c4228ae593d995030fda39089d36e64fc03a",
|
"sha256:cee9d5efd929efdac5f7e58f72b3376f676b64050a91c5b99a7094c5b2317488",
|
||||||
"sha256:c22c776292a23bfc7237a98f791b9ad3144b02116ff10d820829ce62dff46d0b",
|
"sha256:d158cd89df6053823533e06fb1d73c549133bff5f0396170c0e53d9559340717",
|
||||||
"sha256:c755367e51db90e75b19454b680903631d41f9e3607fbd941d296a020c2d752d",
|
"sha256:d20029a60a71a052a24c4db7673bc4de39ab89adbaccbfb5d67987c5d73f424d",
|
||||||
"sha256:c882d69f6903ef6092bedfb7be973d9319940d56b8427ab9187d1ecd73438a70",
|
"sha256:d413349d565dab74297f2a63e84a097936be69bf8f3b3801f27f380e32040f44",
|
||||||
"sha256:cb467c999c2eff23a6417e58d75e5828716f42ed8289fe6b77a7e5a91036ca70",
|
"sha256:d4a4b147f5dca2a5d325a06a832fb43f345751adfbc63204aec30e0d9ca965a2",
|
||||||
"sha256:cdab464fee731e0884c35ae3588514a9bcf718d0e2c82169c1c4a85cc19c3c7f",
|
"sha256:d516b3283a758e087841aedb8031549fb41ced08f3db10aa6d2bf32dc042525b",
|
||||||
"sha256:ce19e06cbda693e9e7686358af9cd6f5d61312ab8b00488bc36f5aabbaf77e24",
|
"sha256:d73a585accffa5ae39c17264c36ec3166d2fad7000c780f5ef83b2722afb9dd2",
|
||||||
"sha256:ce70f96a46b894b36eba678f153f052967a0d06d5b5a19b336ab0dbbd029f73e",
|
"sha256:dbd6c97045dad81227c8d040173da044c1de08de64a5ea8b555da4aee1d5fa22",
|
||||||
"sha256:cf57a27fb986c6243d2ee78392c503826056ffe0287e8794503b10fb51b881be",
|
"sha256:e0618518f282c4ebff60f5e5b1247b6d91bb8b9f4476947563a1e74acc66f3c6",
|
||||||
"sha256:d1715143123baeeaeadec0528bb7441103979a1d5f6fd0e1f915383fea7ea6d5",
|
"sha256:e140ed30ebde76796b686e67c182cff10ea2fbab186fafd1560f74bb5a473a6e",
|
||||||
"sha256:d6ff426a7cb54f310d51bfe83fe9f2bbe40d540c741dc974ebc30e6aa238f52e",
|
"sha256:e1cfd51e97e13ff3bd047c140764d277fc9b95b7cb5da59e46a47d167adab310",
|
||||||
"sha256:d7e7067c98040d646982daa1f37a33d3544138ea155536c2e0e63e07ff8a7e0f",
|
"sha256:e2ca07fa7d89195ec0865d3d285666286740bfa83d83e5cee204043a31ecc165",
|
||||||
"sha256:db476ab59b6765134de1d4fe96a1a9c96ddf091683599be0f26147ea1b2e4b88",
|
"sha256:e53a384f76b631c3ae5334ce6a52f0baa3a911eb94a4eac7f160079868b716d5",
|
||||||
"sha256:dcc5c24523771db3a294c77d94771abcfcb82a0e0ee8efd910c37c59ec1b31bb",
|
"sha256:eb283ee99e21ad6443c8cdb06ac5b34b1308c329cbdf03fa02b445363714c799",
|
||||||
"sha256:de6da501c883f58ad50db3a32ad397b09ad29865b5f26f64c24d3e3281685849",
|
"sha256:eb72919d93e3a16fc451d3aa3d4b1698423daca1b382d3d959c9ac51297c12a8",
|
||||||
"sha256:e84087b432b6ac94778de547e08611266f1f8ffad28c0ee4c82e028b0fc5966d",
|
"sha256:ecb47f183a8025b2aa18b546725c3657e542112ae9c0613a2af79b4fa8d04ad7",
|
||||||
"sha256:eef58232d32daf2ac67f42dea51a2c80f0d03379075d44a587051e63cc2e368c",
|
"sha256:f155b3a1b2a5fc89cdc70d47ee5d54e3b75e88efa34982028a35daef9ba00379",
|
||||||
"sha256:f096076119da54a6080e8920cbdaac3dbee667eb91dcc5e5b78840b87415bd44",
|
"sha256:f22943b7770483f6ea0721c6b11d022947a98eb0acae14694de034f4d0d38925",
|
||||||
"sha256:f0ab1c1af0cb38e3f598244c17919fb1a84d1629cc08355b0074b6d7f53138ac",
|
"sha256:f28b2725eb8cce327b9b3ab02415c853011dc55c95832fe90de6bc56f5315f72",
|
||||||
"sha256:f27db948078f3823a6bb3b465180db8ebecf26dd5dae6f6180bd87383b6b4428",
|
"sha256:f88af53d6ddaf72179ef613ddc905e6f4785f712b49b80b3bef9f3525e6194b4",
|
||||||
"sha256:f537afb3276d12814082a2e9b242bdcf416c2e8fd9f799a737990a1dbe906e5b",
|
"sha256:faea288b6f0ab1902ef08f4ca6de005dccf856c4e0c4f21b8c5fce02d90a1b08",
|
||||||
"sha256:f57b396167a2565a4e8b5e56a5a1c537571733992b226f4f1197d79e94cf0ae5",
|
"sha256:fff610d7bb2256a317bb1e96f0d7862c7aa8076733ee5df0fd41bbe76a24a4f4"
|
||||||
"sha256:f8979280bdafff686ba5e4d8f97840f929a87ed9cdf133cbbd42f7766774d2aa",
|
|
||||||
"sha256:f9a2ae5c91cecc9edd47e041a930490c31c3afb1f5e6d71de3dc671bfaca02bf"
|
|
||||||
],
|
],
|
||||||
"index": "pypi",
|
"index": "pypi",
|
||||||
"markers": "python_version >= '3.9'",
|
"markers": "python_version >= '3.10'",
|
||||||
"version": "==1.1.1"
|
"version": "==1.2.0"
|
||||||
},
|
},
|
||||||
"websocket-client": {
|
"websocket-client": {
|
||||||
"hashes": [
|
"hashes": [
|
||||||
|
|||||||
13
README.md
@@ -1,15 +1,18 @@
|
|||||||
# led-controller
|
# led-controller
|
||||||
|
|
||||||
LED controller web app for managing profiles, **zones**, presets, and colour palettes, and sending commands to LED devices. Outbound paths include:
|
LED controller web app for managing profiles, **zones**, presets, and colour palettes, and sending commands to LED devices over **ESP-NOW** (peer-to-peer on 2.4 GHz Wi‑Fi radio).
|
||||||
|
|
||||||
- **Serial → ESP-NOW bridge**: JSON lines over UART to an ESP32 that forwards ESP-NOW frames (configure `serial_port` and baud in `settings.json` / Settings model).
|
- **Bridge ESP32**: routes Pi traffic to drivers. The Pi connects over **WebSocket** (`bridge_transport`: `wifi`, `bridge_ws_url` e.g. `ws://192.168.4.1/ws`) or **USB serial** (`bridge_transport`: `serial`, `bridge_serial_port`).
|
||||||
- **Wi-Fi LED drivers**: TCP JSON lines (default port **8765** on the Pi; drivers discover the controller via **UDP 8766** broadcast).
|
- **LED drivers**: announce on boot via ESP-NOW broadcast; the controller registers them (MAC-keyed) and pushes group membership.
|
||||||
|
- Optional **Wi-Fi drivers** on the LAN still work over UDP discovery + outbound WebSocket.
|
||||||
|
- Architecture (diagrams): [docs/espnow-architecture.md](docs/espnow-architecture.md)
|
||||||
|
- Wire format (byte layouts): [docs/espnow-binary-protocol.md](docs/espnow-binary-protocol.md) (≤250 bytes per ESP-NOW frame; Pi ↔ bridge uses JSON devices envelope)
|
||||||
|
|
||||||
## Run
|
## Run
|
||||||
|
|
||||||
- One-time setup for port 80 without root: `sudo scripts/setup-port80.sh`
|
- One-time setup for port 80 without root: `sudo scripts/setup-port80.sh`
|
||||||
- Start app: `pipenv run run` (override listen port with the **`PORT`** environment variable)
|
- Start app: `pipenv run run` (FastAPI + uvicorn; override listen port with **`PORT`**)
|
||||||
- Dev watcher (auto-restart on `src/` changes): `pipenv run dev`
|
- Dev mode (uvicorn **`--reload`** on `src/` + browser refresh via `dev-live-reload.js`): `pipenv run dev`
|
||||||
- Regenerate **`docs/help.pdf`** from **`docs/help.md`**: `pipenv run help-pdf` (requires **pandoc** and **chromium** on the host)
|
- Regenerate **`docs/help.pdf`** from **`docs/help.md`**: `pipenv run help-pdf` (requires **pandoc** and **chromium** on the host)
|
||||||
|
|
||||||
## UI modes
|
## UI modes
|
||||||
|
|||||||
19
bridge-serial/README.md
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
# bridge-serial
|
||||||
|
|
||||||
|
ESP32 ESP-NOW bridge with **USB/serial** uplink to the Pi (GPIO UART). Sync loop only — no asyncio, no Microdot.
|
||||||
|
|
||||||
|
```
|
||||||
|
bridge-serial/
|
||||||
|
src/
|
||||||
|
main.py # entry
|
||||||
|
settings.py # /settings.json on device
|
||||||
|
```
|
||||||
|
|
||||||
|
Deploy:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
cd bridge-serial
|
||||||
|
python ../led-tool/cli.py -p /dev/ttyUSB0 --src -r -f
|
||||||
|
```
|
||||||
|
|
||||||
|
No `--lib` required. Match `serial_baudrate` on the ESP and Pi (e.g. `921600`).
|
||||||
166
bridge-serial/src/main.py
Normal file
@@ -0,0 +1,166 @@
|
|||||||
|
"""ESP-NOW bridge: Pi USB-serial downlink, ESP-NOW to drivers (sync loop)."""
|
||||||
|
|
||||||
|
import gc, json, struct, time
|
||||||
|
import espnow, machine, network
|
||||||
|
from machine import Pin, UART
|
||||||
|
from settings import Settings
|
||||||
|
|
||||||
|
BROADCAST = b"\xff\xff\xff\xff\xff\xff"
|
||||||
|
WIRE = 0x4C
|
||||||
|
MAX_SERIAL = 4096
|
||||||
|
MAX_ESPNOW = 250
|
||||||
|
ESPNOW_EXIST = -12395
|
||||||
|
ESPNOW_FULL = -12392
|
||||||
|
|
||||||
|
|
||||||
|
def add_peer_if_needed(esp, dest, ch):
|
||||||
|
try:
|
||||||
|
esp.add_peer(dest, channel=ch)
|
||||||
|
except TypeError:
|
||||||
|
try:
|
||||||
|
esp.add_peer(dest)
|
||||||
|
except OSError as e:
|
||||||
|
if e.args[0] != ESPNOW_EXIST:
|
||||||
|
raise
|
||||||
|
except OSError as e:
|
||||||
|
if e.args[0] != ESPNOW_EXIST:
|
||||||
|
raise
|
||||||
|
|
||||||
|
|
||||||
|
def del_peer_if_present(esp, dest):
|
||||||
|
try:
|
||||||
|
esp.del_peer(dest)
|
||||||
|
except Exception:
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
def send_unicast_temp_peer(esp, dest, ch, pkt):
|
||||||
|
try:
|
||||||
|
add_peer_if_needed(esp, dest, ch)
|
||||||
|
except OSError as e:
|
||||||
|
if e.args and e.args[0] == ESPNOW_FULL:
|
||||||
|
del_peer_if_present(esp, dest)
|
||||||
|
add_peer_if_needed(esp, dest, ch)
|
||||||
|
else:
|
||||||
|
raise
|
||||||
|
try:
|
||||||
|
esp.send(dest, pkt, True)
|
||||||
|
finally:
|
||||||
|
del_peer_if_present(esp, dest)
|
||||||
|
|
||||||
|
|
||||||
|
def init_radio(ch, name, password):
|
||||||
|
network.WLAN(network.STA_IF).active(False)
|
||||||
|
network.WLAN(network.AP_IF).active(False)
|
||||||
|
time.sleep_ms(100)
|
||||||
|
ap = network.WLAN(network.AP_IF)
|
||||||
|
ap.active(True)
|
||||||
|
time.sleep_ms(50)
|
||||||
|
if password:
|
||||||
|
try:
|
||||||
|
ap.config(essid=name or "bridge", password=password, channel=ch, hidden=True)
|
||||||
|
except TypeError:
|
||||||
|
ap.config(essid=name or "bridge", channel=ch)
|
||||||
|
else:
|
||||||
|
try:
|
||||||
|
ap.config(essid=name or "bridge", channel=ch, hidden=True)
|
||||||
|
except TypeError:
|
||||||
|
ap.config(essid=name or "bridge", channel=ch)
|
||||||
|
sta = network.WLAN(network.STA_IF)
|
||||||
|
sta.active(True)
|
||||||
|
sta.config(pm=network.WLAN.PM_NONE)
|
||||||
|
try:
|
||||||
|
sta.config(channel=ch)
|
||||||
|
except Exception:
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
def mac_bytes(addr):
|
||||||
|
h = str(addr).replace(":", "").replace("-", "").strip().lower()
|
||||||
|
return bytes.fromhex(h)
|
||||||
|
|
||||||
|
|
||||||
|
def read_serial(uart, buf):
|
||||||
|
if uart.any():
|
||||||
|
buf.extend(uart.read(min(uart.any(), 256)))
|
||||||
|
out = []
|
||||||
|
while len(buf) >= 2:
|
||||||
|
n = (buf[0] << 8) | buf[1]
|
||||||
|
if n > MAX_SERIAL:
|
||||||
|
buf[:] = buf[1:]
|
||||||
|
continue
|
||||||
|
need = 2 + n
|
||||||
|
if len(buf) < need:
|
||||||
|
break
|
||||||
|
out.append(bytes(buf[2:need]))
|
||||||
|
buf[:] = buf[need:]
|
||||||
|
return out
|
||||||
|
|
||||||
|
|
||||||
|
def downlink(esp, ch, raw):
|
||||||
|
if not raw:
|
||||||
|
return
|
||||||
|
if raw[0] == WIRE:
|
||||||
|
if len(raw) < 2:
|
||||||
|
return
|
||||||
|
esp.send(BROADCAST, raw, True)
|
||||||
|
return
|
||||||
|
if len(raw) < 8 or raw[0] != ord("{"):
|
||||||
|
return
|
||||||
|
try:
|
||||||
|
data = json.loads(raw)
|
||||||
|
except ValueError:
|
||||||
|
return
|
||||||
|
devs = data.get("dv") or data.get("devices")
|
||||||
|
if data.get("v") != "1" or not isinstance(devs, dict):
|
||||||
|
return
|
||||||
|
for mac_s, body in devs.items():
|
||||||
|
if not isinstance(body, dict):
|
||||||
|
continue
|
||||||
|
try:
|
||||||
|
msg = {"v": "1"}
|
||||||
|
msg.update(body)
|
||||||
|
pkt = json.dumps(msg, separators=(",", ":")).encode()
|
||||||
|
if len(pkt) > MAX_ESPNOW:
|
||||||
|
continue
|
||||||
|
dest = mac_bytes(mac_s)
|
||||||
|
except (ValueError, TypeError):
|
||||||
|
continue
|
||||||
|
if dest == BROADCAST:
|
||||||
|
esp.send(BROADCAST, pkt, True)
|
||||||
|
else:
|
||||||
|
send_unicast_temp_peer(esp, dest, ch, pkt)
|
||||||
|
time.sleep_ms(5)
|
||||||
|
|
||||||
|
|
||||||
|
gc.collect()
|
||||||
|
s = Settings()
|
||||||
|
ch = max(1, min(11, int(s.get("wifi_channel", 5))))
|
||||||
|
init_radio(ch, s.get("name"), s.get("ap_password") or "")
|
||||||
|
baud = int(s.get("serial_baudrate", 921600))
|
||||||
|
uart = UART(
|
||||||
|
int(s.get("serial_uart_id", 1)),
|
||||||
|
baud,
|
||||||
|
tx=Pin(int(s.get("serial_tx_pin", 2))),
|
||||||
|
rx=Pin(int(s.get("serial_rx_pin", 3))),
|
||||||
|
)
|
||||||
|
esp = espnow.ESPNow()
|
||||||
|
esp.active(True)
|
||||||
|
add_peer_if_needed(esp, BROADCAST, ch)
|
||||||
|
print("bridge ch", ch, "baud", baud, "heap", gc.mem_free())
|
||||||
|
|
||||||
|
wdt = machine.WDT(timeout=10000)
|
||||||
|
rx_buf = bytearray()
|
||||||
|
while True:
|
||||||
|
wdt.feed()
|
||||||
|
for frame in read_serial(uart, rx_buf):
|
||||||
|
try:
|
||||||
|
downlink(esp, ch, frame)
|
||||||
|
except OSError as e:
|
||||||
|
print("dl", e)
|
||||||
|
host, msg = esp.recv(0)
|
||||||
|
if host:
|
||||||
|
up = bytes([0]) + host + msg
|
||||||
|
uart.write(struct.pack(">H", len(up)) + up)
|
||||||
|
else:
|
||||||
|
time.sleep_ms(1)
|
||||||
62
bridge-serial/src/settings.py
Normal file
@@ -0,0 +1,62 @@
|
|||||||
|
import json
|
||||||
|
import time
|
||||||
|
import ubinascii
|
||||||
|
import network
|
||||||
|
|
||||||
|
WIFI_CHANNEL_DEFAULT = 5
|
||||||
|
|
||||||
|
|
||||||
|
def _sta_mac_hex():
|
||||||
|
sta = network.WLAN(network.STA_IF)
|
||||||
|
was_on = sta.active()
|
||||||
|
if not was_on:
|
||||||
|
sta.active(True)
|
||||||
|
time.sleep_ms(50)
|
||||||
|
try:
|
||||||
|
mac = ubinascii.hexlify(sta.config("mac")).decode().lower()
|
||||||
|
except Exception:
|
||||||
|
mac = "000000000000"
|
||||||
|
if not was_on:
|
||||||
|
sta.active(False)
|
||||||
|
return mac
|
||||||
|
|
||||||
|
|
||||||
|
class Settings(dict):
|
||||||
|
SETTINGS_FILE = "/settings.json"
|
||||||
|
|
||||||
|
def __init__(self):
|
||||||
|
super().__init__()
|
||||||
|
self.load()
|
||||||
|
|
||||||
|
def set_defaults(self):
|
||||||
|
self["name"] = "bridge-" + _sta_mac_hex()
|
||||||
|
self["wifi_channel"] = WIFI_CHANNEL_DEFAULT
|
||||||
|
self["ap_password"] = ""
|
||||||
|
self["serial_baudrate"] = 921600
|
||||||
|
self["serial_uart_id"] = 1
|
||||||
|
self["serial_tx_pin"] = 2
|
||||||
|
self["serial_rx_pin"] = 3
|
||||||
|
self["serial_usb"] = False
|
||||||
|
|
||||||
|
def save(self):
|
||||||
|
try:
|
||||||
|
with open(self.SETTINGS_FILE, "w") as f:
|
||||||
|
f.write(json.dumps(self))
|
||||||
|
except Exception as e:
|
||||||
|
print("save settings:", e)
|
||||||
|
|
||||||
|
def load(self):
|
||||||
|
try:
|
||||||
|
with open(self.SETTINGS_FILE, "r") as f:
|
||||||
|
loaded = json.load(f)
|
||||||
|
if not isinstance(loaded, dict):
|
||||||
|
raise ValueError("not object")
|
||||||
|
except Exception:
|
||||||
|
self.clear()
|
||||||
|
self.set_defaults()
|
||||||
|
self.save()
|
||||||
|
return
|
||||||
|
self.clear()
|
||||||
|
self.set_defaults()
|
||||||
|
for k, v in loaded.items():
|
||||||
|
self[k] = v
|
||||||
22
bridge-wifi/README.md
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
# bridge-wifi
|
||||||
|
|
||||||
|
ESP32 ESP-NOW bridge with **Wi‑Fi AP + WebSocket** (`/ws`). Same ESP-NOW downlink as bridge-serial.
|
||||||
|
|
||||||
|
```
|
||||||
|
bridge-wifi/
|
||||||
|
src/
|
||||||
|
main.py
|
||||||
|
settings.py
|
||||||
|
wifi_ap.py
|
||||||
|
espnow_wire.py # uplink frame helper only
|
||||||
|
lib/microdot/ # WebSocket server
|
||||||
|
```
|
||||||
|
|
||||||
|
Deploy:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
cd bridge-wifi
|
||||||
|
python ../led-tool/cli.py -p /dev/ttyUSB0 --src --lib -r -f
|
||||||
|
```
|
||||||
|
|
||||||
|
Pi: join bridge AP, `bridge_ws_url` → `ws://192.168.4.1/ws`.
|
||||||
2
bridge-wifi/lib/microdot/__init__.py
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
from microdot.microdot import Microdot, Request, Response, abort, redirect, \
|
||||||
|
send_file # noqa: F401
|
||||||
8
bridge-wifi/lib/microdot/helpers.py
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
try:
|
||||||
|
from functools import wraps
|
||||||
|
except ImportError: # pragma: no cover
|
||||||
|
# MicroPython does not currently implement functools.wraps
|
||||||
|
def wraps(wrapped):
|
||||||
|
def _(wrapper):
|
||||||
|
return wrapper
|
||||||
|
return _
|
||||||
1450
bridge-wifi/lib/microdot/microdot.py
Normal file
225
bridge-wifi/lib/microdot/session.py
Normal file
@@ -0,0 +1,225 @@
|
|||||||
|
try:
|
||||||
|
import jwt
|
||||||
|
HAS_JWT = True
|
||||||
|
except ImportError:
|
||||||
|
HAS_JWT = False
|
||||||
|
try:
|
||||||
|
import ubinascii
|
||||||
|
except ImportError:
|
||||||
|
import binascii as ubinascii
|
||||||
|
try:
|
||||||
|
import uhashlib as hashlib
|
||||||
|
except ImportError:
|
||||||
|
import hashlib
|
||||||
|
try:
|
||||||
|
import uhmac as hmac
|
||||||
|
except ImportError:
|
||||||
|
try:
|
||||||
|
import hmac
|
||||||
|
except ImportError:
|
||||||
|
hmac = None
|
||||||
|
import json
|
||||||
|
|
||||||
|
from microdot.microdot import invoke_handler
|
||||||
|
from microdot.helpers import wraps
|
||||||
|
|
||||||
|
|
||||||
|
class SessionDict(dict):
|
||||||
|
"""A session dictionary.
|
||||||
|
|
||||||
|
The session dictionary is a standard Python dictionary that has been
|
||||||
|
extended with convenience ``save()`` and ``delete()`` methods.
|
||||||
|
"""
|
||||||
|
def __init__(self, request, session_dict):
|
||||||
|
super().__init__(session_dict)
|
||||||
|
self.request = request
|
||||||
|
|
||||||
|
def save(self):
|
||||||
|
"""Update the session cookie."""
|
||||||
|
self.request.app._session.update(self.request, self)
|
||||||
|
|
||||||
|
def delete(self):
|
||||||
|
"""Delete the session cookie."""
|
||||||
|
self.request.app._session.delete(self.request)
|
||||||
|
|
||||||
|
|
||||||
|
class Session:
|
||||||
|
"""Session handling
|
||||||
|
|
||||||
|
:param app: The application instance.
|
||||||
|
:param secret_key: The secret key, as a string or bytes object.
|
||||||
|
:param cookie_options: A dictionary with cookie options to pass as
|
||||||
|
arguments to :meth:`Response.set_cookie()
|
||||||
|
<microdot.Response.set_cookie>`.
|
||||||
|
"""
|
||||||
|
secret_key = None
|
||||||
|
|
||||||
|
def __init__(self, app=None, secret_key=None, cookie_options=None):
|
||||||
|
self.secret_key = secret_key
|
||||||
|
self.cookie_options = cookie_options or {}
|
||||||
|
if app is not None:
|
||||||
|
self.initialize(app)
|
||||||
|
|
||||||
|
def initialize(self, app, secret_key=None, cookie_options=None):
|
||||||
|
if secret_key is not None:
|
||||||
|
self.secret_key = secret_key
|
||||||
|
if cookie_options is not None:
|
||||||
|
self.cookie_options = cookie_options
|
||||||
|
if 'path' not in self.cookie_options:
|
||||||
|
self.cookie_options['path'] = '/'
|
||||||
|
if 'http_only' not in self.cookie_options:
|
||||||
|
self.cookie_options['http_only'] = True
|
||||||
|
app._session = self
|
||||||
|
|
||||||
|
def get(self, request):
|
||||||
|
"""Retrieve the user session.
|
||||||
|
|
||||||
|
:param request: The client request.
|
||||||
|
|
||||||
|
The return value is a session dictionary with the data stored in the
|
||||||
|
user's session, or ``{}`` if the session data is not available or
|
||||||
|
invalid.
|
||||||
|
"""
|
||||||
|
if not self.secret_key:
|
||||||
|
raise ValueError('The session secret key is not configured')
|
||||||
|
if hasattr(request.g, '_session'):
|
||||||
|
return request.g._session
|
||||||
|
session = request.cookies.get('session')
|
||||||
|
if session is None:
|
||||||
|
request.g._session = SessionDict(request, {})
|
||||||
|
return request.g._session
|
||||||
|
request.g._session = SessionDict(request, self.decode(session))
|
||||||
|
return request.g._session
|
||||||
|
|
||||||
|
def update(self, request, session):
|
||||||
|
"""Update the user session.
|
||||||
|
|
||||||
|
:param request: The client request.
|
||||||
|
:param session: A dictionary with the update session data for the user.
|
||||||
|
|
||||||
|
Applications would normally not call this method directly, instead they
|
||||||
|
would use the :meth:`SessionDict.save` method on the session
|
||||||
|
dictionary, which calls this method. For example::
|
||||||
|
|
||||||
|
@app.route('/')
|
||||||
|
@with_session
|
||||||
|
def index(request, session):
|
||||||
|
session['foo'] = 'bar'
|
||||||
|
session.save()
|
||||||
|
return 'Hello, World!'
|
||||||
|
|
||||||
|
Calling this method adds a cookie with the updated session to the
|
||||||
|
request currently being processed.
|
||||||
|
"""
|
||||||
|
if not self.secret_key:
|
||||||
|
raise ValueError('The session secret key is not configured')
|
||||||
|
|
||||||
|
encoded_session = self.encode(session)
|
||||||
|
|
||||||
|
@request.after_request
|
||||||
|
def _update_session(request, response):
|
||||||
|
response.set_cookie('session', encoded_session,
|
||||||
|
**self.cookie_options)
|
||||||
|
return response
|
||||||
|
|
||||||
|
def delete(self, request):
|
||||||
|
"""Remove the user session.
|
||||||
|
|
||||||
|
:param request: The client request.
|
||||||
|
|
||||||
|
Applications would normally not call this method directly, instead they
|
||||||
|
would use the :meth:`SessionDict.delete` method on the session
|
||||||
|
dictionary, which calls this method. For example::
|
||||||
|
|
||||||
|
@app.route('/')
|
||||||
|
@with_session
|
||||||
|
def index(request, session):
|
||||||
|
session.delete()
|
||||||
|
return 'Hello, World!'
|
||||||
|
|
||||||
|
Calling this method adds a cookie removal header to the request
|
||||||
|
currently being processed.
|
||||||
|
"""
|
||||||
|
@request.after_request
|
||||||
|
def _delete_session(request, response):
|
||||||
|
response.delete_cookie('session', **self.cookie_options)
|
||||||
|
return response
|
||||||
|
|
||||||
|
def encode(self, payload, secret_key=None):
|
||||||
|
"""Encode session data using JWT if available, otherwise use simple HMAC."""
|
||||||
|
if HAS_JWT:
|
||||||
|
return jwt.encode(payload, secret_key or self.secret_key,
|
||||||
|
algorithm='HS256')
|
||||||
|
else:
|
||||||
|
# Simple encoding for MicroPython: base64(json) + HMAC signature
|
||||||
|
key = (secret_key or self.secret_key).encode() if isinstance(secret_key or self.secret_key, str) else (secret_key or self.secret_key)
|
||||||
|
payload_json = json.dumps(payload)
|
||||||
|
payload_b64 = ubinascii.b2a_base64(payload_json.encode()).decode().strip()
|
||||||
|
|
||||||
|
# Create HMAC signature
|
||||||
|
if hmac:
|
||||||
|
# Use hmac module if available
|
||||||
|
h = hmac.new(key, payload_json.encode(), hashlib.sha256)
|
||||||
|
else:
|
||||||
|
# Fallback: simple SHA256(key + message)
|
||||||
|
h = hashlib.sha256(key + payload_json.encode())
|
||||||
|
signature = ubinascii.b2a_base64(h.digest()).decode().strip()
|
||||||
|
|
||||||
|
return f"{payload_b64}.{signature}"
|
||||||
|
|
||||||
|
def decode(self, session, secret_key=None):
|
||||||
|
"""Decode session data using JWT if available, otherwise use simple HMAC."""
|
||||||
|
if HAS_JWT:
|
||||||
|
try:
|
||||||
|
payload = jwt.decode(session, secret_key or self.secret_key,
|
||||||
|
algorithms=['HS256'])
|
||||||
|
except jwt.exceptions.PyJWTError: # pragma: no cover
|
||||||
|
return {}
|
||||||
|
return payload
|
||||||
|
else:
|
||||||
|
try:
|
||||||
|
# Simple decoding for MicroPython
|
||||||
|
if '.' not in session:
|
||||||
|
return {}
|
||||||
|
|
||||||
|
payload_b64, signature = session.rsplit('.', 1)
|
||||||
|
payload_json = ubinascii.a2b_base64(payload_b64).decode()
|
||||||
|
|
||||||
|
# Verify HMAC signature
|
||||||
|
key = (secret_key or self.secret_key).encode() if isinstance(secret_key or self.secret_key, str) else (secret_key or self.secret_key)
|
||||||
|
if hmac:
|
||||||
|
# Use hmac module if available
|
||||||
|
h = hmac.new(key, payload_json.encode(), hashlib.sha256)
|
||||||
|
else:
|
||||||
|
# Fallback: simple SHA256(key + message)
|
||||||
|
h = hashlib.sha256(key + payload_json.encode())
|
||||||
|
expected_signature = ubinascii.b2a_base64(h.digest()).decode().strip()
|
||||||
|
|
||||||
|
if signature != expected_signature:
|
||||||
|
return {}
|
||||||
|
|
||||||
|
return json.loads(payload_json)
|
||||||
|
except Exception:
|
||||||
|
return {}
|
||||||
|
|
||||||
|
|
||||||
|
def with_session(f):
|
||||||
|
"""Decorator that passes the user session to the route handler.
|
||||||
|
|
||||||
|
The session dictionary is passed to the decorated function as an argument
|
||||||
|
after the request object. Example::
|
||||||
|
|
||||||
|
@app.route('/')
|
||||||
|
@with_session
|
||||||
|
def index(request, session):
|
||||||
|
return 'Hello, World!'
|
||||||
|
|
||||||
|
Note that the decorator does not save the session. To update the session,
|
||||||
|
call the :func:`session.save() <microdot.session.SessionDict.save>` method.
|
||||||
|
"""
|
||||||
|
@wraps(f)
|
||||||
|
async def wrapper(request, *args, **kwargs):
|
||||||
|
return await invoke_handler(
|
||||||
|
f, request, request.app._session.get(request), *args, **kwargs)
|
||||||
|
|
||||||
|
return wrapper
|
||||||
70
bridge-wifi/lib/microdot/utemplate.py
Normal file
@@ -0,0 +1,70 @@
|
|||||||
|
from utemplate import recompile
|
||||||
|
|
||||||
|
_loader = None
|
||||||
|
|
||||||
|
|
||||||
|
class Template:
|
||||||
|
"""A template object.
|
||||||
|
|
||||||
|
:param template: The filename of the template to render, relative to the
|
||||||
|
configured template directory.
|
||||||
|
"""
|
||||||
|
@classmethod
|
||||||
|
def initialize(cls, template_dir='templates',
|
||||||
|
loader_class=recompile.Loader):
|
||||||
|
"""Initialize the templating subsystem.
|
||||||
|
|
||||||
|
:param template_dir: the directory where templates are stored. This
|
||||||
|
argument is optional. The default is to load
|
||||||
|
templates from a *templates* subdirectory.
|
||||||
|
:param loader_class: the ``utemplate.Loader`` class to use when loading
|
||||||
|
templates. This argument is optional. The default
|
||||||
|
is the ``recompile.Loader`` class, which
|
||||||
|
automatically recompiles templates when they
|
||||||
|
change.
|
||||||
|
"""
|
||||||
|
global _loader
|
||||||
|
_loader = loader_class(None, template_dir)
|
||||||
|
|
||||||
|
def __init__(self, template):
|
||||||
|
if _loader is None: # pragma: no cover
|
||||||
|
self.initialize()
|
||||||
|
#: The name of the template
|
||||||
|
self.name = template
|
||||||
|
self.template = _loader.load(template)
|
||||||
|
|
||||||
|
def generate(self, *args, **kwargs):
|
||||||
|
"""Return a generator that renders the template in chunks, with the
|
||||||
|
given arguments."""
|
||||||
|
return self.template(*args, **kwargs)
|
||||||
|
|
||||||
|
def render(self, *args, **kwargs):
|
||||||
|
"""Render the template with the given arguments and return it as a
|
||||||
|
string."""
|
||||||
|
return ''.join(self.generate(*args, **kwargs))
|
||||||
|
|
||||||
|
def generate_async(self, *args, **kwargs):
|
||||||
|
"""Return an asynchronous generator that renders the template in
|
||||||
|
chunks, using the given arguments."""
|
||||||
|
class sync_to_async_iter():
|
||||||
|
def __init__(self, iter):
|
||||||
|
self.iter = iter
|
||||||
|
|
||||||
|
def __aiter__(self):
|
||||||
|
return self
|
||||||
|
|
||||||
|
async def __anext__(self):
|
||||||
|
try:
|
||||||
|
return next(self.iter)
|
||||||
|
except StopIteration:
|
||||||
|
raise StopAsyncIteration
|
||||||
|
|
||||||
|
return sync_to_async_iter(self.generate(*args, **kwargs))
|
||||||
|
|
||||||
|
async def render_async(self, *args, **kwargs):
|
||||||
|
"""Render the template with the given arguments asynchronously and
|
||||||
|
return it as a string."""
|
||||||
|
response = ''
|
||||||
|
async for chunk in self.generate_async(*args, **kwargs):
|
||||||
|
response += chunk
|
||||||
|
return response
|
||||||
231
bridge-wifi/lib/microdot/websocket.py
Normal file
@@ -0,0 +1,231 @@
|
|||||||
|
import binascii
|
||||||
|
import hashlib
|
||||||
|
from microdot import Request, Response
|
||||||
|
from microdot.microdot import MUTED_SOCKET_ERRORS, print_exception
|
||||||
|
from microdot.helpers import wraps
|
||||||
|
|
||||||
|
|
||||||
|
class WebSocketError(Exception):
|
||||||
|
"""Exception raised when an error occurs in a WebSocket connection."""
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
class WebSocket:
|
||||||
|
"""A WebSocket connection object.
|
||||||
|
|
||||||
|
An instance of this class is sent to handler functions to manage the
|
||||||
|
WebSocket connection.
|
||||||
|
"""
|
||||||
|
CONT = 0
|
||||||
|
TEXT = 1
|
||||||
|
BINARY = 2
|
||||||
|
CLOSE = 8
|
||||||
|
PING = 9
|
||||||
|
PONG = 10
|
||||||
|
|
||||||
|
#: Specify the maximum message size that can be received when calling the
|
||||||
|
#: ``receive()`` method. Messages with payloads that are larger than this
|
||||||
|
#: size will be rejected and the connection closed. Set to 0 to disable
|
||||||
|
#: the size check (be aware of potential security issues if you do this),
|
||||||
|
#: or to -1 to use the value set in
|
||||||
|
#: ``Request.max_body_length``. The default is -1.
|
||||||
|
#:
|
||||||
|
#: Example::
|
||||||
|
#:
|
||||||
|
#: WebSocket.max_message_length = 4 * 1024 # up to 4KB messages
|
||||||
|
max_message_length = -1
|
||||||
|
|
||||||
|
def __init__(self, request):
|
||||||
|
self.request = request
|
||||||
|
self.closed = False
|
||||||
|
|
||||||
|
async def handshake(self):
|
||||||
|
response = self._handshake_response()
|
||||||
|
await self.request.sock[1].awrite(
|
||||||
|
b'HTTP/1.1 101 Switching Protocols\r\n')
|
||||||
|
await self.request.sock[1].awrite(b'Upgrade: websocket\r\n')
|
||||||
|
await self.request.sock[1].awrite(b'Connection: Upgrade\r\n')
|
||||||
|
await self.request.sock[1].awrite(
|
||||||
|
b'Sec-WebSocket-Accept: ' + response + b'\r\n\r\n')
|
||||||
|
|
||||||
|
async def receive(self):
|
||||||
|
"""Receive a message from the client."""
|
||||||
|
while True:
|
||||||
|
opcode, payload = await self._read_frame()
|
||||||
|
send_opcode, data = self._process_websocket_frame(opcode, payload)
|
||||||
|
if send_opcode: # pragma: no cover
|
||||||
|
await self.send(data, send_opcode)
|
||||||
|
elif data: # pragma: no branch
|
||||||
|
return data
|
||||||
|
|
||||||
|
async def send(self, data, opcode=None):
|
||||||
|
"""Send a message to the client.
|
||||||
|
|
||||||
|
:param data: the data to send, given as a string or bytes.
|
||||||
|
:param opcode: a custom frame opcode to use. If not given, the opcode
|
||||||
|
is ``TEXT`` or ``BINARY`` depending on the type of the
|
||||||
|
data.
|
||||||
|
"""
|
||||||
|
frame = self._encode_websocket_frame(
|
||||||
|
opcode or (self.TEXT if isinstance(data, str) else self.BINARY),
|
||||||
|
data)
|
||||||
|
await self.request.sock[1].awrite(frame)
|
||||||
|
|
||||||
|
async def close(self):
|
||||||
|
"""Close the websocket connection."""
|
||||||
|
if not self.closed: # pragma: no cover
|
||||||
|
self.closed = True
|
||||||
|
await self.send(b'', self.CLOSE)
|
||||||
|
|
||||||
|
def _handshake_response(self):
|
||||||
|
connection = False
|
||||||
|
upgrade = False
|
||||||
|
websocket_key = None
|
||||||
|
for header, value in self.request.headers.items():
|
||||||
|
h = header.lower()
|
||||||
|
if h == 'connection':
|
||||||
|
connection = True
|
||||||
|
if 'upgrade' not in value.lower():
|
||||||
|
return self.request.app.abort(400)
|
||||||
|
elif h == 'upgrade':
|
||||||
|
upgrade = True
|
||||||
|
if not value.lower() == 'websocket':
|
||||||
|
return self.request.app.abort(400)
|
||||||
|
elif h == 'sec-websocket-key':
|
||||||
|
websocket_key = value
|
||||||
|
if not connection or not upgrade or not websocket_key:
|
||||||
|
return self.request.app.abort(400)
|
||||||
|
d = hashlib.sha1(websocket_key.encode())
|
||||||
|
d.update(b'258EAFA5-E914-47DA-95CA-C5AB0DC85B11')
|
||||||
|
return binascii.b2a_base64(d.digest())[:-1]
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def _parse_frame_header(cls, header):
|
||||||
|
fin = header[0] & 0x80
|
||||||
|
opcode = header[0] & 0x0f
|
||||||
|
if fin == 0 or opcode == cls.CONT: # pragma: no cover
|
||||||
|
raise WebSocketError('Continuation frames not supported')
|
||||||
|
has_mask = header[1] & 0x80
|
||||||
|
length = header[1] & 0x7f
|
||||||
|
if length == 126:
|
||||||
|
length = -2
|
||||||
|
elif length == 127:
|
||||||
|
length = -8
|
||||||
|
return fin, opcode, has_mask, length
|
||||||
|
|
||||||
|
def _process_websocket_frame(self, opcode, payload):
|
||||||
|
if opcode == self.TEXT:
|
||||||
|
payload = payload.decode()
|
||||||
|
elif opcode == self.BINARY:
|
||||||
|
pass
|
||||||
|
elif opcode == self.CLOSE:
|
||||||
|
raise WebSocketError('Websocket connection closed')
|
||||||
|
elif opcode == self.PING:
|
||||||
|
return self.PONG, payload
|
||||||
|
elif opcode == self.PONG: # pragma: no branch
|
||||||
|
return None, None
|
||||||
|
return None, payload
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def _encode_websocket_frame(cls, opcode, payload):
|
||||||
|
frame = bytearray()
|
||||||
|
frame.append(0x80 | opcode)
|
||||||
|
if opcode == cls.TEXT:
|
||||||
|
payload = payload.encode()
|
||||||
|
if len(payload) < 126:
|
||||||
|
frame.append(len(payload))
|
||||||
|
elif len(payload) < (1 << 16):
|
||||||
|
frame.append(126)
|
||||||
|
frame.extend(len(payload).to_bytes(2, 'big'))
|
||||||
|
else:
|
||||||
|
frame.append(127)
|
||||||
|
frame.extend(len(payload).to_bytes(8, 'big'))
|
||||||
|
frame.extend(payload)
|
||||||
|
return frame
|
||||||
|
|
||||||
|
async def _read_frame(self):
|
||||||
|
header = await self.request.sock[0].read(2)
|
||||||
|
if len(header) != 2: # pragma: no cover
|
||||||
|
raise WebSocketError('Websocket connection closed')
|
||||||
|
fin, opcode, has_mask, length = self._parse_frame_header(header)
|
||||||
|
if length == -2:
|
||||||
|
length = await self.request.sock[0].read(2)
|
||||||
|
length = int.from_bytes(length, 'big')
|
||||||
|
elif length == -8:
|
||||||
|
length = await self.request.sock[0].read(8)
|
||||||
|
length = int.from_bytes(length, 'big')
|
||||||
|
max_allowed_length = Request.max_body_length \
|
||||||
|
if self.max_message_length == -1 else self.max_message_length
|
||||||
|
if length > max_allowed_length:
|
||||||
|
raise WebSocketError('Message too large')
|
||||||
|
if has_mask: # pragma: no cover
|
||||||
|
mask = await self.request.sock[0].read(4)
|
||||||
|
payload = await self.request.sock[0].read(length)
|
||||||
|
if has_mask: # pragma: no cover
|
||||||
|
payload = bytes(x ^ mask[i % 4] for i, x in enumerate(payload))
|
||||||
|
return opcode, payload
|
||||||
|
|
||||||
|
|
||||||
|
async def websocket_upgrade(request):
|
||||||
|
"""Upgrade a request handler to a websocket connection.
|
||||||
|
|
||||||
|
This function can be called directly inside a route function to process a
|
||||||
|
WebSocket upgrade handshake, for example after the user's credentials are
|
||||||
|
verified. The function returns the websocket object::
|
||||||
|
|
||||||
|
@app.route('/echo')
|
||||||
|
async def echo(request):
|
||||||
|
if not authenticate_user(request):
|
||||||
|
abort(401)
|
||||||
|
ws = await websocket_upgrade(request)
|
||||||
|
while True:
|
||||||
|
message = await ws.receive()
|
||||||
|
await ws.send(message)
|
||||||
|
"""
|
||||||
|
ws = WebSocket(request)
|
||||||
|
await ws.handshake()
|
||||||
|
|
||||||
|
@request.after_request
|
||||||
|
async def after_request(request, response):
|
||||||
|
return Response.already_handled
|
||||||
|
|
||||||
|
return ws
|
||||||
|
|
||||||
|
|
||||||
|
def websocket_wrapper(f, upgrade_function):
|
||||||
|
@wraps(f)
|
||||||
|
async def wrapper(request, *args, **kwargs):
|
||||||
|
ws = await upgrade_function(request)
|
||||||
|
try:
|
||||||
|
await f(request, ws, *args, **kwargs)
|
||||||
|
except OSError as exc:
|
||||||
|
if exc.errno not in MUTED_SOCKET_ERRORS: # pragma: no cover
|
||||||
|
raise
|
||||||
|
except WebSocketError:
|
||||||
|
pass
|
||||||
|
except Exception as exc:
|
||||||
|
print_exception(exc)
|
||||||
|
finally: # pragma: no cover
|
||||||
|
try:
|
||||||
|
await ws.close()
|
||||||
|
except Exception:
|
||||||
|
pass
|
||||||
|
return Response.already_handled
|
||||||
|
return wrapper
|
||||||
|
|
||||||
|
|
||||||
|
def with_websocket(f):
|
||||||
|
"""Decorator to make a route a WebSocket endpoint.
|
||||||
|
|
||||||
|
This decorator is used to define a route that accepts websocket
|
||||||
|
connections. The route then receives a websocket object as a second
|
||||||
|
argument that it can use to send and receive messages::
|
||||||
|
|
||||||
|
@app.route('/echo')
|
||||||
|
@with_websocket
|
||||||
|
async def echo(request, ws):
|
||||||
|
while True:
|
||||||
|
message = await ws.receive()
|
||||||
|
await ws.send(message)
|
||||||
|
"""
|
||||||
|
return websocket_wrapper(f, websocket_upgrade)
|
||||||
7
bridge-wifi/src/espnow_wire.py
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
"""WebSocket uplink framing (Pi ↔ bridge)."""
|
||||||
|
|
||||||
|
BROADCAST_MAC = b"\xff\xff\xff\xff\xff\xff"
|
||||||
|
|
||||||
|
|
||||||
|
def pack_ws_uplink(peer, espnow_packet):
|
||||||
|
return bytes([0]) + peer + espnow_packet
|
||||||
218
bridge-wifi/src/main.py
Normal file
@@ -0,0 +1,218 @@
|
|||||||
|
"""ESP-NOW bridge: Pi WebSocket downlink, ESP-NOW to drivers."""
|
||||||
|
|
||||||
|
import asyncio
|
||||||
|
import gc
|
||||||
|
import json
|
||||||
|
import time
|
||||||
|
|
||||||
|
import espnow
|
||||||
|
import machine
|
||||||
|
from espnow_wire import BROADCAST_MAC, pack_ws_uplink
|
||||||
|
from microdot import Microdot
|
||||||
|
from microdot.websocket import WebSocketError, with_websocket
|
||||||
|
from settings import Settings
|
||||||
|
from wifi_ap import init_bridge_network
|
||||||
|
|
||||||
|
BROADCAST = BROADCAST_MAC
|
||||||
|
WIRE = 0x4C
|
||||||
|
MAX_ESPNOW = 250
|
||||||
|
ESPNOW_EXIST = -12395
|
||||||
|
ESPNOW_FULL = -12392
|
||||||
|
|
||||||
|
|
||||||
|
def mac_str(mac):
|
||||||
|
return ":".join("%02x" % b for b in mac)
|
||||||
|
|
||||||
|
|
||||||
|
def dbg(msg):
|
||||||
|
if DEBUG:
|
||||||
|
print(msg)
|
||||||
|
|
||||||
|
|
||||||
|
def add_peer_if_needed(esp, dest, ch):
|
||||||
|
try:
|
||||||
|
esp.add_peer(dest, channel=ch)
|
||||||
|
dbg("peer add " + mac_str(dest))
|
||||||
|
except TypeError:
|
||||||
|
try:
|
||||||
|
esp.add_peer(dest)
|
||||||
|
dbg("peer add " + mac_str(dest))
|
||||||
|
except OSError as e:
|
||||||
|
if e.args[0] != ESPNOW_EXIST:
|
||||||
|
raise
|
||||||
|
dbg("peer exists " + mac_str(dest))
|
||||||
|
except OSError as e:
|
||||||
|
if e.args[0] != ESPNOW_EXIST:
|
||||||
|
raise
|
||||||
|
dbg("peer exists " + mac_str(dest))
|
||||||
|
|
||||||
|
|
||||||
|
def del_peer_if_present(esp, dest):
|
||||||
|
try:
|
||||||
|
esp.del_peer(dest)
|
||||||
|
dbg("peer del " + mac_str(dest))
|
||||||
|
except Exception as e:
|
||||||
|
dbg("peer del skip " + mac_str(dest) + " " + repr(e))
|
||||||
|
|
||||||
|
|
||||||
|
def send_espnow(esp, dest, pkt):
|
||||||
|
try:
|
||||||
|
esp.send(dest, pkt, True)
|
||||||
|
return True
|
||||||
|
except OSError as e:
|
||||||
|
label = "bcast" if dest == BROADCAST else mac_str(dest)
|
||||||
|
print("send err", label, len(pkt), e)
|
||||||
|
return False
|
||||||
|
|
||||||
|
|
||||||
|
def send_unicast_temp_peer(esp, dest, ch, pkt):
|
||||||
|
try:
|
||||||
|
add_peer_if_needed(esp, dest, ch)
|
||||||
|
except OSError as e:
|
||||||
|
# If peer table is full but this peer already exists, delete+retry once.
|
||||||
|
if e.args and e.args[0] == ESPNOW_FULL:
|
||||||
|
dbg("peer full " + mac_str(dest) + " retry")
|
||||||
|
del_peer_if_present(esp, dest)
|
||||||
|
add_peer_if_needed(esp, dest, ch)
|
||||||
|
else:
|
||||||
|
raise
|
||||||
|
ok = send_espnow(esp, dest, pkt)
|
||||||
|
del_peer_if_present(esp, dest)
|
||||||
|
return ok
|
||||||
|
|
||||||
|
|
||||||
|
def downlink(esp, ch, raw):
|
||||||
|
n = len(raw)
|
||||||
|
if not raw:
|
||||||
|
return
|
||||||
|
if raw[0] == WIRE:
|
||||||
|
if n < 2:
|
||||||
|
dbg("dl skip wire short " + str(n))
|
||||||
|
return
|
||||||
|
dbg("dl wire bcast " + str(n))
|
||||||
|
send_espnow(esp, BROADCAST, raw)
|
||||||
|
return
|
||||||
|
if n < 8 or raw[0] != ord("{"):
|
||||||
|
dbg("dl skip json " + str(n))
|
||||||
|
return
|
||||||
|
try:
|
||||||
|
data = json.loads(raw)
|
||||||
|
except ValueError:
|
||||||
|
dbg("dl skip json")
|
||||||
|
return
|
||||||
|
devs = data.get("dv") or data.get("devices")
|
||||||
|
if data.get("v") != "1" or not isinstance(devs, dict):
|
||||||
|
dbg("dl skip envelope")
|
||||||
|
return
|
||||||
|
dbg("dl env " + str(len(devs)) + " dev")
|
||||||
|
for mac_s, body in devs.items():
|
||||||
|
if not isinstance(body, dict):
|
||||||
|
dbg("dl skip body " + str(mac_s))
|
||||||
|
continue
|
||||||
|
try:
|
||||||
|
h = str(mac_s).replace(":", "").replace("-", "").strip().lower()
|
||||||
|
dest = BROADCAST if h == "ffffffffffff" else bytes.fromhex(h)
|
||||||
|
msg = {"v": "1"}
|
||||||
|
msg.update(body)
|
||||||
|
pkt = json.dumps(msg, separators=(",", ":")).encode()
|
||||||
|
if len(pkt) > MAX_ESPNOW:
|
||||||
|
dbg("dl skip big " + str(len(pkt)))
|
||||||
|
continue
|
||||||
|
except (ValueError, TypeError):
|
||||||
|
dbg("dl skip mac " + str(mac_s))
|
||||||
|
continue
|
||||||
|
if dest == BROADCAST:
|
||||||
|
dbg("dl bcast " + str(len(pkt)))
|
||||||
|
send_espnow(esp, BROADCAST, pkt)
|
||||||
|
else:
|
||||||
|
dbg("dl uni " + mac_str(dest) + " " + str(len(pkt)))
|
||||||
|
send_unicast_temp_peer(esp, dest, ch, pkt)
|
||||||
|
time.sleep_ms(5)
|
||||||
|
|
||||||
|
|
||||||
|
gc.collect()
|
||||||
|
settings = Settings()
|
||||||
|
DEBUG = bool(settings.get("debug", True))
|
||||||
|
ch = max(1, min(11, int(settings.get("wifi_channel", 5))))
|
||||||
|
init_bridge_network(settings)
|
||||||
|
|
||||||
|
esp = espnow.ESPNow()
|
||||||
|
esp.active(True)
|
||||||
|
add_peer_if_needed(esp, BROADCAST, ch)
|
||||||
|
print(
|
||||||
|
"bridge-wifi ch",
|
||||||
|
ch,
|
||||||
|
"debug",
|
||||||
|
DEBUG,
|
||||||
|
"heap",
|
||||||
|
gc.mem_free(),
|
||||||
|
"ws",
|
||||||
|
int(settings.get("ws_port", 80)),
|
||||||
|
)
|
||||||
|
|
||||||
|
app = Microdot()
|
||||||
|
clients = set()
|
||||||
|
wdt = machine.WDT(timeout=10000)
|
||||||
|
|
||||||
|
|
||||||
|
@app.route("/ws")
|
||||||
|
@with_websocket
|
||||||
|
async def ws_handler(request, ws):
|
||||||
|
clients.add(ws)
|
||||||
|
print("ws client +", len(clients))
|
||||||
|
try:
|
||||||
|
while True:
|
||||||
|
try:
|
||||||
|
raw = await ws.receive()
|
||||||
|
except WebSocketError:
|
||||||
|
dbg("ws closed")
|
||||||
|
break
|
||||||
|
if not raw:
|
||||||
|
dbg("ws empty")
|
||||||
|
break
|
||||||
|
if isinstance(raw, str):
|
||||||
|
raw = raw.encode("utf-8")
|
||||||
|
dbg("ws rx " + str(len(raw)))
|
||||||
|
try:
|
||||||
|
downlink(esp, ch, raw)
|
||||||
|
except OSError as e:
|
||||||
|
print("dl err", e)
|
||||||
|
finally:
|
||||||
|
clients.discard(ws)
|
||||||
|
print("ws client -", len(clients))
|
||||||
|
|
||||||
|
|
||||||
|
async def espnow_rx_loop():
|
||||||
|
while True:
|
||||||
|
host, msg = esp.recv(0)
|
||||||
|
if host:
|
||||||
|
dbg("up " + mac_str(host) + " " + str(len(msg)))
|
||||||
|
frame = pack_ws_uplink(host, msg)
|
||||||
|
dead = []
|
||||||
|
sent = 0
|
||||||
|
for ws in list(clients):
|
||||||
|
try:
|
||||||
|
await ws.send(frame)
|
||||||
|
sent += 1
|
||||||
|
except Exception as e:
|
||||||
|
dbg("ws up err " + repr(e))
|
||||||
|
dead.append(ws)
|
||||||
|
for ws in dead:
|
||||||
|
clients.discard(ws)
|
||||||
|
if not clients:
|
||||||
|
dbg("up no ws clients")
|
||||||
|
else:
|
||||||
|
dbg("up ws " + str(sent) + "/" + str(len(clients)))
|
||||||
|
else:
|
||||||
|
await asyncio.sleep_ms(1)
|
||||||
|
wdt.feed()
|
||||||
|
|
||||||
|
|
||||||
|
async def main():
|
||||||
|
asyncio.create_task(espnow_rx_loop())
|
||||||
|
port = int(settings.get("ws_port", 80))
|
||||||
|
print("ws listen", port)
|
||||||
|
await app.start_server(host="0.0.0.0", port=port)
|
||||||
|
|
||||||
|
|
||||||
|
asyncio.run(main())
|
||||||
60
bridge-wifi/src/settings.py
Normal file
@@ -0,0 +1,60 @@
|
|||||||
|
import json
|
||||||
|
import time
|
||||||
|
import ubinascii
|
||||||
|
import network
|
||||||
|
|
||||||
|
WIFI_CHANNEL_DEFAULT = 5
|
||||||
|
|
||||||
|
|
||||||
|
def _sta_mac_hex():
|
||||||
|
sta = network.WLAN(network.STA_IF)
|
||||||
|
was_on = sta.active()
|
||||||
|
if not was_on:
|
||||||
|
sta.active(True)
|
||||||
|
time.sleep_ms(50)
|
||||||
|
try:
|
||||||
|
mac = ubinascii.hexlify(sta.config("mac")).decode().lower()
|
||||||
|
except Exception:
|
||||||
|
mac = "000000000000"
|
||||||
|
if not was_on:
|
||||||
|
sta.active(False)
|
||||||
|
return mac
|
||||||
|
|
||||||
|
|
||||||
|
class Settings(dict):
|
||||||
|
SETTINGS_FILE = "/settings.json"
|
||||||
|
|
||||||
|
def __init__(self):
|
||||||
|
super().__init__()
|
||||||
|
self.load()
|
||||||
|
|
||||||
|
def set_defaults(self):
|
||||||
|
self["name"] = "bridge-" + _sta_mac_hex()
|
||||||
|
self["wifi_channel"] = WIFI_CHANNEL_DEFAULT
|
||||||
|
self["ap_password"] = ""
|
||||||
|
self["ap_ip"] = "192.168.4.1"
|
||||||
|
self["ws_port"] = 80
|
||||||
|
self["debug"] = True
|
||||||
|
|
||||||
|
def save(self):
|
||||||
|
try:
|
||||||
|
with open(self.SETTINGS_FILE, "w") as f:
|
||||||
|
f.write(json.dumps(self))
|
||||||
|
except Exception as e:
|
||||||
|
print("save settings:", e)
|
||||||
|
|
||||||
|
def load(self):
|
||||||
|
try:
|
||||||
|
with open(self.SETTINGS_FILE, "r") as f:
|
||||||
|
loaded = json.load(f)
|
||||||
|
if not isinstance(loaded, dict):
|
||||||
|
raise ValueError("not object")
|
||||||
|
except Exception:
|
||||||
|
self.clear()
|
||||||
|
self.set_defaults()
|
||||||
|
self.save()
|
||||||
|
return
|
||||||
|
self.clear()
|
||||||
|
self.set_defaults()
|
||||||
|
for k, v in loaded.items():
|
||||||
|
self[k] = v
|
||||||
52
bridge-wifi/src/wifi_ap.py
Normal file
@@ -0,0 +1,52 @@
|
|||||||
|
"""AP + STA for ESP-NOW; Pi joins the AP for WebSocket."""
|
||||||
|
|
||||||
|
import time
|
||||||
|
|
||||||
|
import network
|
||||||
|
|
||||||
|
from settings import WIFI_CHANNEL_DEFAULT
|
||||||
|
|
||||||
|
|
||||||
|
def _channel(settings):
|
||||||
|
try:
|
||||||
|
return max(1, min(11, int(settings.get("wifi_channel", WIFI_CHANNEL_DEFAULT))))
|
||||||
|
except (TypeError, ValueError):
|
||||||
|
return WIFI_CHANNEL_DEFAULT
|
||||||
|
|
||||||
|
|
||||||
|
def init_bridge_network(settings):
|
||||||
|
ch = _channel(settings)
|
||||||
|
essid = settings.get("name") or "bridge"
|
||||||
|
password = settings.get("ap_password") or ""
|
||||||
|
ap_ip = settings.get("ap_ip") or "192.168.4.1"
|
||||||
|
|
||||||
|
sta = network.WLAN(network.STA_IF)
|
||||||
|
ap = network.WLAN(network.AP_IF)
|
||||||
|
sta.active(False)
|
||||||
|
ap.active(False)
|
||||||
|
time.sleep_ms(100)
|
||||||
|
|
||||||
|
ap.active(True)
|
||||||
|
time.sleep_ms(50)
|
||||||
|
if password:
|
||||||
|
try:
|
||||||
|
ap.config(essid=essid, password=password, channel=ch)
|
||||||
|
except TypeError:
|
||||||
|
ap.config(essid=essid, channel=ch)
|
||||||
|
else:
|
||||||
|
ap.config(essid=essid, channel=ch)
|
||||||
|
try:
|
||||||
|
ap.ifconfig((ap_ip, "255.255.255.0", ap_ip, "8.8.8.8"))
|
||||||
|
except Exception:
|
||||||
|
pass
|
||||||
|
|
||||||
|
sta.active(True)
|
||||||
|
sta.config(pm=network.WLAN.PM_NONE)
|
||||||
|
try:
|
||||||
|
sta.config(channel=ch)
|
||||||
|
except Exception:
|
||||||
|
pass
|
||||||
|
|
||||||
|
port = int(settings.get("ws_port", 80))
|
||||||
|
print("bridge AP", essid, "ch", ch, "ip", ap.ifconfig()[0])
|
||||||
|
print("bridge_ws_url: ws://%s:%s/ws" % (ap_ip, port))
|
||||||
110
docs/API.md
@@ -3,11 +3,13 @@
|
|||||||
This document covers:
|
This document covers:
|
||||||
|
|
||||||
1. **HTTP and WebSocket** exposed by the Raspberry Pi app (`src/main.py`) — profiles, zones, presets, transport send, pattern OTA helpers, and related resources.
|
1. **HTTP and WebSocket** exposed by the Raspberry Pi app (`src/main.py`) — profiles, zones, presets, transport send, pattern OTA helpers, and related resources.
|
||||||
2. **LED driver JSON** — the compact **v1** message format. It is sent over the **serial → ESP-NOW bridge** to ESP32 peers and as **single JSON text messages** over the **outbound WebSocket** to **Wi-Fi** drivers (same logical fields).
|
2. **LED driver JSON** — the compact **v1** message format. ESP-NOW traffic is wrapped in a **devices envelope** (`dv` map keyed by MAC) on the Pi ↔ bridge link (WebSocket or USB serial); drivers receive compact per-device bodies (≤250 bytes). **Wi-Fi** drivers still accept **single JSON text messages** over an outbound WebSocket (same logical fields).
|
||||||
|
|
||||||
Default HTTP listen address: `0.0.0.0`. Port defaults to **80**; override with the **`PORT`** environment variable (see `pipenv run run`).
|
Default HTTP listen address: `0.0.0.0`. Port defaults to **80**; override with the **`PORT`** environment variable (see `pipenv run run`).
|
||||||
|
|
||||||
**Serial:** UART path and baud come from settings (defaults include `serial_port` such as `/dev/ttyS0` and `serial_baudrate`). **Wi-Fi drivers:** **UDP** on port **8766** is the **discovery** channel: each driver’s JSON hello (**`device_name`**, **MAC**, optional **`type`**) **creates or updates** that device in **`db/device.json`** (keyed by MAC); the Pi echoes the datagram. After a valid hello with **`v`:** **`"1"`**, the Pi also opens an **outbound WebSocket** to that IP (**`wifi_driver_ws_port`**, default **80**; **`wifi_driver_ws_path`**, default **`/ws`**) for v1 commands; presets are not pushed automatically on connect (use **Send Presets** / profile apply). The Pi may send periodic UDP **hello** nudges to known Wi‑Fi device IPs when the WebSocket is down (**`wifi_driver_hello_interval_s`** in settings).
|
**ESP-NOW bridge:** Set **`bridge_transport`** to **`wifi`** (default) or **`serial`**. Wi‑Fi mode uses **`bridge_ws_url`** (e.g. `ws://192.168.4.1/ws`) after joining the bridge AP; serial mode uses **`bridge_serial_port`** and **`bridge_serial_baudrate`** (default **921600**). Saved bridge profiles and connect helpers live under **`/settings/wifi/*`** (see below). Architecture: [espnow-architecture.md](espnow-architecture.md).
|
||||||
|
|
||||||
|
**Wi-Fi drivers (optional):** **UDP** on port **8766** is the **discovery** channel: each driver’s JSON hello (**`device_name`**, **MAC**, optional **`type`**) **creates or updates** that device in **`db/device.json`** (keyed by MAC); the Pi echoes the datagram. After a valid hello with **`v`:** **`"1"`**, the Pi also opens an **outbound WebSocket** to that IP (**`wifi_driver_ws_port`**, default **80**; **`wifi_driver_ws_path`**, default **`/ws`**) for v1 commands; presets are not pushed automatically on connect (use **Send Presets** / profile apply). The Pi may send periodic UDP **hello** nudges to known Wi‑Fi device IPs when the WebSocket is down (**`wifi_driver_hello_interval_s`** in settings).
|
||||||
|
|
||||||
All JSON APIs use `Content-Type: application/json` for bodies and responses unless noted.
|
All JSON APIs use `Content-Type: application/json` for bodies and responses unless noted.
|
||||||
|
|
||||||
@@ -52,7 +54,7 @@ Profiles are selected with **`POST /profiles/<id>/apply`**, which sets `current_
|
|||||||
|
|
||||||
Connect to **`ws://<host>:<port>/ws`**.
|
Connect to **`ws://<host>:<port>/ws`**.
|
||||||
|
|
||||||
- Send **JSON**: the object is forwarded through the **serial sender** (6-byte MAC prefix + payload to the ESP-NOW bridge). Optional key **`to`**: 12-character hex MAC address; if present it is removed from the object and the payload is sent to that peer; otherwise the default destination from settings is used.
|
- Send **JSON**: the object is forwarded through the **ESP-NOW bridge** as a **devices envelope** (or legacy MAC-prefixed / binary payload). Optional key **`to`**: 12-character hex MAC address; if present it is removed from the object and the payload is sent to that peer; otherwise the default destination from settings is used. Example envelope: [msg.json](msg.json).
|
||||||
- Send **non-JSON text**: forwarded as raw bytes with the default address.
|
- Send **non-JSON text**: forwarded as raw bytes with the default address.
|
||||||
- On send failure, the server may reply with `{"error": "Send failed"}`.
|
- On send failure, the server may reply with `{"error": "Send failed"}`.
|
||||||
|
|
||||||
@@ -62,7 +64,7 @@ Wi-Fi devices are not targeted by `/ws` directly; use **`POST /presets/send`**,
|
|||||||
|
|
||||||
## HTTP API by resource
|
## HTTP API by resource
|
||||||
|
|
||||||
Below, `<id>` values are string identifiers used by the JSON stores (numeric strings in practice).
|
Below, `<id>` values are string identifiers used by the JSON stores. **Device** ids are **12-character lowercase hex MACs** (no colons); other resources typically use numeric string ids.
|
||||||
|
|
||||||
### Settings — `/settings`
|
### Settings — `/settings`
|
||||||
|
|
||||||
@@ -74,28 +76,46 @@ Below, `<id>` values are string identifiers used by the JSON stores (numeric str
|
|||||||
| POST | `/settings/wifi/ap` | Body: `ssid` (required), `password`, `channel` (1–11). Persists AP-related settings. |
|
| POST | `/settings/wifi/ap` | Body: `ssid` (required), `password`, `channel` (1–11). Persists AP-related settings. |
|
||||||
| GET | `/settings/page` | Serves `templates/settings.html`. |
|
| GET | `/settings/page` | Serves `templates/settings.html`. |
|
||||||
|
|
||||||
### Devices — `/devices`
|
### Bridge — `/settings/wifi`
|
||||||
|
|
||||||
Registry in `db/device.json`: storage key **`<id>`** (string, e.g. `"1"`) maps to an object that always includes:
|
Pi-side bridge configuration (ESP-NOW path to drivers). Mounted from `controllers/wifi_bridge.py`.
|
||||||
|
|
||||||
| Field | Description |
|
|
||||||
|-------|-------------|
|
|
||||||
| **`id`** | Same as the storage key (stable handle for URLs). |
|
|
||||||
| **`name`** | Shown in the UI and used in `select` keys. |
|
|
||||||
| **`type`** | `led` (only value today; extensible). |
|
|
||||||
| **`transport`** | `espnow` or `wifi`. |
|
|
||||||
| **`address`** | For **`espnow`**: optional 12-character lowercase hex MAC. For **`wifi`**: optional IP or hostname string. |
|
|
||||||
| **`default_pattern`**, **`zones`** | Optional. Legacy **`tabs`** may still appear in old files and is migrated away on load. |
|
|
||||||
|
|
||||||
Existing records without `type` / `transport` / `id` are backfilled on load (`led`, `espnow`, and `id` = key).
|
|
||||||
|
|
||||||
| Method | Path | Description |
|
| Method | Path | Description |
|
||||||
|--------|------|-------------|
|
|--------|------|-------------|
|
||||||
| GET | `/devices` | Map of device id → device object. |
|
| GET | `/settings/wifi/interfaces` | List Wi‑Fi interfaces via NetworkManager (`nmcli`). |
|
||||||
|
| GET | `/settings/wifi/scan?device=<ifname>` | Scan SSIDs on the given interface. |
|
||||||
|
| GET | `/settings/wifi/bridges` | Bridge state: `bridge_transport`, `bridge_ws_url`, `bridge_connected`, `wifi_interface`, saved **`bridges`** profiles, serial port/baud. |
|
||||||
|
| PUT | `/settings/wifi/bridges` | Merge bridge settings and/or replace the **`bridges`** profile list. |
|
||||||
|
| DELETE | `/settings/wifi/bridges/<id>` | Remove a saved bridge profile. |
|
||||||
|
| POST | `/settings/wifi/bridges/<id>/connect` | Connect using a saved profile (`transport`: `wifi` or `serial`). |
|
||||||
|
| POST | `/settings/wifi/connect` | Join a bridge AP and open its WebSocket. Body: `device`, `ssid`, optional `password`, `ap_ip` (default `192.168.4.1`), `ws_port`, `label`, `save_profile`. |
|
||||||
|
| POST | `/settings/wifi/serial/connect` | Open the bridge over USB serial. Body: `port`, optional `baudrate`, `label`, `save_profile`. |
|
||||||
|
|
||||||
|
### Devices — `/devices`
|
||||||
|
|
||||||
|
Registry in `db/device.json`: storage key **`<id>`** is the device **MAC** (12 lowercase hex characters, no colons). Each record includes:
|
||||||
|
|
||||||
|
| Field | Description |
|
||||||
|
|-------|-------------|
|
||||||
|
| **`id`** | Same as the storage key (12-char hex MAC). |
|
||||||
|
| **`name`** | Shown in the UI; matched when building zone **`select`** lists. |
|
||||||
|
| **`type`** | `led` (only value today; extensible). |
|
||||||
|
| **`transport`** | `espnow` (default) or `wifi`. |
|
||||||
|
| **`address`** | For **`espnow`**: same as **`id`** (MAC). For **`wifi`**: IP or hostname used for outbound WebSocket / OTA. |
|
||||||
|
| **`connected`** | Response-only on GET list/detail: always **`null`** today (ESP-NOW has no live session flag on the Pi). |
|
||||||
|
| **`default_pattern`**, **`zones`** | Optional. Legacy **`tabs`** may still appear in old files and is migrated away on load. |
|
||||||
|
|
||||||
|
Drivers also **self-register** on ESP-NOW **ANNOUNCE** (bridge uplink) or Wi‑Fi UDP hello; manual **`POST /devices`** is optional.
|
||||||
|
|
||||||
|
| Method | Path | Description |
|
||||||
|
|--------|------|-------------|
|
||||||
|
| GET | `/devices` | Map of device id → device object (includes **`connected`**). |
|
||||||
| GET | `/devices/<id>` | One device, 404 if missing. |
|
| GET | `/devices/<id>` | One device, 404 if missing. |
|
||||||
| POST | `/devices` | Create. Body: **`name`** (required), **`type`** (default `led`), **`transport`** (default `espnow`), optional **`address`**, **`default_pattern`**, **`zones`**. Returns `{ "<id>": { ... } }`, 201. |
|
| POST | `/devices` | Create. Body: **`name`** (required), **`type`** (default `led`), **`transport`** (default `espnow`), optional **`address`**, **`mac`** (required for Wi‑Fi when address is set), **`default_pattern`**, **`zones`**. Returns `{ "<id>": { ... } }`, 201. |
|
||||||
| PUT | `/devices/<id>` | Partial update. **`name`** cannot be cleared. **`id`** in the body is ignored. **`type`** / **`transport`** validated; **`address`** normalised for the resulting transport. |
|
| PUT | `/devices/<id>` | Partial update. **`name`** cannot be cleared. **`id`** in the body is ignored. **`type`** / **`transport`** validated; **`address`** normalised for the resulting transport. |
|
||||||
| DELETE | `/devices/<id>` | Remove device. |
|
| DELETE | `/devices/<id>` | Remove device. |
|
||||||
|
| POST | `/devices/<id>/identify` | ESP-NOW: sends a short red **blink** preset (`__identify`, 10 Hz) via the bridge, then **`off`** after ~2 s. Not persisted on the Pi. |
|
||||||
|
| POST | `/groups/<id>/identify` | Same identify blink for every device in the group (broadcast envelope; drivers filter by group membership). |
|
||||||
|
|
||||||
### Profiles — `/profiles`
|
### Profiles — `/profiles`
|
||||||
|
|
||||||
@@ -228,26 +248,56 @@ Pattern metadata lives in **`db/pattern.json`**; driver source files live under
|
|||||||
|
|
||||||
## LED driver message format (transport / ESP-NOW / Wi-Fi)
|
## LED driver message format (transport / ESP-NOW / Wi-Fi)
|
||||||
|
|
||||||
Messages are JSON objects. The Pi **`build_message()`** helper (`src/util/espnow_message.py`) produces the same shape sent over serial and forwarded by the ESP32 bridge, and the same logical object can be sent as a **single JSON text message** to a Wi-Fi driver over the **WebSocket**.
|
Messages are JSON objects. The Pi **`build_message()`** helper (`src/util/espnow_message.py`) produces per-device bodies; **`build_devices_envelope()`** (`src/util/bridge_envelope.py`) wraps them for the bridge WebSocket or USB serial link. Wi-Fi drivers accept the same logical body as a **single JSON text message** over the outbound WebSocket.
|
||||||
|
|
||||||
### Top-level fields
|
### Devices envelope (Pi → bridge)
|
||||||
|
|
||||||
|
On the bridge link, traffic uses a top-level **`dv`** map (long name **`devices`** still accepted on receive):
|
||||||
|
|
||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
"v": "1",
|
"v": "1",
|
||||||
"presets": { },
|
"dv": {
|
||||||
"select": { },
|
"e8:f6:0a:16:ea:10": {
|
||||||
"save": true,
|
"p": { "2": { "p": "on", "c": ["#FFFFFF"], "a": true } },
|
||||||
"default": "preset_id",
|
"s": ["2", 0],
|
||||||
"b": 255
|
"g": ["5"],
|
||||||
|
"sg": false,
|
||||||
|
"sv": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
See [espnow-architecture.md](espnow-architecture.md) for routing (`sg`, broadcast MAC `ff:ff:ff:ff:ff:ff`, and group filtering).
|
||||||
|
|
||||||
|
### Per-device body fields (inside `dv` or Wi-Fi WebSocket)
|
||||||
|
|
||||||
|
Short wire keys are used on the bridge and over ESP-NOW (long names still accepted on receive):
|
||||||
|
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"v": "1",
|
||||||
|
"p": { },
|
||||||
|
"s": ["preset_id", 0],
|
||||||
|
"sv": true,
|
||||||
|
"df": "preset_id",
|
||||||
|
"b": 255,
|
||||||
|
"g": ["5"],
|
||||||
|
"sg": false
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
| Short | Long | Meaning |
|
||||||
|
|-------|------|---------|
|
||||||
|
| `p` | `presets` | Map of preset id → preset object (see below). |
|
||||||
|
| `s` | `select` | **`["preset_id"]`** or **`["preset_id", step]`** — routing is by MAC envelope / group membership, not by device name. |
|
||||||
|
| `sv` | `save` | If true, driver may persist presets to flash. |
|
||||||
|
| `df` | `default` | Startup default preset id. |
|
||||||
|
| `g` | `groups` | Group ids for membership updates or broadcast filtering. |
|
||||||
|
| `sg` | `set_groups` | If true, replace stored group list before applying the body. |
|
||||||
|
|
||||||
- **`v`** (required): Must be `"1"` or the driver ignores the message.
|
- **`v`** (required): Must be `"1"` or the driver ignores the message.
|
||||||
- **`presets`**: Map of **preset id** (string) → preset object (see below). Optional **`name`** field on each value is accepted for display; the driver keys presets by map key.
|
|
||||||
- **`select`**: Map of **device name** (as in device settings) → `[ "preset_id" ]` or `[ "preset_id", step ]`.
|
|
||||||
- **`save`**: If present (e.g. true), the driver may persist presets to flash after applying.
|
|
||||||
- **`default`**: Preset id string to use as startup default on the device.
|
|
||||||
- **`b`**: Optional **global** brightness 0–255 (driver applies this in addition to per-preset brightness).
|
- **`b`**: Optional **global** brightness 0–255 (driver applies this in addition to per-preset brightness).
|
||||||
|
|
||||||
### Preset object (wire / driver keys)
|
### Preset object (wire / driver keys)
|
||||||
|
|||||||
@@ -28,7 +28,7 @@
|
|||||||
The LED Driver system is a MicroPython-based application for controlling LED strips via ESP32-C3 microcontrollers. The system uses a custom firmware image with usqlite and microdot built-in as frozen modules. The system provides:
|
The LED Driver system is a MicroPython-based application for controlling LED strips via ESP32-C3 microcontrollers. The system uses a custom firmware image with usqlite and microdot built-in as frozen modules. The system provides:
|
||||||
|
|
||||||
- Real-time LED pattern control
|
- Real-time LED pattern control
|
||||||
- Multi-device management via peer-to-peer communication (ESPNow)
|
- Multi-device management via ESP-NOW (peer-to-peer on 2.4 GHz; Pi reaches drivers through a bridge ESP32)
|
||||||
- Group-based device control
|
- Group-based device control
|
||||||
- Web-based configuration interface
|
- Web-based configuration interface
|
||||||
- Binary message protocol for efficient communication
|
- Binary message protocol for efficient communication
|
||||||
@@ -49,7 +49,7 @@ The LED Driver system is a MicroPython-based application for controlling LED str
|
|||||||
- Preset system for saving and loading pattern configurations
|
- Preset system for saving and loading pattern configurations
|
||||||
- Profile and Scene system for complex lighting setups
|
- Profile and Scene system for complex lighting setups
|
||||||
- Preset sequencing within groups for time-based transitions
|
- Preset sequencing within groups for time-based transitions
|
||||||
- Peer-to-peer communication via ESPNow
|
- ESP-NOW peer-to-peer between bridge and led-driver devices; Pi ↔ bridge over WebSocket or USB serial
|
||||||
- Binary message protocol for bandwidth efficiency
|
- Binary message protocol for bandwidth efficiency
|
||||||
- Persistent settings storage (usqlite database)
|
- Persistent settings storage (usqlite database)
|
||||||
- Web-based configuration interface (Microdot web server)
|
- Web-based configuration interface (Microdot web server)
|
||||||
|
|||||||
198
docs/espnow-architecture.md
Normal file
@@ -0,0 +1,198 @@
|
|||||||
|
# ESP-NOW transport architecture
|
||||||
|
|
||||||
|
This document describes how **led-controller**, the **bridge ESP32**, and **led-driver** devices work together. Wire-level byte layouts are in [espnow-binary-protocol.md](espnow-binary-protocol.md).
|
||||||
|
|
||||||
|
**Pi ↔ bridge:** v1 **devices envelope** (JSON) over **WebSocket** (`bridge_transport`: `wifi`) or **USB serial** (`bridge_transport`: `serial`) — example: [msg.json](msg.json). **ESP-NOW over the air:** JSON driver payloads (≤250 bytes) or legacy binary (`0x4C` wire). The Pi web UI and `db/*.json` use JSON internally.
|
||||||
|
|
||||||
|
## System overview
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
| Component | Firmware / path | Role |
|
||||||
|
|-----------|-----------------|------|
|
||||||
|
| **led-controller** | Raspberry Pi, `src/` | Web app; WebSocket **client** to bridge (auto-reconnect); device registry; builds devices envelope |
|
||||||
|
| **Bridge** | [`espnow-sender/`](../espnow-sender/) (or [`bridge-serial/`](../bridge-serial/) for UART-only) | WebSocket **server** `/ws` and/or USB serial; routes envelope per MAC; max **20** ESP-NOW peers (LRU) |
|
||||||
|
| **led-driver** | [`led-driver/`](../led-driver/) submodule | Boot **ANNOUNCE** broadcast; applies **GROUPS**, **CMD**, **GROUP_CMD** |
|
||||||
|
|
||||||
|
Configure the Pi in `settings.json`:
|
||||||
|
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"bridge_transport": "wifi",
|
||||||
|
"bridge_ws_url": "ws://192.168.4.1/ws",
|
||||||
|
"wifi_channel": 5
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
For **USB serial** to the bridge ESP32 instead of Wi‑Fi:
|
||||||
|
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"bridge_transport": "serial",
|
||||||
|
"bridge_serial_port": "/dev/ttyACM0",
|
||||||
|
"bridge_serial_baudrate": 921600,
|
||||||
|
"wifi_channel": 5
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
**Wi‑Fi mode:** connect the Pi to the **bridge access point** (SSID = bridge `name` in `/settings.json`, default IP **192.168.4.1**). Use **Help → Bridge** or **`POST /settings/wifi/connect`** to join and set `bridge_ws_url`. **Serial mode:** plug in the bridge and set `bridge_serial_port` (or use **`POST /settings/wifi/serial/connect`**).
|
||||||
|
|
||||||
|
All nodes must use the same 2.4 GHz **channel**: set `wifi_channel` in the bridge and each led-driver `/settings.json` (applied at boot on those devices). The Pi stores `wifi_channel` in its own `settings.json` for alignment (restart led-controller after changing).
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Boot and registration
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
1. Driver powers on and sends **ANNOUNCE** to broadcast MAC `ff:ff:ff:ff:ff:ff`.
|
||||||
|
2. Bridge receives it and forwards a **WebSocket uplink** frame to the Pi (peer MAC + packet).
|
||||||
|
3. Pi **upserts** the device in `db/device.json` (key = 12-char hex MAC).
|
||||||
|
4. Pi scans `db/group.json` and sends a **groups** envelope (`set_groups: true`) unicast to that MAC.
|
||||||
|
5. Driver stores group ids in RAM (`device_groups`) for filtering.
|
||||||
|
6. Pi bridge client **reconnects** automatically if the WebSocket drops (2 s backoff).
|
||||||
|
|
||||||
|
If the Pi or bridge is not up yet, the driver re-sends **ANNOUNCE** periodically until **GROUPS** arrives.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Devices envelope (Pi → bridge)
|
||||||
|
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"v": "1",
|
||||||
|
"dv": {
|
||||||
|
"ff:ff:ff:ff:ff:ff": {
|
||||||
|
"p": { "2": { "p": "on", "c": ["#FFFFFF"], "a": true } },
|
||||||
|
"s": ["2", 0],
|
||||||
|
"g": ["5", "18"],
|
||||||
|
"sg": false,
|
||||||
|
"sv": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
Short wire names (long names still accepted on receive): `dv`=devices, `p`=presets, `s`=select (`["preset_id", step?]` — no device name), `g`=groups, `sg`=set_groups, `sv`=save, `df`=default; preset fields `p/c/d/b/a/bg/n1…`.
|
||||||
|
|
||||||
|
| `set_groups` | Destination | Bridge | Driver |
|
||||||
|
|--------------|-------------|--------|--------|
|
||||||
|
| `true` | any | Unicast only (expand `ff:ff:…` to all known peers) | `groups_replace`, then apply body |
|
||||||
|
| `false` | `ff:ff:ff:ff:ff:ff` | ESP-NOW air broadcast | Apply only if device is in `groups` |
|
||||||
|
| `false` | specific MAC | Unicast | Same group filter |
|
||||||
|
|
||||||
|
Legacy raw payloads (binary wire or plain v1 JSON without `devices`) are still **broadcast** by the bridge.
|
||||||
|
|
||||||
|
## Sending presets and commands
|
||||||
|
|
||||||
|
1. UI or API triggers a send (e.g. `POST /presets/push`).
|
||||||
|
2. Pi builds a **devices envelope** (or legacy binary) and sends it on the bridge WebSocket.
|
||||||
|
3. Bridge routes each MAC entry to unicast or ESP-NOW broadcast per `set_groups`.
|
||||||
|
4. Driver `process_data` applies presets, select (`[preset_id, step?]`; legacy name map still accepted), brightness, etc.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Packet layers
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
### Layer A — WebSocket frame (Pi ↔ bridge)
|
||||||
|
|
||||||
|
| Offset | Size | Field |
|
||||||
|
|--------|------|--------|
|
||||||
|
| 0 | 1 | `flags` — bit0 = broadcast (`ff:ff:…`); peer ignored if set |
|
||||||
|
| 1 | 6 | `peer` — destination MAC (raw bytes) |
|
||||||
|
| 7 | … | Full ESP-NOW packet (layer B) |
|
||||||
|
|
||||||
|
**Uplink** (bridge → Pi): same layout; `flags = 0`, `peer` = sender.
|
||||||
|
|
||||||
|
**Ack** (bridge → Pi after downlink): 1 byte — `0x01` ok, `0x00` error.
|
||||||
|
|
||||||
|
### Layer B — ESP-NOW packet (on air)
|
||||||
|
|
||||||
|
| Offset | Size | Field |
|
||||||
|
|--------|------|--------|
|
||||||
|
| 0 | 1 | Magic `0x4C` (`'L'`) |
|
||||||
|
| 1 | 1 | Message type |
|
||||||
|
| 2 | … | Body (≤248 bytes so total ≤250) |
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
| Type | Value | Direction | Purpose |
|
||||||
|
|------|-------|-------------|---------|
|
||||||
|
| ANNOUNCE | `0x01` | Driver → broadcast | Boot settings |
|
||||||
|
| GROUPS | `0x02` | Pi → driver | Group membership |
|
||||||
|
| CMD | `0x03` | Pi → driver | Command (v2 envelope) |
|
||||||
|
| GROUP_CMD | `0x04` | Pi → broadcast | Command scoped to one group |
|
||||||
|
| BRIDGE_CH | `0x10` | Pi → bridge | Set STA channel 1–11 |
|
||||||
|
|
||||||
|
### Layer C — v2 command envelope (inside CMD / GROUP_CMD)
|
||||||
|
|
||||||
|
Used for presets, select, default, brightness. **No JSON.**
|
||||||
|
|
||||||
|
| Byte | Field |
|
||||||
|
|------|--------|
|
||||||
|
| 0 | Version `2` |
|
||||||
|
| 1 | Brightness wire 0–127 (→ 0–255); `128–255` = unchanged |
|
||||||
|
| 2 | `lp` — presets section length |
|
||||||
|
| 3 | `ls` — select section length |
|
||||||
|
| 4 | `ld` — default section length |
|
||||||
|
| 5… | Presets blob (`lp` bytes) |
|
||||||
|
| … | Select blob (`ls` bytes) |
|
||||||
|
| … | Default blob (`ld` bytes) |
|
||||||
|
|
||||||
|
Optional trailing `0x01` after the envelope in **CMD** means `save` (persist to flash).
|
||||||
|
|
||||||
|
Implementation: [`src/util/binary_envelope.py`](../src/util/binary_envelope.py), [`src/util/espnow_wire.py`](../src/util/espnow_wire.py).
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Message body reference
|
||||||
|
|
||||||
|
### ANNOUNCE (`0x01`)
|
||||||
|
|
||||||
|
Sender MAC comes from ESP-NOW headers, not the body.
|
||||||
|
|
||||||
|
```
|
||||||
|
name_len (u8) | name (utf-8) | num_leds (u16 LE) | color_order (u8) | startup_mode (u8) | brightness (u8) | device_type (u8)
|
||||||
|
```
|
||||||
|
|
||||||
|
| `color_order` | `startup_mode` |
|
||||||
|
|---------------|----------------|
|
||||||
|
| 0=rgb, 1=rbg, 2=grb, 3=gbr, 4=brg, 5=bgr | 0=default, 1=last, 2=off |
|
||||||
|
|
||||||
|
### GROUPS (`0x02`)
|
||||||
|
|
||||||
|
```
|
||||||
|
count (u8) | repeat: id_len (u8) | group_id (utf-8)
|
||||||
|
```
|
||||||
|
|
||||||
|
Group ids match keys in `db/group.json` (e.g. `"5"`, `"18"`).
|
||||||
|
|
||||||
|
### GROUP_CMD (`0x04`)
|
||||||
|
|
||||||
|
```
|
||||||
|
group_id_len (u8) | group_id (utf-8) | v2 envelope | [optional 0x01 save]
|
||||||
|
```
|
||||||
|
|
||||||
|
Driver applies only if `group_id` is in its stored list.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Size limits and chunking
|
||||||
|
|
||||||
|
- **250 bytes** max per ESP-NOW datagram.
|
||||||
|
- Large preset libraries → multiple **CMD** packets from the Pi.
|
||||||
|
- Bridge stores at most **20** peer MACs; oldest peer evicted (LRU) when full.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Related files
|
||||||
|
|
||||||
|
| Topic | Location |
|
||||||
|
|-------|----------|
|
||||||
|
| Byte-level spec | [espnow-binary-protocol.md](espnow-binary-protocol.md) |
|
||||||
|
| Pi wire codec | [`src/util/espnow_wire.py`](../src/util/espnow_wire.py) |
|
||||||
|
| Pi bridge client | [`src/models/bridge_ws_client.py`](../src/models/bridge_ws_client.py) |
|
||||||
|
| Bridge firmware | [`espnow-sender/src/main.py`](../espnow-sender/src/main.py) |
|
||||||
|
| Driver ESP-NOW | [`led-driver/src/espnow_transport.py`](../led-driver/src/espnow_transport.py) |
|
||||||
114
docs/espnow-binary-protocol.md
Normal file
@@ -0,0 +1,114 @@
|
|||||||
|
# ESP-NOW binary protocol
|
||||||
|
|
||||||
|
**See also:** [espnow-architecture.md](espnow-architecture.md) (diagrams, flows, configuration).
|
||||||
|
|
||||||
|
All ESP-NOW datagrams and Pi↔bridge WebSocket frames use **binary only** (no JSON on the wire). Maximum ESP-NOW payload length: **250 bytes**.
|
||||||
|
|
||||||
|
## ESP-NOW packet
|
||||||
|
|
||||||
|
| Offset | Field |
|
||||||
|
|--------|--------|
|
||||||
|
| 0 | Magic `0x4C` (`'L'`) |
|
||||||
|
| 1 | Message type |
|
||||||
|
| 2… | Type-specific body |
|
||||||
|
|
||||||
|
### Message types
|
||||||
|
|
||||||
|
| Value | Name | Direction |
|
||||||
|
|-------|------|-----------|
|
||||||
|
| `0x01` | `ANNOUNCE` | Driver → broadcast |
|
||||||
|
| `0x02` | `GROUPS` | Controller → driver |
|
||||||
|
| `0x03` | `CMD` | Controller → driver |
|
||||||
|
| `0x04` | `GROUP_CMD` | Controller → broadcast |
|
||||||
|
| `0x05` | `PING_REQ` | Controller → broadcast |
|
||||||
|
| `0x06` | `PING_RSP` | Driver → controller (unicast) |
|
||||||
|
| `0x10` | `BRIDGE_CH` | Controller → broadcast |
|
||||||
|
|
||||||
|
### ANNOUNCE (`0x01`)
|
||||||
|
|
||||||
|
Driver settings at boot. Sender MAC is taken from the ESP-NOW peer address (not repeated in the body).
|
||||||
|
|
||||||
|
| Field | Type |
|
||||||
|
|-------|------|
|
||||||
|
| name_len | u8 |
|
||||||
|
| name | UTF-8 |
|
||||||
|
| num_leds | u16 LE |
|
||||||
|
| color_order | u8 enum: 0=rgb, 1=rbg, 2=grb, 3=gbr, 4=brg, 5=bgr |
|
||||||
|
| startup_mode | u8: 0=default, 1=last, 2=off |
|
||||||
|
| brightness | u8 0–255 |
|
||||||
|
| device_type | u8: 0=led |
|
||||||
|
|
||||||
|
### GROUPS (`0x02`)
|
||||||
|
|
||||||
|
| Field | Type |
|
||||||
|
|-------|------|
|
||||||
|
| count | u8 |
|
||||||
|
| × count | u8 id_len + UTF-8 group id |
|
||||||
|
|
||||||
|
### CMD (`0x03`)
|
||||||
|
|
||||||
|
Bytes 2… are a **v2 binary envelope** (see `src/util/binary_envelope.py`): 5-byte header + presets/select/default blobs. Total packet ≤ 250 bytes.
|
||||||
|
|
||||||
|
### GROUP_CMD (`0x04`)
|
||||||
|
|
||||||
|
| Field | Type |
|
||||||
|
|-------|------|
|
||||||
|
| group_id_len | u8 |
|
||||||
|
| group_id | UTF-8 |
|
||||||
|
| cmd_envelope | v2 binary envelope |
|
||||||
|
|
||||||
|
Drivers apply the nested envelope only if `group_id` is in their stored group list.
|
||||||
|
|
||||||
|
### PING_REQ (`0x05`)
|
||||||
|
|
||||||
|
Controller discovery ping (broadcast). Drivers reply with **PING_RSP** after a random delay (50–500 ms) to reduce ESP-NOW collisions.
|
||||||
|
|
||||||
|
| Field | Type |
|
||||||
|
|-------|------|
|
||||||
|
| ping_id | u32 LE |
|
||||||
|
|
||||||
|
### PING_RSP (`0x06`)
|
||||||
|
|
||||||
|
Unicast to the bridge/controller peer that sent the request (ESP-NOW source MAC of the received **PING_REQ**).
|
||||||
|
|
||||||
|
| Field | Type |
|
||||||
|
|-------|------|
|
||||||
|
| ping_id | u32 LE |
|
||||||
|
| name_len | u8 |
|
||||||
|
| name | UTF-8 |
|
||||||
|
|
||||||
|
### BRIDGE_CH (`0x10`)
|
||||||
|
|
||||||
|
| Field | Type |
|
||||||
|
|-------|------|
|
||||||
|
| channel | u8 (1–11) |
|
||||||
|
|
||||||
|
Sets the bridge ESP32 STA channel (not forwarded to LED drivers as a command).
|
||||||
|
|
||||||
|
## Pi ↔ bridge WebSocket frame
|
||||||
|
|
||||||
|
Binary WebSocket messages only.
|
||||||
|
|
||||||
|
| Offset | Field |
|
||||||
|
|--------|--------|
|
||||||
|
| 0 | flags: bit0 = broadcast destination; bit1 reserved |
|
||||||
|
| 1–6 | peer MAC (6 bytes); ignored if broadcast |
|
||||||
|
| 7… | ESP-NOW packet (magic + type + body) |
|
||||||
|
|
||||||
|
Broadcast destination uses peer `ff:ff:ff:ff:ff:ff`.
|
||||||
|
|
||||||
|
The bridge maintains at most **20** ESP-NOW peers (LRU eviction).
|
||||||
|
|
||||||
|
## v2 command envelope
|
||||||
|
|
||||||
|
Native binary sections (no JSON). Header:
|
||||||
|
|
||||||
|
| Byte | Meaning |
|
||||||
|
|------|---------|
|
||||||
|
| 0 | Version `2` |
|
||||||
|
| 1 | Brightness wire 0–127 (maps to 0–255); 128–255 = unchanged |
|
||||||
|
| 2 | Presets section length |
|
||||||
|
| 3 | Select section length |
|
||||||
|
| 4 | Default section length |
|
||||||
|
|
||||||
|
See `binary_envelope.py` for blob layouts.
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
# LED controller — user guide
|
# LED controller — user guide
|
||||||
|
|
||||||
This page describes the **main web UI** served from the Raspberry Pi app: profiles, **zones**, presets, colour palettes, and sending commands to LED devices. Traffic may go over the **serial → ESP-NOW bridge** or **Wi-Fi** (TCP to drivers on the LAN), depending on each device’s transport.
|
This page describes the **main web UI** served from the Raspberry Pi app: profiles, **zones**, presets, colour palettes, and sending commands to LED devices. ESP-NOW devices are reached through the **bridge** (Pi connects via **Wi‑Fi** to the bridge AP or **USB serial**). Optional **Wi-Fi** drivers on the LAN use a direct outbound WebSocket from the Pi.
|
||||||
|
|
||||||
For HTTP routes and the wire format the driver expects, see **[API.md](API.md)**. For running the app locally, see the project **README**.
|
For HTTP routes and the wire format the driver expects, see **[API.md](API.md)**. For running the app locally, see the project **README**.
|
||||||
|
|
||||||
@@ -84,7 +84,9 @@ The **Presets** header button (Edit mode) opens a **profile-wide** list: **Add**
|
|||||||
|
|
||||||
The **Patterns** dialog (Edit mode) lists pattern names and typical **delay** ranges from the pattern definitions. Choosing a pattern still happens inside the preset editor.
|
The **Patterns** dialog (Edit mode) lists pattern names and typical **delay** ranges from the pattern definitions. Choosing a pattern still happens inside the preset editor.
|
||||||
|
|
||||||
**Wi-Fi drivers** can install new pattern modules over HTTP: the REST API exposes **`/patterns/ota/*`**, **`POST /patterns/<name>/send`**, **`POST /patterns/upload`**, and **`POST /patterns/driver`** (see [API.md](API.md)). ESP-NOW devices follow the bridge/serial path you configure for preset traffic.
|
**Wi-Fi drivers** can install new pattern modules over HTTP: the REST API exposes **`/patterns/ota/*`**, **`POST /patterns/<name>/send`**, **`POST /patterns/upload`**, and **`POST /patterns/driver`** (see [API.md](API.md)). ESP-NOW devices follow the bridge path you configure (**Help → Bridge**: join the bridge AP or connect USB serial).
|
||||||
|
|
||||||
|
**Devices** (Edit mode): the registry lists drivers by **MAC**. New ESP-NOW devices appear automatically after **ANNOUNCE**; you can also add rows manually. **Identify** sends a short red blink (~2 s) so you can spot hardware on a wall or bench.
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
@@ -110,5 +112,5 @@ On narrow screens, use **Menu** to reach the same actions as the desktop header
|
|||||||
|
|
||||||
## Further reading
|
## Further reading
|
||||||
|
|
||||||
- **[API.md](API.md)** — REST routes, session scoping, WebSocket `/ws`, and LED driver JSON (`presets`, `select`, `save`, `default`, pattern keys, pattern **manifest**).
|
- **[API.md](API.md)** — REST routes, bridge settings (`/settings/wifi/*`), session scoping, WebSocket `/ws`, and LED driver JSON (devices envelope `dv`, short keys `p`/`s`/`sv`, pattern **manifest**).
|
||||||
- **README** — `pipenv run run`, port 80 setup, and high-level behaviour.
|
- **README** — `pipenv run run`, port 80 setup, and high-level behaviour.
|
||||||
|
|||||||
57
docs/images/espnow/boot-sequence.svg
Normal file
@@ -0,0 +1,57 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 780 520" font-family="system-ui, Segoe UI, sans-serif">
|
||||||
|
<defs>
|
||||||
|
<marker id="arr" markerWidth="8" markerHeight="8" refX="6" refY="3" orient="auto">
|
||||||
|
<path d="M0,0 L6,3 L0,6 Z" fill="#333"/>
|
||||||
|
</marker>
|
||||||
|
<style>
|
||||||
|
.actor { fill: #f4f6f8; stroke: #2c3e50; stroke-width: 2; }
|
||||||
|
.lifeline { stroke: #aaa; stroke-width: 1; stroke-dasharray: 4 4; }
|
||||||
|
.msg { stroke: #2980b9; stroke-width: 1.5; fill: none; marker-end: url(#arr); }
|
||||||
|
.msgret { stroke: #27ae60; stroke-width: 1.5; fill: none; marker-end: url(#arr); }
|
||||||
|
.note { fill: #fef9e7; stroke: #d4ac0d; stroke-width: 1; }
|
||||||
|
.t { font-size: 13px; fill: #222; }
|
||||||
|
.h { font-size: 14px; font-weight: 700; fill: #111; }
|
||||||
|
.s { font-size: 11px; fill: #555; }
|
||||||
|
</style>
|
||||||
|
</defs>
|
||||||
|
<text x="390" y="24" text-anchor="middle" class="h" font-size="16">Boot and registration sequence</text>
|
||||||
|
|
||||||
|
<!-- Actors -->
|
||||||
|
<rect class="actor" x="40" y="40" width="120" height="40" rx="6"/>
|
||||||
|
<text x="100" y="66" text-anchor="middle" class="h">Driver</text>
|
||||||
|
<line class="lifeline" x1="100" y1="80" x2="100" y2="480"/>
|
||||||
|
|
||||||
|
<rect class="actor" x="310" y="40" width="120" height="40" rx="6"/>
|
||||||
|
<text x="370" y="66" text-anchor="middle" class="h">Bridge</text>
|
||||||
|
<line class="lifeline" x1="370" y1="80" x2="370" y2="480"/>
|
||||||
|
|
||||||
|
<rect class="actor" x="580" y="40" width="140" height="40" rx="6"/>
|
||||||
|
<text x="650" y="66" text-anchor="middle" class="h">led-controller</text>
|
||||||
|
<line class="lifeline" x1="650" y1="80" x2="650" y2="480"/>
|
||||||
|
|
||||||
|
<!-- Messages -->
|
||||||
|
<path class="msg" d="M 100 110 L 368 110"/>
|
||||||
|
<text x="234" y="102" text-anchor="middle" class="t">ESP-NOW broadcast ANNOUNCE</text>
|
||||||
|
<text x="234" y="128" text-anchor="middle" class="s">dest ff:ff:ff:ff:ff:ff</text>
|
||||||
|
|
||||||
|
<path class="msg" d="M 372 150 L 648 150"/>
|
||||||
|
<text x="510" y="142" text-anchor="middle" class="t">WS uplink: peer MAC + packet</text>
|
||||||
|
|
||||||
|
<rect class="note" x="520" y="168" width="200" height="44" rx="4"/>
|
||||||
|
<text x="620" y="188" text-anchor="middle" class="s">upsert device in</text>
|
||||||
|
<text x="620" y="204" text-anchor="middle" class="s">db/device.json</text>
|
||||||
|
|
||||||
|
<path class="msgret" d="M 648 230 L 372 230"/>
|
||||||
|
<text x="510" y="222" text-anchor="middle" class="t">WS downlink: GROUPS unicast</text>
|
||||||
|
|
||||||
|
<path class="msgret" d="M 368 270 L 102 270"/>
|
||||||
|
<text x="234" y="262" text-anchor="middle" class="t">ESP-NOW unicast GROUPS</text>
|
||||||
|
|
||||||
|
<rect class="note" x="30" y="300" width="140" height="40" rx="4"/>
|
||||||
|
<text x="100" y="318" text-anchor="middle" class="s">store group ids</text>
|
||||||
|
<text x="100" y="332" text-anchor="middle" class="s">in RAM</text>
|
||||||
|
|
||||||
|
<text x="390" y="380" text-anchor="middle" class="s">Driver re-sends ANNOUNCE until GROUPS received if Pi/bridge late</text>
|
||||||
|
<text x="390" y="460" text-anchor="middle" class="s">ANNOUNCE body: name, num_leds, color_order, startup_mode, brightness</text>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.9 KiB |
53
docs/images/espnow/command-flow.svg
Normal file
@@ -0,0 +1,53 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 780 480" font-family="system-ui, Segoe UI, sans-serif">
|
||||||
|
<defs>
|
||||||
|
<marker id="a" markerWidth="8" markerHeight="8" refX="6" refY="3" orient="auto">
|
||||||
|
<path d="M0,0 L6,3 L0,6 Z" fill="#333"/>
|
||||||
|
</marker>
|
||||||
|
<style>
|
||||||
|
.actor { fill: #f4f6f8; stroke: #2c3e50; stroke-width: 2; }
|
||||||
|
.lifeline { stroke: #aaa; stroke-width: 1; stroke-dasharray: 4 4; }
|
||||||
|
.msg { stroke: #8e44ad; stroke-width: 1.5; fill: none; marker-end: url(#a); }
|
||||||
|
.t { font-size: 13px; fill: #222; }
|
||||||
|
.h { font-size: 14px; font-weight: 700; }
|
||||||
|
.s { font-size: 11px; fill: #555; }
|
||||||
|
</style>
|
||||||
|
</defs>
|
||||||
|
<text x="390" y="24" text-anchor="middle" class="h" font-size="16">Preset / command delivery</text>
|
||||||
|
|
||||||
|
<rect class="actor" x="30" y="44" width="90" height="36" rx="6"/>
|
||||||
|
<text x="75" y="68" text-anchor="middle" class="h">UI</text>
|
||||||
|
<line class="lifeline" x1="75" y1="80" x2="75" y2="440"/>
|
||||||
|
|
||||||
|
<rect class="actor" x="200" y="44" width="120" height="36" rx="6"/>
|
||||||
|
<text x="260" y="68" text-anchor="middle" class="h">Pi</text>
|
||||||
|
<line class="lifeline" x1="260" y1="80" x2="260" y2="440"/>
|
||||||
|
|
||||||
|
<rect class="actor" x="400" y="44" width="100" height="36" rx="6"/>
|
||||||
|
<text x="450" y="68" text-anchor="middle" class="h">Bridge</text>
|
||||||
|
<line class="lifeline" x1="450" y1="80" x2="450" y2="440"/>
|
||||||
|
|
||||||
|
<rect class="actor" x="580" y="44" width="100" height="36" rx="6"/>
|
||||||
|
<text x="630" y="68" text-anchor="middle" class="h">Driver</text>
|
||||||
|
<line class="lifeline" x1="630" y1="80" x2="630" y2="440"/>
|
||||||
|
|
||||||
|
<path class="msg" d="M 77 110 L 258 110"/>
|
||||||
|
<text x="168" y="102" text-anchor="middle" class="t">POST /presets/send (JSON)</text>
|
||||||
|
|
||||||
|
<text x="260" y="145" text-anchor="middle" class="s">build v2 envelope</text>
|
||||||
|
<text x="260" y="162" text-anchor="middle" class="s">pack CMD (d250 B)</text>
|
||||||
|
|
||||||
|
<path class="msg" d="M 262 190 L 448 190"/>
|
||||||
|
<text x="355" y="182" text-anchor="middle" class="t">WS downlink + CMD</text>
|
||||||
|
|
||||||
|
<path class="msg" d="M 452 230 L 628 230"/>
|
||||||
|
<text x="540" y="222" text-anchor="middle" class="t">ESP-NOW unicast / broadcast</text>
|
||||||
|
|
||||||
|
<text x="630" y="275" text-anchor="middle" class="s">parse CMD</text>
|
||||||
|
<text x="630" y="292" text-anchor="middle" class="s">apply presets / select</text>
|
||||||
|
|
||||||
|
<rect x="140" y="320" width="500" height="90" fill="#f0f0f0" stroke="#999" rx="6"/>
|
||||||
|
<text x="390" y="345" text-anchor="middle" class="t">GROUP_CMD: one broadcast per group id only members apply</text>
|
||||||
|
<text x="390" y="368" text-anchor="middle" class="s">Large libraries ’ multiple CMD chunks from Pi</text>
|
||||||
|
<text x="390" y="390" text-anchor="middle" class="s">Optional trailing 0x01 on CMD = save to flash</text>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.7 KiB |
42
docs/images/espnow/message-types.svg
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 320" font-family="system-ui, Segoe UI, sans-serif">
|
||||||
|
<text x="320" y="28" text-anchor="middle" font-size="16" font-weight="700" fill="#111">ESP-NOW message types (byte 1 after 0x4C)</text>
|
||||||
|
|
||||||
|
<rect fill="#2c3e50" x="40" y="48" width="560" height="28" rx="4"/>
|
||||||
|
<text x="70" y="67" fill="#fff" font-size="12" font-weight="600">Value</text>
|
||||||
|
<text x="150" y="67" fill="#fff" font-size="12" font-weight="600">Name</text>
|
||||||
|
<text x="280" y="67" fill="#fff" font-size="12" font-weight="600">Direction</text>
|
||||||
|
<text x="460" y="67" fill="#fff" font-size="12" font-weight="600">Purpose</text>
|
||||||
|
|
||||||
|
<rect fill="#fff" stroke="#ddd" x="40" y="76" width="560" height="32"/>
|
||||||
|
<text x="70" y="97" font-size="12">0x01</text>
|
||||||
|
<text x="150" y="97" font-size="12" font-weight="600">ANNOUNCE</text>
|
||||||
|
<text x="280" y="97" font-size="12">Driver ? broadcast</text>
|
||||||
|
<text x="460" y="97" font-size="12">Boot settings</text>
|
||||||
|
|
||||||
|
<rect fill="#f8f9fa" stroke="#ddd" x="40" y="108" width="560" height="32"/>
|
||||||
|
<text x="70" y="129" font-size="12">0x02</text>
|
||||||
|
<text x="150" y="129" font-size="12" font-weight="600">GROUPS</text>
|
||||||
|
<text x="280" y="129" font-size="12">Pi ? driver</text>
|
||||||
|
<text x="460" y="129" font-size="12">Group membership</text>
|
||||||
|
|
||||||
|
<rect fill="#fff" stroke="#ddd" x="40" y="140" width="560" height="32"/>
|
||||||
|
<text x="70" y="161" font-size="12">0x03</text>
|
||||||
|
<text x="150" y="161" font-size="12" font-weight="600">CMD</text>
|
||||||
|
<text x="280" y="161" font-size="12">Pi ? driver</text>
|
||||||
|
<text x="460" y="161" font-size="12">v2 command envelope</text>
|
||||||
|
|
||||||
|
<rect fill="#f8f9fa" stroke="#ddd" x="40" y="172" width="560" height="32"/>
|
||||||
|
<text x="70" y="193" font-size="12">0x04</text>
|
||||||
|
<text x="150" y="193" font-size="12" font-weight="600">GROUP_CMD</text>
|
||||||
|
<text x="280" y="193" font-size="12">Pi ? broadcast</text>
|
||||||
|
<text x="460" y="193" font-size="12">Filtered by group id</text>
|
||||||
|
|
||||||
|
<rect fill="#fff" stroke="#ddd" x="40" y="204" width="560" height="32"/>
|
||||||
|
<text x="70" y="225" font-size="12">0x10</text>
|
||||||
|
<text x="150" y="225" font-size="12" font-weight="600">BRIDGE_CH</text>
|
||||||
|
<text x="280" y="225" font-size="12">Pi ? bridge</text>
|
||||||
|
<text x="460" y="225" font-size="12">Wi-Fi channel 1–11</text>
|
||||||
|
|
||||||
|
<text x="320" y="270" text-anchor="middle" font-size="12" fill="#555">Every packet: [0x4C magic][type][body…] total ? 250 bytes</text>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.4 KiB |
62
docs/images/espnow/packet-layers.svg
Normal file
@@ -0,0 +1,62 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 720 480" font-family="ui-monospace, monospace">
|
||||||
|
<defs>
|
||||||
|
<style>
|
||||||
|
.layer { stroke: #2c3e50; stroke-width: 2; }
|
||||||
|
.ws { fill: #e8f4fc; }
|
||||||
|
.esp { fill: #fef9e7; }
|
||||||
|
.env { fill: #eafaf1; }
|
||||||
|
.lbl { font-family: system-ui, sans-serif; font-size: 14px; font-weight: 700; fill: #111; }
|
||||||
|
.byte { font-size: 12px; fill: #333; }
|
||||||
|
.title { font-family: system-ui, sans-serif; font-size: 17px; font-weight: 700; }
|
||||||
|
</style>
|
||||||
|
</defs>
|
||||||
|
<text x="360" y="28" text-anchor="middle" class="title">Packet layers (outside ’ inside)</text>
|
||||||
|
|
||||||
|
<!-- WS layer -->
|
||||||
|
<rect class="layer ws" x="60" y="50" width="600" height="70" rx="6"/>
|
||||||
|
<text x="80" y="78" class="lbl">WebSocket frame (Pi ” bridge)</text>
|
||||||
|
<rect x="80" y="88" width="50" height="24" fill="#fff" stroke="#666"/>
|
||||||
|
<text x="105" y="104" text-anchor="middle" class="byte">flags</text>
|
||||||
|
<rect x="138" y="88" width="120" height="24" fill="#fff" stroke="#666"/>
|
||||||
|
<text x="198" y="104" text-anchor="middle" class="byte">peer MAC ×6</text>
|
||||||
|
<rect x="268" y="88" width="380" height="24" fill="#fff" stroke="#666"/>
|
||||||
|
<text x="458" y="104" text-anchor="middle" class="byte">ESP-NOW packet (below)</text>
|
||||||
|
|
||||||
|
<!-- ESP layer -->
|
||||||
|
<rect class="layer esp" x="100" y="140" width="520" height="70" rx="6"/>
|
||||||
|
<text x="120" y="168" class="lbl">ESP-NOW datagram (d250 bytes)</text>
|
||||||
|
<rect x="120" y="178" width="40" height="24" fill="#fff" stroke="#666"/>
|
||||||
|
<text x="140" y="194" text-anchor="middle" class="byte">4C</text>
|
||||||
|
<rect x="168" y="178" width="50" height="24" fill="#fff" stroke="#666"/>
|
||||||
|
<text x="193" y="194" text-anchor="middle" class="byte">type</text>
|
||||||
|
<rect x="230" y="178" width="370" height="24" fill="#fff" stroke="#666"/>
|
||||||
|
<text x="415" y="194" text-anchor="middle" class="byte">body (ANNOUNCE / GROUPS / CMD / &)</text>
|
||||||
|
|
||||||
|
<!-- CMD + envelope -->
|
||||||
|
<rect class="layer env" x="140" y="230" width="440" height="120" rx="6"/>
|
||||||
|
<text x="160" y="258" class="lbl">Inside CMD (0x03) v2 command envelope</text>
|
||||||
|
<rect x="160" y="268" width="28" height="22" fill="#fff" stroke="#666"/>
|
||||||
|
<text x="174" y="283" text-anchor="middle" class="byte">02</text>
|
||||||
|
<rect x="194" y="268" width="28" height="22" fill="#fff" stroke="#666"/>
|
||||||
|
<text x="208" y="283" text-anchor="middle" class="byte">br</text>
|
||||||
|
<rect x="228" y="268" width="28" height="22" fill="#fff" stroke="#666"/>
|
||||||
|
<text x="242" y="283" text-anchor="middle" class="byte">lp</text>
|
||||||
|
<rect x="262" y="268" width="28" height="22" fill="#fff" stroke="#666"/>
|
||||||
|
<text x="276" y="283" text-anchor="middle" class="byte">ls</text>
|
||||||
|
<rect x="296" y="268" width="28" height="22" fill="#fff" stroke="#666"/>
|
||||||
|
<text x="310" y="283" text-anchor="middle" class="byte">ld</text>
|
||||||
|
<rect x="334" y="268" width="110" height="22" fill="#fff" stroke="#666"/>
|
||||||
|
<text x="389" y="283" text-anchor="middle" class="byte">presets</text>
|
||||||
|
<rect x="450" y="268" width="60" height="22" fill="#fff" stroke="#666"/>
|
||||||
|
<text x="480" y="283" text-anchor="middle" class="byte">select</text>
|
||||||
|
<rect x="516" y="268" width="54" height="22" fill="#fff" stroke="#666"/>
|
||||||
|
<text x="543" y="283" text-anchor="middle" class="byte">def</text>
|
||||||
|
<rect x="160" y="300" width="60" height="22" fill="#ffeaa7" stroke="#666"/>
|
||||||
|
<text x="190" y="315" text-anchor="middle" class="byte">save?</text>
|
||||||
|
<text x="360" y="335" text-anchor="middle" class="byte" font-family="system-ui">optional 0x01 after envelope</text>
|
||||||
|
|
||||||
|
<text x="360" y="400" text-anchor="middle" font-family="system-ui" font-size="12" fill="#555">
|
||||||
|
Pi REST/UI uses JSON · conversion to binary happens at bridge boundary
|
||||||
|
</text>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 3.6 KiB |
65
docs/images/espnow/system-overview.svg
Normal file
@@ -0,0 +1,65 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 820 420" font-family="system-ui, Segoe UI, sans-serif">
|
||||||
|
<defs>
|
||||||
|
<marker id="arrow" markerWidth="8" markerHeight="8" refX="6" refY="3" orient="auto">
|
||||||
|
<path d="M0,0 L6,3 L0,6 Z" fill="#333"/>
|
||||||
|
</marker>
|
||||||
|
<style>
|
||||||
|
.box { fill: #f4f6f8; stroke: #2c3e50; stroke-width: 2; rx: 8; }
|
||||||
|
.title { font-size: 16px; font-weight: 700; fill: #1a1a1a; }
|
||||||
|
.label { font-size: 13px; fill: #333; }
|
||||||
|
.small { font-size: 11px; fill: #555; }
|
||||||
|
.line { stroke: #333; stroke-width: 1.5; fill: none; marker-end: url(#arrow); }
|
||||||
|
.dashed { stroke-dasharray: 6 4; }
|
||||||
|
</style>
|
||||||
|
</defs>
|
||||||
|
<text x="410" y="28" text-anchor="middle" class="title" font-size="18">ESP-NOW LED system three nodes</text>
|
||||||
|
|
||||||
|
<!-- Pi -->
|
||||||
|
<rect class="box" x="40" y="60" width="220" height="300"/>
|
||||||
|
<text x="150" y="88" text-anchor="middle" class="title">led-controller</text>
|
||||||
|
<text x="150" y="108" text-anchor="middle" class="small">Raspberry Pi</text>
|
||||||
|
<rect x="60" y="125" width="180" height="36" fill="#fff" stroke="#888" rx="4"/>
|
||||||
|
<text x="150" y="148" text-anchor="middle" class="label">Web UI / REST (JSON)</text>
|
||||||
|
<rect x="60" y="170" width="180" height="36" fill="#fff" stroke="#888" rx="4"/>
|
||||||
|
<text x="150" y="193" text-anchor="middle" class="label">db/device.json, groups</text>
|
||||||
|
<rect x="60" y="215" width="180" height="36" fill="#e8f4fc" stroke="#2980b9" rx="4"/>
|
||||||
|
<text x="150" y="238" text-anchor="middle" class="label">espnow_wire + binary</text>
|
||||||
|
<rect x="60" y="260" width="180" height="36" fill="#e8f4fc" stroke="#2980b9" rx="4"/>
|
||||||
|
<text x="150" y="283" text-anchor="middle" class="label">bridge_ws_client</text>
|
||||||
|
<text x="150" y="330" text-anchor="middle" class="small">WS client ’ bridge</text>
|
||||||
|
|
||||||
|
<!-- Bridge -->
|
||||||
|
<rect class="box" x="300" y="100" width="220" height="220"/>
|
||||||
|
<text x="410" y="128" text-anchor="middle" class="title">Bridge ESP32</text>
|
||||||
|
<text x="410" y="148" text-anchor="middle" class="small">espnow-sender</text>
|
||||||
|
<rect x="320" y="165" width="180" height="36" fill="#fff" stroke="#888" rx="4"/>
|
||||||
|
<text x="410" y="188" text-anchor="middle" class="label">WebSocket server /ws</text>
|
||||||
|
<rect x="320" y="210" width="180" height="36" fill="#fef9e7" stroke="#d4ac0d" rx="4"/>
|
||||||
|
<text x="410" y="233" text-anchor="middle" class="label">ESP-NOW relay</text>
|
||||||
|
<text x="410" y="275" text-anchor="middle" class="small">max 20 peers (LRU)</text>
|
||||||
|
|
||||||
|
<!-- Drivers -->
|
||||||
|
<rect class="box" x="560" y="60" width="220" height="300"/>
|
||||||
|
<text x="670" y="88" text-anchor="middle" class="title">led-driver × N</text>
|
||||||
|
<text x="670" y="108" text-anchor="middle" class="small">ESP32 LED strips</text>
|
||||||
|
<rect x="580" y="140" width="180" height="32" fill="#eafaf1" stroke="#27ae60" rx="4"/>
|
||||||
|
<text x="670" y="161" text-anchor="middle" class="label">boot ANNOUNCE</text>
|
||||||
|
<rect x="580" y="182" width="180" height="32" fill="#fff" stroke="#888" rx="4"/>
|
||||||
|
<text x="670" y="203" text-anchor="middle" class="label">store GROUPS</text>
|
||||||
|
<rect x="580" y="224" width="180" height="32" fill="#fff" stroke="#888" rx="4"/>
|
||||||
|
<text x="670" y="245" text-anchor="middle" class="label">apply CMD / GROUP_CMD</text>
|
||||||
|
<text x="670" y="320" text-anchor="middle" class="small">binary only on air</text>
|
||||||
|
|
||||||
|
<!-- Arrows -->
|
||||||
|
<path class="line" d="M 260 278 L 298 200"/>
|
||||||
|
<text x="268" y="235" class="small">binary WS</text>
|
||||||
|
<path class="line" d="M 520 230 L 558 200"/>
|
||||||
|
<text x="528" y="218" class="small">ESP-NOW</text>
|
||||||
|
<path class="line dashed" d="M 520 260 L 558 280"/>
|
||||||
|
<text x="528" y="278" class="small">broadcast</text>
|
||||||
|
<path class="line dashed" d="M 558 160 L 520 175"/>
|
||||||
|
<text x="530" y="158" class="small">ANNOUNCE</text>
|
||||||
|
|
||||||
|
<text x="410" y="400" text-anchor="middle" class="small">d250 bytes per ESP-NOW frame · no JSON on wire</text>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 3.8 KiB |
@@ -2,7 +2,7 @@
|
|||||||
<title>Header: tab buttons and action bar</title>
|
<title>Header: tab buttons and action bar</title>
|
||||||
<rect width="820" height="108" fill="#1a1a1a"/>
|
<rect width="820" height="108" fill="#1a1a1a"/>
|
||||||
<rect x="0" y="106" width="820" height="2" fill="#4a4a4a"/>
|
<rect x="0" y="106" width="820" height="2" fill="#4a4a4a"/>
|
||||||
<text x="16" y="28" fill="#888" font-family="sans-serif" font-size="11">Tabs</text>
|
<text x="16" y="28" fill="#888" font-family="sans-serif" font-size="11">Zones</text>
|
||||||
<rect x="16" y="40" width="72" height="36" rx="4" fill="#333" stroke="#666" stroke-width="1"/>
|
<rect x="16" y="40" width="72" height="36" rx="4" fill="#333" stroke="#666" stroke-width="1"/>
|
||||||
<text x="34" y="63" fill="#ccc" font-family="sans-serif" font-size="13">default</text>
|
<text x="34" y="63" fill="#ccc" font-family="sans-serif" font-size="13">default</text>
|
||||||
<rect x="96" y="40" width="88" height="36" rx="4" fill="#2a4a7a" stroke="#5a8fd4" stroke-width="2"/>
|
<rect x="96" y="40" width="88" height="36" rx="4" fill="#2a4a7a" stroke="#5a8fd4" stroke-width="2"/>
|
||||||
@@ -13,7 +13,7 @@
|
|||||||
<rect x="380" y="40" width="72" height="30" rx="3" fill="#3d3d3d" stroke="#555" stroke-width="1"/>
|
<rect x="380" y="40" width="72" height="30" rx="3" fill="#3d3d3d" stroke="#555" stroke-width="1"/>
|
||||||
<text x="396" y="59" fill="#e0e0e0" font-family="sans-serif" font-size="11">Profiles</text>
|
<text x="396" y="59" fill="#e0e0e0" font-family="sans-serif" font-size="11">Profiles</text>
|
||||||
<rect x="458" y="40" width="52" height="30" rx="3" fill="#3d3d3d" stroke="#555" stroke-width="1"/>
|
<rect x="458" y="40" width="52" height="30" rx="3" fill="#3d3d3d" stroke="#555" stroke-width="1"/>
|
||||||
<text x="470" y="59" fill="#e0e0e0" font-family="sans-serif" font-size="11">Tabs</text>
|
<text x="470" y="59" fill="#e0e0e0" font-family="sans-serif" font-size="11">Zones</text>
|
||||||
<rect x="516" y="40" width="64" height="30" rx="3" fill="#3d3d3d" stroke="#555" stroke-width="1"/>
|
<rect x="516" y="40" width="64" height="30" rx="3" fill="#3d3d3d" stroke="#555" stroke-width="1"/>
|
||||||
<text x="524" y="59" fill="#e0e0e0" font-family="sans-serif" font-size="11">Presets</text>
|
<text x="524" y="59" fill="#e0e0e0" font-family="sans-serif" font-size="11">Presets</text>
|
||||||
<rect x="586" y="40" width="78" height="30" rx="3" fill="#3d3d3d" stroke="#555" stroke-width="1"/>
|
<rect x="586" y="40" width="78" height="30" rx="3" fill="#3d3d3d" stroke="#555" stroke-width="1"/>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.1 KiB |
@@ -1,26 +1,26 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 340" width="300" height="340" role="img" aria-labelledby="t">
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 340" width="300" height="340" role="img" aria-labelledby="mobile-menu-title">
|
||||||
<title id="t">Narrow screen: Menu aggregates header actions</title>
|
<title id="mobile-menu-title">Narrow screen: Menu aggregates header actions</title>
|
||||||
<rect width="300" height="340" fill="#2e2e2e"/>
|
<rect width="300" height="340" fill="#2e2e2e"/>
|
||||||
<rect x="0" y="0" width="300" height="52" fill="#1a1a1a"/>
|
<rect x="0" y="0" width="300" height="52" fill="#1a1a1a"/>
|
||||||
<rect x="12" y="12" width="56" height="28" rx="4" fill="#3d3d3d" stroke="#555" stroke-width="1"/>
|
<rect x="12" y="12" width="56" height="28" rx="4" fill="#3d3d3d" stroke="#555" stroke-width="1"/>
|
||||||
<text x="22" y="30" fill="#eee" font-family="DejaVu Sans, Liberation Sans, Arial, sans-serif" font-size="12">Menu <20></text>
|
<text x="22" y="30" fill="#eee" font-family="sans-serif" font-size="12">Menu</text>
|
||||||
<rect x="76" y="14" width="52" height="24" rx="4" fill="#333" stroke="#666" stroke-width="1"/>
|
<rect x="76" y="14" width="52" height="24" rx="4" fill="#333" stroke="#666" stroke-width="1"/>
|
||||||
<text x="86" y="30" fill="#ccc" font-family="DejaVu Sans, Liberation Sans, Arial, sans-serif" font-size="11">tab</text>
|
<text x="86" y="30" fill="#ccc" font-family="sans-serif" font-size="11">tab</text>
|
||||||
<rect x="136" y="14" width="52" height="24" rx="4" fill="#2a4a7a" stroke="#5a8fd4" stroke-width="1"/>
|
<rect x="136" y="14" width="52" height="24" rx="4" fill="#2a4a7a" stroke="#5a8fd4" stroke-width="1"/>
|
||||||
<text x="142" y="30" fill="#fff" font-family="DejaVu Sans, Liberation Sans, Arial, sans-serif" font-size="11">tab</text>
|
<text x="142" y="30" fill="#fff" font-family="sans-serif" font-size="11">tab</text>
|
||||||
<rect x="12" y="60" width="276" height="168" rx="4" fill="#252525" stroke="#4a4a4a" stroke-width="1"/>
|
<rect x="12" y="60" width="276" height="168" rx="4" fill="#252525" stroke="#4a4a4a" stroke-width="1"/>
|
||||||
<text x="24" y="84" fill="#888" font-family="DejaVu Sans, Liberation Sans, Arial, sans-serif" font-size="10">Dropdown (same actions as desktop header)</text>
|
<text x="24" y="84" fill="#888" font-family="sans-serif" font-size="10">Dropdown (same actions as desktop header)</text>
|
||||||
<g font-family="DejaVu Sans, Liberation Sans, Arial, sans-serif" font-size="12" fill="#e8e8e8">
|
<g font-family="sans-serif" font-size="12" fill="#e8e8e8">
|
||||||
<text x="24" y="108">Run mode</text>
|
<text x="24" y="108">Run mode</text>
|
||||||
<text x="24" y="132">Profiles</text>
|
<text x="24" y="132">Profiles</text>
|
||||||
<text x="24" y="156">Tabs</text>
|
<text x="24" y="156">Zones</text>
|
||||||
<text x="24" y="180">Presets</text>
|
<text x="24" y="180">Presets</text>
|
||||||
<text x="24" y="204">Help</text>
|
<text x="24" y="204">Help</text>
|
||||||
</g>
|
</g>
|
||||||
<rect x="12" y="240" width="276" height="80" rx="6" fill="#222" stroke="#444" stroke-width="1"/>
|
<rect x="12" y="240" width="276" height="80" rx="6" fill="#222" stroke="#444" stroke-width="1"/>
|
||||||
<text x="24" y="268" fill="#aaa" font-family="DejaVu Sans, Liberation Sans, Arial, sans-serif" font-size="10">Content area presets as on desktop</text>
|
<text x="24" y="268" fill="#aaa" font-family="sans-serif" font-size="10">Content area - presets as on desktop</text>
|
||||||
<rect x="24" y="278" width="80" height="32" rx="4" fill="#333" stroke="#555"/>
|
<rect x="24" y="278" width="80" height="32" rx="4" fill="#333" stroke="#555"/>
|
||||||
<text x="36" y="298" fill="#ddd" font-family="DejaVu Sans, Liberation Sans, Arial, sans-serif" font-size="11">preset</text>
|
<text x="36" y="298" fill="#ddd" font-family="sans-serif" font-size="11">preset</text>
|
||||||
<rect x="112" y="278" width="80" height="32" rx="4" fill="#333" stroke="#555"/>
|
<rect x="112" y="278" width="80" height="32" rx="4" fill="#333" stroke="#555"/>
|
||||||
<text x="124" y="298" fill="#ddd" font-family="DejaVu Sans, Liberation Sans, Arial, sans-serif" font-size="11">preset</text>
|
<text x="124" y="298" fill="#ddd" font-family="sans-serif" font-size="11">preset</text>
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 1.9 KiB |
@@ -1,23 +1,18 @@
|
|||||||
{
|
{
|
||||||
"g":{
|
"v": "1",
|
||||||
"df": {
|
"dv": {
|
||||||
"pt": "on",
|
"ff:ff:ff:ff:ff:ff": {
|
||||||
"cl": ["#ff0000"],
|
"p": {
|
||||||
"br": 200,
|
"2": {
|
||||||
"n1": 10,
|
"p": "on",
|
||||||
"n2": 10,
|
"c": ["#FFFFFF"],
|
||||||
"n3": 10,
|
"a": true
|
||||||
"n4": 10,
|
|
||||||
"n5": 10,
|
|
||||||
"n6": 10,
|
|
||||||
"dl": 100
|
|
||||||
},
|
|
||||||
"dj": {
|
|
||||||
"pt": "blink",
|
|
||||||
"cl": ["#00ff00"],
|
|
||||||
"dl": 500
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sv": true,
|
"s": ["2", 0],
|
||||||
"st": 0
|
"g": ["5", "18"],
|
||||||
|
"sg": false,
|
||||||
|
"sv": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
# espnow-sender
|
|
||||||
|
|
||||||
Minimal MicroPython project for receiving JSON over Microdot WebSocket.
|
|
||||||
|
|
||||||
- WebSocket endpoint: `/ws`
|
|
||||||
- Entry point: `main.py`
|
|
||||||
- Message template: `msg.json`
|
|
||||||
@@ -1,120 +0,0 @@
|
|||||||
import asyncio
|
|
||||||
import json
|
|
||||||
|
|
||||||
from microdot import Microdot
|
|
||||||
from microdot.websocket import WebSocketError, with_websocket
|
|
||||||
|
|
||||||
import espnow
|
|
||||||
import network
|
|
||||||
from util import format_mac, parse_mac
|
|
||||||
|
|
||||||
|
|
||||||
app = Microdot()
|
|
||||||
_esp = None
|
|
||||||
_known_peers = set()
|
|
||||||
_ws_clients = set()
|
|
||||||
|
|
||||||
|
|
||||||
def _init_espnow():
|
|
||||||
global _esp
|
|
||||||
sta = network.WLAN(network.STA_IF)
|
|
||||||
sta.active(True)
|
|
||||||
_esp = espnow.ESPNow()
|
|
||||||
_esp.active(True)
|
|
||||||
|
|
||||||
|
|
||||||
def _validate_envelope(obj):
|
|
||||||
if obj.get("v") != "1":
|
|
||||||
raise ValueError("message.v must be '1'")
|
|
||||||
devices = obj["devices"]
|
|
||||||
for address in devices.keys():
|
|
||||||
parse_mac(address)
|
|
||||||
return obj
|
|
||||||
|
|
||||||
|
|
||||||
def _send_espnow(address, payload):
|
|
||||||
if _esp is None:
|
|
||||||
raise ValueError("espnow is not initialized")
|
|
||||||
mac = parse_mac(address)
|
|
||||||
msg = json.dumps(payload, separators=(",", ":")).encode("utf-8")
|
|
||||||
if mac not in _known_peers:
|
|
||||||
_esp.add_peer(mac)
|
|
||||||
_known_peers.add(mac)
|
|
||||||
_esp.send(mac, msg)
|
|
||||||
return mac, len(msg)
|
|
||||||
|
|
||||||
|
|
||||||
async def _broadcast_ws(obj):
|
|
||||||
text = json.dumps(obj)
|
|
||||||
dead = []
|
|
||||||
for client in list(_ws_clients):
|
|
||||||
try:
|
|
||||||
await client.send(text)
|
|
||||||
except Exception:
|
|
||||||
dead.append(client)
|
|
||||||
for client in dead:
|
|
||||||
_ws_clients.discard(client)
|
|
||||||
|
|
||||||
|
|
||||||
async def _espnow_receive_loop():
|
|
||||||
while True:
|
|
||||||
host, msg = _esp.recv(0)
|
|
||||||
if not host:
|
|
||||||
await asyncio.sleep(0.01)
|
|
||||||
continue
|
|
||||||
await _broadcast_ws(
|
|
||||||
{
|
|
||||||
"from": format_mac(host),
|
|
||||||
"payload": msg.decode("utf-8"),
|
|
||||||
}
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
@app.route("/ws")
|
|
||||||
@with_websocket
|
|
||||||
async def ws(request, ws):
|
|
||||||
_ws_clients.add(ws)
|
|
||||||
while True:
|
|
||||||
try:
|
|
||||||
raw = await ws.receive()
|
|
||||||
except WebSocketError:
|
|
||||||
break
|
|
||||||
|
|
||||||
if not raw:
|
|
||||||
break
|
|
||||||
|
|
||||||
try:
|
|
||||||
parsed = json.loads(raw)
|
|
||||||
env = _validate_envelope(parsed)
|
|
||||||
sent = []
|
|
||||||
for address, payload in env["devices"].items():
|
|
||||||
mac, payload_size = _send_espnow(address, payload)
|
|
||||||
sent.append(
|
|
||||||
{
|
|
||||||
"address": format_mac(mac),
|
|
||||||
"bytes": payload_size,
|
|
||||||
}
|
|
||||||
)
|
|
||||||
except (ValueError, TypeError) as e:
|
|
||||||
await ws.send(json.dumps({"ok": False, "error": str(e)}))
|
|
||||||
continue
|
|
||||||
|
|
||||||
await ws.send(
|
|
||||||
json.dumps(
|
|
||||||
{
|
|
||||||
"ok": True,
|
|
||||||
"sent": sent,
|
|
||||||
}
|
|
||||||
)
|
|
||||||
)
|
|
||||||
_ws_clients.discard(ws)
|
|
||||||
|
|
||||||
|
|
||||||
async def main(port=80):
|
|
||||||
_init_espnow()
|
|
||||||
asyncio.create_task(_espnow_receive_loop())
|
|
||||||
await app.start_server(host="0.0.0.0", port=port)
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
|
||||||
asyncio.run(main(port=80))
|
|
||||||
@@ -1,24 +0,0 @@
|
|||||||
{
|
|
||||||
"v": "1",
|
|
||||||
"devices": {
|
|
||||||
"ff:ff:ff:ff:ff:ff": {
|
|
||||||
"presets": {
|
|
||||||
"preset_id": {
|
|
||||||
"pattern": "on",
|
|
||||||
"colors": ["#FF0000"],
|
|
||||||
"delay": 100,
|
|
||||||
"brightness": 255,
|
|
||||||
"auto": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"select": {
|
|
||||||
"preset": "preset_id",
|
|
||||||
"step": 0
|
|
||||||
},
|
|
||||||
"save": true,
|
|
||||||
"default": "preset_id",
|
|
||||||
"b": 255
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
91
espnow-sender/src/bridge_http.py
Normal file
@@ -0,0 +1,91 @@
|
|||||||
|
"""HTTP settings API for the ESP-NOW bridge (AP IP, password, channel)."""
|
||||||
|
|
||||||
|
import json
|
||||||
|
|
||||||
|
from settings import WIFI_CHANNEL_DEFAULT
|
||||||
|
|
||||||
|
_SETTINGS_KEYS = frozenset(
|
||||||
|
{"name", "ap_ip", "ap_password", "wifi_channel", "ws_port", "max_peers"}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def _parse_ipv4(value):
|
||||||
|
parts = str(value).strip().split(".")
|
||||||
|
if len(parts) != 4:
|
||||||
|
raise ValueError("ap_ip must be dotted IPv4")
|
||||||
|
out = []
|
||||||
|
for p in parts:
|
||||||
|
n = int(p)
|
||||||
|
if n < 0 or n > 255:
|
||||||
|
raise ValueError("ap_ip octet out of range")
|
||||||
|
out.append(n)
|
||||||
|
return ".".join(str(x) for x in out)
|
||||||
|
|
||||||
|
|
||||||
|
def public_settings(settings):
|
||||||
|
return {
|
||||||
|
"name": settings.get("name", ""),
|
||||||
|
"ap_ip": settings.get("ap_ip", "192.168.4.1"),
|
||||||
|
"ap_password_set": bool(str(settings.get("ap_password") or "").strip()),
|
||||||
|
"wifi_channel": settings.get("wifi_channel", WIFI_CHANNEL_DEFAULT),
|
||||||
|
"ws_port": settings.get("ws_port", 80),
|
||||||
|
"max_peers": settings.get("max_peers", 20),
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
def apply_settings_update(settings, data):
|
||||||
|
if not isinstance(data, dict):
|
||||||
|
raise ValueError("body must be a JSON object")
|
||||||
|
reboot_required = False
|
||||||
|
if "name" in data:
|
||||||
|
name = str(data["name"] or "").strip()
|
||||||
|
if not name:
|
||||||
|
raise ValueError("name is required")
|
||||||
|
if len(name) > 32:
|
||||||
|
raise ValueError("name too long")
|
||||||
|
settings["name"] = name
|
||||||
|
reboot_required = True
|
||||||
|
if "ap_ip" in data:
|
||||||
|
settings["ap_ip"] = _parse_ipv4(data["ap_ip"])
|
||||||
|
reboot_required = True
|
||||||
|
if "ap_password" in data:
|
||||||
|
pw = str(data["ap_password"] or "")
|
||||||
|
if pw and len(pw) < 8:
|
||||||
|
raise ValueError("ap_password must be at least 8 characters or empty")
|
||||||
|
settings["ap_password"] = pw
|
||||||
|
reboot_required = True
|
||||||
|
if "wifi_channel" in data:
|
||||||
|
ch = int(data["wifi_channel"])
|
||||||
|
if ch < 1 or ch > 11:
|
||||||
|
raise ValueError("wifi_channel must be 1–11")
|
||||||
|
settings["wifi_channel"] = ch
|
||||||
|
reboot_required = True
|
||||||
|
if "ws_port" in data:
|
||||||
|
port = int(data["ws_port"])
|
||||||
|
if port < 1 or port > 65535:
|
||||||
|
raise ValueError("ws_port out of range")
|
||||||
|
settings["ws_port"] = port
|
||||||
|
if "max_peers" in data:
|
||||||
|
settings["max_peers"] = max(1, min(20, int(data["max_peers"])))
|
||||||
|
return reboot_required
|
||||||
|
|
||||||
|
|
||||||
|
def register_bridge_routes(app, settings):
|
||||||
|
@app.get("/settings")
|
||||||
|
async def get_bridge_settings(request):
|
||||||
|
return json.dumps(public_settings(settings)), 200, {"Content-Type": "application/json"}
|
||||||
|
|
||||||
|
@app.put("/settings")
|
||||||
|
async def put_bridge_settings(request):
|
||||||
|
try:
|
||||||
|
data = request.json
|
||||||
|
reboot_required = apply_settings_update(settings, data)
|
||||||
|
settings.save()
|
||||||
|
body = public_settings(settings)
|
||||||
|
body["message"] = "Settings saved"
|
||||||
|
body["reboot_required"] = reboot_required
|
||||||
|
return json.dumps(body), 200, {"Content-Type": "application/json"}
|
||||||
|
except ValueError as err:
|
||||||
|
return json.dumps({"error": str(err)}), 400, {"Content-Type": "application/json"}
|
||||||
|
except Exception as err:
|
||||||
|
return json.dumps({"error": str(err)}), 500, {"Content-Type": "application/json"}
|
||||||
133
espnow-sender/src/main.py
Normal file
@@ -0,0 +1,133 @@
|
|||||||
|
import asyncio
|
||||||
|
import json
|
||||||
|
|
||||||
|
from microdot import Microdot
|
||||||
|
from microdot.websocket import WebSocketError, with_websocket
|
||||||
|
|
||||||
|
import aioespnow
|
||||||
|
import machine
|
||||||
|
from settings import Settings
|
||||||
|
from espnow_wire import BROADCAST_MAC, pack_ws_uplink
|
||||||
|
from peer_table import PeerTable, load_max_peers
|
||||||
|
from downlink_router import is_devices_envelope, route_envelope
|
||||||
|
from wifi_ap import init_bridge_network
|
||||||
|
from util import print_bridge_ip
|
||||||
|
from bridge_http import register_bridge_routes
|
||||||
|
from machine import UART, Pin
|
||||||
|
|
||||||
|
wdt = machine.WDT(timeout=10000)
|
||||||
|
wdt.feed()
|
||||||
|
machine.freq(160000000)
|
||||||
|
settings = Settings()
|
||||||
|
print(settings)
|
||||||
|
|
||||||
|
uart = UART(1, baudrate=921600, tx=Pin(2), rx=Pin(3))
|
||||||
|
|
||||||
|
app = Microdot()
|
||||||
|
register_bridge_routes(app, settings)
|
||||||
|
|
||||||
|
init_bridge_network(settings)
|
||||||
|
print_bridge_ip(settings.get("ws_port", 80))
|
||||||
|
|
||||||
|
esp = aioespnow.AIOESPNow()
|
||||||
|
esp.active(True)
|
||||||
|
esp.add_peer(BROADCAST_MAC)
|
||||||
|
|
||||||
|
peer_table = PeerTable(load_max_peers())
|
||||||
|
clients = set()
|
||||||
|
|
||||||
|
|
||||||
|
def _note_uplink_peer(host, msg):
|
||||||
|
if host and len(host) == 6:
|
||||||
|
name = None
|
||||||
|
if msg and msg[0:1] == b"{":
|
||||||
|
try:
|
||||||
|
data = json.loads(msg)
|
||||||
|
if isinstance(data, dict):
|
||||||
|
name = data.get("name")
|
||||||
|
except (ValueError, TypeError):
|
||||||
|
pass
|
||||||
|
peer_table.touch(host, name, esp)
|
||||||
|
|
||||||
|
|
||||||
|
@app.route("/ws")
|
||||||
|
@with_websocket
|
||||||
|
async def ws(request, ws):
|
||||||
|
clients.add(ws)
|
||||||
|
try:
|
||||||
|
while True:
|
||||||
|
try:
|
||||||
|
raw = await ws.receive()
|
||||||
|
except WebSocketError as err:
|
||||||
|
print(err)
|
||||||
|
break
|
||||||
|
if not raw:
|
||||||
|
break
|
||||||
|
if isinstance(raw, str):
|
||||||
|
raw = raw.encode("utf-8")
|
||||||
|
try:
|
||||||
|
if is_devices_envelope(raw):
|
||||||
|
await route_envelope(esp, peer_table, raw)
|
||||||
|
else:
|
||||||
|
await esp.asend(BROADCAST_MAC, raw)
|
||||||
|
print(raw)
|
||||||
|
print("ws tx", len(raw), "B")
|
||||||
|
except Exception as err:
|
||||||
|
print(err)
|
||||||
|
break
|
||||||
|
finally:
|
||||||
|
clients.discard(ws)
|
||||||
|
|
||||||
|
|
||||||
|
async def _espnow_receive_loop():
|
||||||
|
async for host, msg in esp:
|
||||||
|
if not host or not msg:
|
||||||
|
continue
|
||||||
|
_note_uplink_peer(host, msg)
|
||||||
|
print("espnow rx", len(msg), "B")
|
||||||
|
frame = pack_ws_uplink(host, msg)
|
||||||
|
dead = []
|
||||||
|
for client in list(clients):
|
||||||
|
try:
|
||||||
|
await client.send(frame)
|
||||||
|
except Exception:
|
||||||
|
dead.append(client)
|
||||||
|
for client in dead:
|
||||||
|
clients.discard(client)
|
||||||
|
uart.write(msg)
|
||||||
|
|
||||||
|
|
||||||
|
async def _serial_receive_loop():
|
||||||
|
while True:
|
||||||
|
if uart.any():
|
||||||
|
raw = uart.read()
|
||||||
|
print(raw)
|
||||||
|
try:
|
||||||
|
if is_devices_envelope(raw):
|
||||||
|
await route_envelope(esp, peer_table, raw)
|
||||||
|
else:
|
||||||
|
await esp.asend(BROADCAST_MAC, raw)
|
||||||
|
print(raw)
|
||||||
|
print("ws tx", len(raw), "B")
|
||||||
|
except Exception as err:
|
||||||
|
print(err)
|
||||||
|
break
|
||||||
|
|
||||||
|
await asyncio.sleep(0)
|
||||||
|
|
||||||
|
|
||||||
|
async def _wdt_feed_loop():
|
||||||
|
while True:
|
||||||
|
await asyncio.sleep(1)
|
||||||
|
wdt.feed()
|
||||||
|
|
||||||
|
|
||||||
|
async def main():
|
||||||
|
asyncio.create_task(_wdt_feed_loop())
|
||||||
|
asyncio.create_task(_espnow_receive_loop())
|
||||||
|
asyncio.create_task(_serial_receive_loop())
|
||||||
|
await app.start_server(host="0.0.0.0", port=80)
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
asyncio.run(main())
|
||||||
90
espnow-sender/src/peer_table.py
Normal file
@@ -0,0 +1,90 @@
|
|||||||
|
"""LRU table of ESP-NOW peer MACs seen on uplink."""
|
||||||
|
|
||||||
|
from espnow_wire import BROADCAST_MAC
|
||||||
|
|
||||||
|
try:
|
||||||
|
from settings import Settings
|
||||||
|
except ImportError:
|
||||||
|
Settings = None
|
||||||
|
|
||||||
|
# ESP32 counts the broadcast peer toward the ~20 peer limit.
|
||||||
|
_RESERVED_FOR_BROADCAST = 1
|
||||||
|
|
||||||
|
|
||||||
|
class PeerTable:
|
||||||
|
def __init__(self, max_peers=20):
|
||||||
|
limit = max(1, int(max_peers) - _RESERVED_FOR_BROADCAST)
|
||||||
|
self._max = limit
|
||||||
|
self._order = []
|
||||||
|
self._names = {}
|
||||||
|
|
||||||
|
def _evict_lru(self, esp):
|
||||||
|
if not self._order:
|
||||||
|
return
|
||||||
|
old = self._order.pop(0)
|
||||||
|
self._names.pop(old, None)
|
||||||
|
if esp is not None:
|
||||||
|
try:
|
||||||
|
esp.del_peer(old)
|
||||||
|
except OSError:
|
||||||
|
pass
|
||||||
|
|
||||||
|
def touch(self, mac_bytes, name=None, esp=None):
|
||||||
|
"""Note a peer from uplink (LRU). Pass ``esp`` so evictions free ESP-NOW slots."""
|
||||||
|
if not mac_bytes or len(mac_bytes) != 6:
|
||||||
|
return
|
||||||
|
if mac_bytes == BROADCAST_MAC:
|
||||||
|
return
|
||||||
|
if mac_bytes in self._order:
|
||||||
|
self._order.remove(mac_bytes)
|
||||||
|
elif len(self._order) >= self._max:
|
||||||
|
self._evict_lru(esp)
|
||||||
|
self._order.append(mac_bytes)
|
||||||
|
if name:
|
||||||
|
self._names[mac_bytes] = str(name)
|
||||||
|
if esp is not None:
|
||||||
|
try:
|
||||||
|
esp.add_peer(mac_bytes)
|
||||||
|
except OSError:
|
||||||
|
pass
|
||||||
|
|
||||||
|
def ensure_peer(self, esp, mac_bytes):
|
||||||
|
"""Register ``mac_bytes`` on ESP-NOW, evicting LRU peers when the table is full."""
|
||||||
|
if not mac_bytes or len(mac_bytes) != 6:
|
||||||
|
return False
|
||||||
|
if mac_bytes == BROADCAST_MAC:
|
||||||
|
try:
|
||||||
|
esp.add_peer(mac_bytes)
|
||||||
|
except OSError:
|
||||||
|
pass
|
||||||
|
return True
|
||||||
|
if mac_bytes in self._order:
|
||||||
|
self._order.remove(mac_bytes)
|
||||||
|
self._order.append(mac_bytes)
|
||||||
|
else:
|
||||||
|
while len(self._order) >= self._max:
|
||||||
|
self._evict_lru(esp)
|
||||||
|
self._order.append(mac_bytes)
|
||||||
|
# Uplink touch() only updates LRU; always add_peer before unicast send.
|
||||||
|
try:
|
||||||
|
esp.add_peer(mac_bytes)
|
||||||
|
except OSError as err:
|
||||||
|
print("add_peer failed", err)
|
||||||
|
return False
|
||||||
|
return True
|
||||||
|
|
||||||
|
def peers(self):
|
||||||
|
return list(self._order)
|
||||||
|
|
||||||
|
def is_broadcast_mac(self, mac_bytes):
|
||||||
|
return mac_bytes == BROADCAST_MAC
|
||||||
|
|
||||||
|
|
||||||
|
def load_max_peers():
|
||||||
|
if Settings is None:
|
||||||
|
return 20
|
||||||
|
try:
|
||||||
|
s = Settings()
|
||||||
|
return int(s.get("max_peers", 20))
|
||||||
|
except Exception:
|
||||||
|
return 20
|
||||||
48
espnow-sender/src/util.py
Normal file
@@ -0,0 +1,48 @@
|
|||||||
|
def parse_mac(value):
|
||||||
|
raw = value.strip().lower().replace(":", "").replace("-", "")
|
||||||
|
if len(raw) != 12:
|
||||||
|
raise ValueError("address must be 12 hex chars or aa:bb:cc:dd:ee:ff")
|
||||||
|
try:
|
||||||
|
return bytes.fromhex(raw)
|
||||||
|
except ValueError:
|
||||||
|
raise ValueError("address contains non-hex characters")
|
||||||
|
|
||||||
|
|
||||||
|
def format_mac(mac_bytes):
|
||||||
|
return ":".join("{:02x}".format(b) for b in mac_bytes)
|
||||||
|
|
||||||
|
|
||||||
|
def print_bridge_ip(ws_port=80):
|
||||||
|
import network
|
||||||
|
|
||||||
|
try:
|
||||||
|
port = int(ws_port)
|
||||||
|
except (TypeError, ValueError):
|
||||||
|
port = 80
|
||||||
|
|
||||||
|
ips = []
|
||||||
|
try:
|
||||||
|
sta = network.WLAN(network.STA_IF)
|
||||||
|
if sta.active():
|
||||||
|
ip = sta.ifconfig()[0]
|
||||||
|
if ip and ip != "0.0.0.0":
|
||||||
|
ips.append(("STA", ip))
|
||||||
|
except Exception:
|
||||||
|
pass
|
||||||
|
try:
|
||||||
|
ap = network.WLAN(network.AP_IF)
|
||||||
|
if ap.active():
|
||||||
|
ip = ap.ifconfig()[0]
|
||||||
|
if ip and ip != "0.0.0.0":
|
||||||
|
ips.append(("AP", ip))
|
||||||
|
except Exception:
|
||||||
|
pass
|
||||||
|
|
||||||
|
if not ips:
|
||||||
|
print("bridge IP: (AP not up)")
|
||||||
|
return
|
||||||
|
|
||||||
|
ips.sort(key=lambda x: 0 if x[0] == "AP" else 1)
|
||||||
|
_label, ip = ips[0]
|
||||||
|
print("bridge IP (AP):", ip)
|
||||||
|
print("bridge_ws_url: ws://%s:%s/ws" % (ip, port))
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
def parse_mac(value):
|
|
||||||
raw = value.strip().lower().replace(":", "").replace("-", "")
|
|
||||||
if len(raw) != 12:
|
|
||||||
raise ValueError("address must be 12 hex chars or aa:bb:cc:dd:ee:ff")
|
|
||||||
try:
|
|
||||||
return bytes.fromhex(raw)
|
|
||||||
except ValueError:
|
|
||||||
raise ValueError("address contains non-hex characters")
|
|
||||||
|
|
||||||
|
|
||||||
def format_mac(mac_bytes):
|
|
||||||
return ":".join("{:02x}".format(b) for b in mac_bytes)
|
|
||||||
2
led-tool
@@ -13,4 +13,8 @@ if [ -n "${pids}" ]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
cd "$ROOT_DIR/src"
|
cd "$ROOT_DIR/src"
|
||||||
exec python main.py
|
exec env LED_CONTROLLER_LIVE_RELOAD=1 python -m uvicorn fastapi_app:app \
|
||||||
|
--host 0.0.0.0 --port "$PORT" --reload --reload-dir . \
|
||||||
|
--reload-include '**/*.html' --reload-include '**/*.css' --reload-include '**/*.js' \
|
||||||
|
--reload-exclude '**/db/**' --reload-exclude '**/settings.json' \
|
||||||
|
--reload-exclude '**/settings.json.*'
|
||||||
|
|||||||
24
scripts/mpremote_send_ch5.sh
Executable file
@@ -0,0 +1,24 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
# Upload and run a device-side ESP-NOW sender script.
|
||||||
|
# Default channel is 5 and default destination is broadcast.
|
||||||
|
#
|
||||||
|
# Usage:
|
||||||
|
# scripts/mpremote_send_ch5.sh [port] [dest_mac_hex] [payload_hex]
|
||||||
|
#
|
||||||
|
# Examples:
|
||||||
|
# scripts/mpremote_send_ch5.sh /dev/ttyACM0
|
||||||
|
# scripts/mpremote_send_ch5.sh /dev/ttyACM0 ffffffffffff 4c0501000000
|
||||||
|
|
||||||
|
PORT="${1:-/dev/ttyACM0}"
|
||||||
|
DEST_HEX="${2:-ffffffffffff}"
|
||||||
|
PAYLOAD_HEX="${3:-4c0501000000}"
|
||||||
|
CHANNEL=5
|
||||||
|
DEVICE_SCRIPT="send_ch5.py"
|
||||||
|
|
||||||
|
mpremote connect "${PORT}" fs cp "scripts/mpremote_send_ch5_device.py" ":${DEVICE_SCRIPT}"
|
||||||
|
mpremote connect "${PORT}" exec "
|
||||||
|
import ${DEVICE_SCRIPT%.*}
|
||||||
|
${DEVICE_SCRIPT%.*}.send_once('${DEST_HEX}', '${PAYLOAD_HEX}', ${CHANNEL})
|
||||||
|
"
|
||||||
42
scripts/mpremote_send_ch5_device.py
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
"""Device-side ESP-NOW sender (MicroPython, channel 5)."""
|
||||||
|
|
||||||
|
import espnow
|
||||||
|
import network
|
||||||
|
import ubinascii
|
||||||
|
|
||||||
|
|
||||||
|
CHANNEL = 5
|
||||||
|
DEST_HEX = "ffffffffffff"
|
||||||
|
PAYLOAD_HEX = "4c0501000000"
|
||||||
|
|
||||||
|
|
||||||
|
def _set_channel(channel):
|
||||||
|
sta = network.WLAN(network.STA_IF)
|
||||||
|
sta.active(True)
|
||||||
|
sta.config(pm=network.WLAN.PM_NONE)
|
||||||
|
sta.config(channel=channel)
|
||||||
|
|
||||||
|
|
||||||
|
def _add_peer(esp, dest, channel):
|
||||||
|
try:
|
||||||
|
esp.add_peer(dest, channel=channel)
|
||||||
|
except TypeError:
|
||||||
|
esp.add_peer(dest)
|
||||||
|
except OSError:
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
def send_once(dest_hex=DEST_HEX, payload_hex=PAYLOAD_HEX, channel=CHANNEL):
|
||||||
|
dest = ubinascii.unhexlify(dest_hex)
|
||||||
|
pkt = ubinascii.unhexlify(payload_hex)
|
||||||
|
_set_channel(channel)
|
||||||
|
e = espnow.ESPNow()
|
||||||
|
e.active(True)
|
||||||
|
_add_peer(e, dest, channel)
|
||||||
|
ok = e.send(dest, pkt, True)
|
||||||
|
print("sent", ok, "ch", channel, "dest", dest_hex, "len", len(pkt))
|
||||||
|
return ok
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
send_once()
|
||||||
@@ -35,4 +35,4 @@ if [ -z "$PYTHON" ]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
cd "$ROOT/src"
|
cd "$ROOT/src"
|
||||||
exec "$PYTHON" -u main.py
|
exec "$PYTHON" -u -m uvicorn fastapi_app:app --host 0.0.0.0 --port "$PORT"
|
||||||
|
|||||||
298
src/app_factory.py
Normal file
@@ -0,0 +1,298 @@
|
|||||||
|
"""Application factory: Microdot routes and shared runtime startup."""
|
||||||
|
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
import asyncio
|
||||||
|
import hashlib
|
||||||
|
import json
|
||||||
|
import os
|
||||||
|
import secrets
|
||||||
|
from typing import Any, Optional
|
||||||
|
|
||||||
|
from microdot import Microdot, send_file
|
||||||
|
from microdot.session import Session
|
||||||
|
from settings import WIFI_CHANNEL_DEFAULT, get_settings
|
||||||
|
|
||||||
|
import controllers.preset as preset
|
||||||
|
import controllers.profile as profile
|
||||||
|
import controllers.group as group
|
||||||
|
import controllers.sequence as sequence
|
||||||
|
import controllers.zone as zone
|
||||||
|
import controllers.palette as palette
|
||||||
|
import controllers.scene as scene
|
||||||
|
import controllers.pattern as pattern
|
||||||
|
import controllers.settings as settings_controller
|
||||||
|
import controllers.device as device_controller
|
||||||
|
import controllers.led_tool as led_tool_controller
|
||||||
|
import controllers.wifi_bridge as wifi_bridge_controller
|
||||||
|
from models.transport import (
|
||||||
|
BridgeSerialTransport,
|
||||||
|
BridgeWsTransport,
|
||||||
|
get_bridge,
|
||||||
|
set_bridge,
|
||||||
|
)
|
||||||
|
from models.device import Device
|
||||||
|
from models.bridge_serial_client import init_bridge_serial_client
|
||||||
|
from models.bridge_ws_client import init_bridge_client
|
||||||
|
from util.espnow_registry import handle_bridge_uplink
|
||||||
|
from util.bridge_runtime import set_bridge_uplink_handler
|
||||||
|
from util.audio_detector import AudioBeatDetector
|
||||||
|
|
||||||
|
|
||||||
|
def live_reload_enabled() -> bool:
|
||||||
|
v = os.environ.get("LED_CONTROLLER_LIVE_RELOAD", "").strip().lower()
|
||||||
|
return v not in ("", "0", "false", "no")
|
||||||
|
|
||||||
|
|
||||||
|
_dev_build_id: Optional[str] = None
|
||||||
|
|
||||||
|
|
||||||
|
def dev_build_id() -> Optional[str]:
|
||||||
|
global _dev_build_id
|
||||||
|
if not live_reload_enabled():
|
||||||
|
return None
|
||||||
|
if _dev_build_id is None:
|
||||||
|
_dev_build_id = secrets.token_hex(12)
|
||||||
|
return _dev_build_id
|
||||||
|
|
||||||
|
|
||||||
|
def dev_client_revision() -> Optional[str]:
|
||||||
|
"""Revision of static/template assets (changes when UI files are saved)."""
|
||||||
|
if not live_reload_enabled():
|
||||||
|
return None
|
||||||
|
base = os.path.dirname(os.path.abspath(__file__))
|
||||||
|
parts: list[str] = []
|
||||||
|
for sub in ("static", "templates"):
|
||||||
|
root = os.path.join(base, sub)
|
||||||
|
if not os.path.isdir(root):
|
||||||
|
continue
|
||||||
|
for dirpath, _, files in os.walk(root):
|
||||||
|
for name in sorted(files):
|
||||||
|
if not name.endswith((".js", ".css", ".html")):
|
||||||
|
continue
|
||||||
|
path = os.path.join(dirpath, name)
|
||||||
|
try:
|
||||||
|
st = os.stat(path)
|
||||||
|
except OSError:
|
||||||
|
continue
|
||||||
|
parts.append(f"{path}:{st.st_mtime_ns}:{st.st_size}")
|
||||||
|
if not parts:
|
||||||
|
return "0"
|
||||||
|
digest = hashlib.sha256("\n".join(parts).encode("utf-8")).hexdigest()
|
||||||
|
return digest[:16]
|
||||||
|
|
||||||
|
|
||||||
|
def create_microdot_app(*, inject_live_reload: bool = False) -> Microdot:
|
||||||
|
"""Build the Microdot app with mounted controllers and static routes."""
|
||||||
|
settings = get_settings()
|
||||||
|
app = Microdot()
|
||||||
|
|
||||||
|
secret_key = settings.get(
|
||||||
|
"session_secret_key", "led-controller-secret-key-change-in-production"
|
||||||
|
)
|
||||||
|
Session(app, secret_key=secret_key)
|
||||||
|
|
||||||
|
app.mount(preset.controller, "/presets")
|
||||||
|
app.mount(profile.controller, "/profiles")
|
||||||
|
app.mount(group.controller, "/groups")
|
||||||
|
app.mount(sequence.controller, "/sequences")
|
||||||
|
app.mount(zone.controller, "/zones")
|
||||||
|
app.mount(palette.controller, "/palettes")
|
||||||
|
app.mount(scene.controller, "/scenes")
|
||||||
|
app.mount(pattern.controller, "/patterns")
|
||||||
|
app.mount(settings_controller.controller, "/settings")
|
||||||
|
app.mount(wifi_bridge_controller.controller, "/settings/wifi")
|
||||||
|
app.mount(device_controller.controller, "/devices")
|
||||||
|
app.mount(led_tool_controller.controller, "/led-tool")
|
||||||
|
|
||||||
|
build_id = dev_build_id() if inject_live_reload else None
|
||||||
|
if build_id:
|
||||||
|
|
||||||
|
@app.route("/__dev/build-id")
|
||||||
|
def dev_build_id_route(request):
|
||||||
|
_ = request
|
||||||
|
return (
|
||||||
|
build_id,
|
||||||
|
200,
|
||||||
|
{
|
||||||
|
"Content-Type": "text/plain; charset=utf-8",
|
||||||
|
"Cache-Control": "no-store",
|
||||||
|
},
|
||||||
|
)
|
||||||
|
|
||||||
|
@app.route("/")
|
||||||
|
def index(request):
|
||||||
|
_ = request
|
||||||
|
if build_id:
|
||||||
|
try:
|
||||||
|
with open("templates/index.html", encoding="utf-8") as f:
|
||||||
|
html = f.read()
|
||||||
|
tag = '<script src="/static/dev-live-reload.js" defer></script>'
|
||||||
|
if "</body>" in html:
|
||||||
|
html = html.replace("</body>", tag + "\n</body>", 1)
|
||||||
|
return html, 200, {"Content-Type": "text/html; charset=utf-8"}
|
||||||
|
except OSError:
|
||||||
|
pass
|
||||||
|
return send_file("templates/index.html")
|
||||||
|
|
||||||
|
@app.route("/favicon.ico")
|
||||||
|
def favicon(request):
|
||||||
|
_ = request
|
||||||
|
return "", 204
|
||||||
|
|
||||||
|
@app.route("/static/<path:path>")
|
||||||
|
def static_handler(request, path):
|
||||||
|
if ".." in path:
|
||||||
|
return "Not found", 404
|
||||||
|
return send_file("static/" + path)
|
||||||
|
|
||||||
|
return app
|
||||||
|
|
||||||
|
|
||||||
|
class AppRuntime:
|
||||||
|
"""Holds long-lived services started with the HTTP server."""
|
||||||
|
|
||||||
|
def __init__(self):
|
||||||
|
self.settings = get_settings()
|
||||||
|
self.audio_detector = AudioBeatDetector()
|
||||||
|
self.bridge = None
|
||||||
|
|
||||||
|
async def startup(self, *, test_mode: bool = False) -> None:
|
||||||
|
set_bridge_uplink_handler(handle_bridge_uplink)
|
||||||
|
|
||||||
|
if test_mode:
|
||||||
|
return
|
||||||
|
|
||||||
|
self.bridge = get_bridge(self.settings)
|
||||||
|
set_bridge(self.bridge)
|
||||||
|
|
||||||
|
bridge_mode = str(self.settings.get("bridge_transport") or "wifi").strip().lower()
|
||||||
|
if bridge_mode == "wifi":
|
||||||
|
ws_url = str(self.settings.get("bridge_ws_url") or "").strip()
|
||||||
|
if ws_url:
|
||||||
|
try:
|
||||||
|
ch = int(self.settings.get("wifi_channel", WIFI_CHANNEL_DEFAULT))
|
||||||
|
except (TypeError, ValueError):
|
||||||
|
ch = WIFI_CHANNEL_DEFAULT
|
||||||
|
ws_client = init_bridge_client(ws_url, wifi_channel=ch)
|
||||||
|
ws_client.set_uplink_handler(handle_bridge_uplink)
|
||||||
|
ws_client.start()
|
||||||
|
set_bridge(BridgeWsTransport())
|
||||||
|
elif bridge_mode == "serial":
|
||||||
|
serial_port = str(self.settings.get("bridge_serial_port") or "").strip()
|
||||||
|
if serial_port:
|
||||||
|
baud = 115200
|
||||||
|
for prof in self.settings.get("bridges") or []:
|
||||||
|
if not isinstance(prof, dict):
|
||||||
|
continue
|
||||||
|
if str(prof.get("transport") or "").strip().lower() != "serial":
|
||||||
|
continue
|
||||||
|
if str(prof.get("serial_port") or "").strip() != serial_port:
|
||||||
|
continue
|
||||||
|
try:
|
||||||
|
baud = int(prof.get("serial_baudrate") or baud)
|
||||||
|
except (TypeError, ValueError):
|
||||||
|
pass
|
||||||
|
break
|
||||||
|
else:
|
||||||
|
try:
|
||||||
|
baud = int(self.settings.get("bridge_serial_baudrate") or baud)
|
||||||
|
except (TypeError, ValueError):
|
||||||
|
pass
|
||||||
|
serial_client = init_bridge_serial_client(serial_port, baudrate=baud)
|
||||||
|
serial_client.set_uplink_handler(handle_bridge_uplink)
|
||||||
|
serial_client.start()
|
||||||
|
set_bridge(BridgeSerialTransport())
|
||||||
|
|
||||||
|
try:
|
||||||
|
from util import audio_detector as audio_detector_module
|
||||||
|
|
||||||
|
audio_detector_module.set_shared_beat_detector(self.audio_detector)
|
||||||
|
except Exception as e:
|
||||||
|
print(f"[startup] audio detector shared registration skipped: {e!r}")
|
||||||
|
|
||||||
|
try:
|
||||||
|
from util.audio_run_persist import coerce_audio_device, read_audio_run_state
|
||||||
|
|
||||||
|
persisted = read_audio_run_state()
|
||||||
|
if persisted.get("enabled"):
|
||||||
|
sel = persisted.get("device_select") or persisted.get("device")
|
||||||
|
dev = coerce_audio_device(sel)
|
||||||
|
self.audio_detector.start(device=dev)
|
||||||
|
print("[startup] audio beat detector started from saved run state")
|
||||||
|
except Exception as e:
|
||||||
|
print(f"[startup] audio auto-start skipped: {e!r}")
|
||||||
|
|
||||||
|
from util import beat_driver_route
|
||||||
|
|
||||||
|
beat_driver_route.set_beat_route_main_loop(asyncio.get_running_loop())
|
||||||
|
from util import sequence_playback as seq_pb
|
||||||
|
|
||||||
|
seq_pb.ensure_beat_consumer_started()
|
||||||
|
Device()
|
||||||
|
|
||||||
|
async def shutdown(self) -> None:
|
||||||
|
try:
|
||||||
|
self.audio_detector.stop()
|
||||||
|
except Exception:
|
||||||
|
pass
|
||||||
|
try:
|
||||||
|
from util import sequence_playback as seq_pb
|
||||||
|
|
||||||
|
seq_pb.stop()
|
||||||
|
for attr in ("_pending_beat_task", "_sim_beat_task"):
|
||||||
|
t = getattr(seq_pb, attr, None)
|
||||||
|
if t is not None and not t.done():
|
||||||
|
t.cancel()
|
||||||
|
except Exception:
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
def audio_status_payload(
|
||||||
|
audio_detector: AudioBeatDetector, settings: Any
|
||||||
|
) -> dict:
|
||||||
|
from util import beat_driver_route
|
||||||
|
from util import sequence_playback
|
||||||
|
from util.audio_run_persist import read_audio_run_state
|
||||||
|
|
||||||
|
st = audio_detector.status()
|
||||||
|
st["sequence"] = sequence_playback.playback_status()
|
||||||
|
st["manual_beat_stride"] = beat_driver_route.manual_beat_stride_status()
|
||||||
|
seq = st.get("sequence")
|
||||||
|
beat_readout = ""
|
||||||
|
if isinstance(seq, dict) and str(seq.get("beat_readout") or "").strip():
|
||||||
|
beat_readout = str(seq.get("beat_readout") or "").strip()
|
||||||
|
elif st.get("running"):
|
||||||
|
mb = st.get("manual_beat_stride")
|
||||||
|
if isinstance(mb, dict) and mb.get("active"):
|
||||||
|
try:
|
||||||
|
n = int(mb.get("stride_n") or 1)
|
||||||
|
except (TypeError, ValueError):
|
||||||
|
n = 1
|
||||||
|
n = max(1, min(64, n))
|
||||||
|
try:
|
||||||
|
bi = int(mb.get("beat_in_stride") or 1)
|
||||||
|
except (TypeError, ValueError):
|
||||||
|
bi = 1
|
||||||
|
pos = min(n, max(1, bi))
|
||||||
|
beat_readout = f"{pos}/{n}"
|
||||||
|
else:
|
||||||
|
try:
|
||||||
|
bs = int(st.get("beat_seq") or 0)
|
||||||
|
except (TypeError, ValueError):
|
||||||
|
bs = 0
|
||||||
|
if bs > 0:
|
||||||
|
beat_readout = str(bs)
|
||||||
|
st["beat_readout"] = beat_readout
|
||||||
|
st["beat_phase_ms"] = int(settings.get("audio_beat_phase_ms") or 0)
|
||||||
|
try:
|
||||||
|
st["input_volume"] = int(settings.get("audio_input_volume") or 100)
|
||||||
|
except (TypeError, ValueError):
|
||||||
|
st["input_volume"] = 100
|
||||||
|
st["input_volume"] = max(0, min(200, st["input_volume"]))
|
||||||
|
seq_wait = str(settings.get("sequence_switch_wait") or "beat").strip().lower()
|
||||||
|
if seq_wait not in ("beat", "downbeat"):
|
||||||
|
seq_wait = "beat"
|
||||||
|
st["sequence_switch_wait"] = seq_wait
|
||||||
|
st["audio_run"] = read_audio_run_state()
|
||||||
|
return st
|
||||||
@@ -7,14 +7,9 @@ from models.device import (
|
|||||||
validate_device_type,
|
validate_device_type,
|
||||||
)
|
)
|
||||||
from models.group import Group
|
from models.group import Group
|
||||||
from models.transport import get_current_sender
|
from models.transport import get_current_bridge
|
||||||
from settings import get_settings
|
from settings import get_settings
|
||||||
from util.brightness_combine import effective_brightness_for_mac
|
from util.brightness_combine import effective_brightness_for_mac
|
||||||
from models.wifi_ws_clients import (
|
|
||||||
normalize_tcp_peer_ip,
|
|
||||||
send_json_line_to_ip,
|
|
||||||
tcp_client_connected,
|
|
||||||
)
|
|
||||||
from util.driver_patterns import driver_patterns_dir
|
from util.driver_patterns import driver_patterns_dir
|
||||||
from util.espnow_message import build_message
|
from util.espnow_message import build_message
|
||||||
import asyncio
|
import asyncio
|
||||||
@@ -81,17 +76,8 @@ _pi_settings = get_settings()
|
|||||||
|
|
||||||
|
|
||||||
def _device_live_connected(dev_dict):
|
def _device_live_connected(dev_dict):
|
||||||
"""
|
"""ESP-NOW has no live session flag on the Pi."""
|
||||||
Wi-Fi: whether the controller has an outbound WebSocket to this device's IP.
|
|
||||||
ESP-NOW: None (no Wi-Fi session on the Pi for that transport).
|
|
||||||
"""
|
|
||||||
tr = (dev_dict.get("transport") or "espnow").strip().lower()
|
|
||||||
if tr != "wifi":
|
|
||||||
return None
|
return None
|
||||||
ip = normalize_tcp_peer_ip(dev_dict.get("address") or "")
|
|
||||||
if not ip:
|
|
||||||
return False
|
|
||||||
return tcp_client_connected(ip)
|
|
||||||
|
|
||||||
|
|
||||||
def _device_json_with_live_status(dev_dict):
|
def _device_json_with_live_status(dev_dict):
|
||||||
@@ -155,14 +141,24 @@ def _http_post_pattern_source(ip, filename, code_text, reload_patterns=True, tim
|
|||||||
return b" 2" in first_line
|
return b" 2" in first_line
|
||||||
|
|
||||||
|
|
||||||
async def _identify_send_off_after_delay(sender, transport, wifi_ip, dev_id, name):
|
async def _identify_send_off_after_delay(bridge, dev_id):
|
||||||
try:
|
try:
|
||||||
await asyncio.sleep(IDENTIFY_OFF_DELAY_S)
|
await asyncio.sleep(IDENTIFY_OFF_DELAY_S)
|
||||||
off_msg = build_message(select={name: ["off"]})
|
await bridge.send(
|
||||||
if transport == "wifi":
|
{"v": "1", "select": ["off"]},
|
||||||
await send_json_line_to_ip(wifi_ip, off_msg)
|
addr=dev_id,
|
||||||
else:
|
)
|
||||||
await sender.send(off_msg, addr=dev_id)
|
except Exception:
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
async def _identify_send_off_after_delay_broadcast(bridge, group_ids=None):
|
||||||
|
try:
|
||||||
|
await asyncio.sleep(IDENTIFY_OFF_DELAY_S)
|
||||||
|
body = {"v": "1", "select": ["off"]}
|
||||||
|
if group_ids:
|
||||||
|
body["groups"] = [str(g) for g in group_ids if str(g).strip()]
|
||||||
|
await bridge.send(body)
|
||||||
except Exception:
|
except Exception:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
@@ -177,95 +173,77 @@ async def send_identify_to_device(dev_id: str) -> tuple[int, str]:
|
|||||||
dev = devices.read(dev_id)
|
dev = devices.read(dev_id)
|
||||||
if not dev:
|
if not dev:
|
||||||
return 404, "Device not found"
|
return 404, "Device not found"
|
||||||
sender = get_current_sender()
|
bridge = get_current_bridge()
|
||||||
if not sender:
|
if not bridge:
|
||||||
return 503, "Transport not configured"
|
return 503, "Transport not configured"
|
||||||
name = str(dev.get("name") or "").strip()
|
|
||||||
if not name:
|
|
||||||
return 400, "Device must have a name to identify"
|
|
||||||
|
|
||||||
transport = dev.get("transport") or "espnow"
|
|
||||||
wifi_ip = None
|
|
||||||
if transport == "wifi":
|
|
||||||
wifi_ip = dev.get("address")
|
|
||||||
if not wifi_ip:
|
|
||||||
return 400, "Device has no IP address"
|
|
||||||
|
|
||||||
try:
|
try:
|
||||||
msg = _compact_v1_json(
|
ok = await bridge.send(
|
||||||
presets={_IDENTIFY_PRESET_KEY: dict(_IDENTIFY_DRIVER_PRESET)},
|
{
|
||||||
select={name: [_IDENTIFY_PRESET_KEY]},
|
"v": "1",
|
||||||
|
"presets": {_IDENTIFY_PRESET_KEY: dict(_IDENTIFY_DRIVER_PRESET)},
|
||||||
|
"select": [_IDENTIFY_PRESET_KEY],
|
||||||
|
},
|
||||||
|
addr=dev_id,
|
||||||
)
|
)
|
||||||
if transport == "wifi":
|
|
||||||
ok = await send_json_line_to_ip(wifi_ip, msg)
|
|
||||||
if not ok:
|
if not ok:
|
||||||
return 503, "Wi-Fi driver not connected"
|
return 503, "Send failed"
|
||||||
else:
|
|
||||||
await sender.send(msg, addr=dev_id)
|
|
||||||
|
|
||||||
asyncio.create_task(
|
asyncio.create_task(
|
||||||
_identify_send_off_after_delay(sender, transport, wifi_ip, dev_id, name)
|
_identify_send_off_after_delay(bridge, dev_id)
|
||||||
)
|
)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
return 503, str(e)
|
return 503, str(e)
|
||||||
return 200, ""
|
return 200, ""
|
||||||
|
|
||||||
|
|
||||||
async def send_identify_to_group_devices(macs: list[str]) -> tuple[int, list[dict]]:
|
async def send_identify_to_group_devices(
|
||||||
|
macs: list[str],
|
||||||
|
*,
|
||||||
|
group_ids: list[str] | None = None,
|
||||||
|
) -> tuple[int, list[dict]]:
|
||||||
"""
|
"""
|
||||||
Identify every listed registry MAC in one delivery round: merged ``select`` and a single
|
Identify all drivers in ``group_ids`` via broadcast; members filter on ``groups``.
|
||||||
ESP-NOW split envelope when multiple peers share the serial bridge (avoids per-device
|
|
||||||
``SerialSender`` lock serialisation). Wi-Fi peers are sent in parallel as in
|
``macs`` is only used for the API ``sent`` count (group member list), not for addressing.
|
||||||
``deliver_json_messages``.
|
|
||||||
"""
|
"""
|
||||||
from util.driver_delivery import deliver_json_messages
|
from util.driver_delivery import deliver_json_messages
|
||||||
|
|
||||||
errors: list[dict] = []
|
errors: list[dict] = []
|
||||||
sender = get_current_sender()
|
bridge = get_current_bridge()
|
||||||
if not sender:
|
if not bridge:
|
||||||
return 0, [{"mac": "*", "error": "Transport not configured"}]
|
return 0, [{"mac": "*", "error": "Transport not configured"}]
|
||||||
|
|
||||||
merged_select: dict[str, list[str]] = {}
|
body = {
|
||||||
valid_macs: list[str] = []
|
"v": "1",
|
||||||
for dev_id in macs:
|
"presets": {_IDENTIFY_PRESET_KEY: dict(_IDENTIFY_DRIVER_PRESET)},
|
||||||
dev = devices.read(dev_id)
|
"select": [_IDENTIFY_PRESET_KEY],
|
||||||
if not dev:
|
}
|
||||||
errors.append({"mac": dev_id, "error": "Device not found"})
|
gids = [str(g).strip() for g in (group_ids or []) if str(g).strip()]
|
||||||
continue
|
if gids:
|
||||||
name = str(dev.get("name") or "").strip()
|
body["groups"] = gids
|
||||||
if not name:
|
|
||||||
errors.append({"mac": dev_id, "error": "Device must have a name to identify"})
|
|
||||||
continue
|
|
||||||
transport = (dev.get("transport") or "espnow").strip().lower()
|
|
||||||
if transport == "wifi":
|
|
||||||
if not dev.get("address"):
|
|
||||||
errors.append({"mac": dev_id, "error": "Device has no IP address"})
|
|
||||||
continue
|
|
||||||
merged_select[name] = [_IDENTIFY_PRESET_KEY]
|
|
||||||
valid_macs.append(dev_id)
|
|
||||||
|
|
||||||
if not merged_select:
|
|
||||||
return 0, errors
|
|
||||||
|
|
||||||
try:
|
try:
|
||||||
msg = _compact_v1_json(
|
deliveries, _chunks = await deliver_json_messages(
|
||||||
presets={_IDENTIFY_PRESET_KEY: dict(_IDENTIFY_DRIVER_PRESET)},
|
bridge,
|
||||||
select=merged_select,
|
[json.dumps(body, separators=(",", ":"))],
|
||||||
|
None,
|
||||||
|
devices,
|
||||||
|
delay_s=0,
|
||||||
)
|
)
|
||||||
await deliver_json_messages(sender, [msg], valid_macs, devices, delay_s=0)
|
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
return 0, errors + [{"mac": "*", "error": str(e)}]
|
return 0, errors + [{"mac": "*", "error": str(e)}]
|
||||||
|
|
||||||
for dev_id in valid_macs:
|
if deliveries < 1:
|
||||||
dev = devices.read(dev_id) or {}
|
return 0, errors + [{"mac": "*", "error": "Send failed"}]
|
||||||
name = str(dev.get("name") or "").strip()
|
|
||||||
transport = (dev.get("transport") or "espnow").strip().lower()
|
|
||||||
wifi_ip = dev.get("address") if transport == "wifi" else None
|
|
||||||
asyncio.create_task(
|
|
||||||
_identify_send_off_after_delay(sender, transport, wifi_ip, dev_id, name)
|
|
||||||
)
|
|
||||||
|
|
||||||
return len(valid_macs), errors
|
asyncio.create_task(_identify_send_off_after_delay_broadcast(bridge, gids))
|
||||||
|
|
||||||
|
seen: set[str] = set()
|
||||||
|
for raw in macs:
|
||||||
|
m = normalize_mac(str(raw))
|
||||||
|
if m and m not in seen:
|
||||||
|
seen.add(m)
|
||||||
|
return len(seen), errors
|
||||||
|
|
||||||
|
|
||||||
@controller.get("")
|
@controller.get("")
|
||||||
@@ -435,6 +413,46 @@ async def delete_device(request, id):
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@controller.post("/groups")
|
||||||
|
async def update_device_groups(request):
|
||||||
|
"""Push current group membership to all ESP-NOW drivers in the registry."""
|
||||||
|
_ = request
|
||||||
|
from util.espnow_registry import push_groups_all_espnow_devices
|
||||||
|
|
||||||
|
result = await push_groups_all_espnow_devices()
|
||||||
|
status = 200 if result.get("ok") else 503
|
||||||
|
if not result.get("total"):
|
||||||
|
return (
|
||||||
|
json.dumps({"ok": False, "error": "No ESP-NOW devices in registry"}),
|
||||||
|
400,
|
||||||
|
{"Content-Type": "application/json"},
|
||||||
|
)
|
||||||
|
return json.dumps(result), status, {"Content-Type": "application/json"}
|
||||||
|
|
||||||
|
|
||||||
|
@controller.post("/ping")
|
||||||
|
async def ping_devices(request):
|
||||||
|
"""
|
||||||
|
Broadcast ESP-NOW PING_REQ; collect PING_RSP until timeout (default 3 s).
|
||||||
|
JSON body: ``{"timeout_s": 3.0}`` (optional).
|
||||||
|
"""
|
||||||
|
from util.espnow_ping import run_ping
|
||||||
|
|
||||||
|
timeout_s = 3.0
|
||||||
|
try:
|
||||||
|
body = request.json or {}
|
||||||
|
if isinstance(body, dict) and body.get("timeout_s") is not None:
|
||||||
|
timeout_s = float(body["timeout_s"])
|
||||||
|
except (TypeError, ValueError):
|
||||||
|
return json.dumps({"error": "Invalid timeout_s"}), 400, {
|
||||||
|
"Content-Type": "application/json",
|
||||||
|
}
|
||||||
|
timeout_s = max(0.5, min(30.0, timeout_s))
|
||||||
|
result = await run_ping(timeout_s=timeout_s)
|
||||||
|
status = 200 if result.get("ok") else 503
|
||||||
|
return json.dumps(result), status, {"Content-Type": "application/json"}
|
||||||
|
|
||||||
|
|
||||||
@controller.post("/<id>/identify")
|
@controller.post("/<id>/identify")
|
||||||
async def identify_device(request, id):
|
async def identify_device(request, id):
|
||||||
"""
|
"""
|
||||||
@@ -476,28 +494,17 @@ async def push_device_output_brightness(request, id):
|
|||||||
zone_brightness=zb,
|
zone_brightness=zb,
|
||||||
)
|
)
|
||||||
|
|
||||||
msg = _brightness_save_message_json(b_val)
|
bridge = get_current_bridge()
|
||||||
transport = (dev.get("transport") or "espnow").strip().lower()
|
if not bridge:
|
||||||
|
|
||||||
if transport == "wifi":
|
|
||||||
ip = normalize_tcp_peer_ip(str(dev.get("address") or ""))
|
|
||||||
if not ip:
|
|
||||||
return json.dumps({"error": "Device has no IP address"}), 400, {
|
|
||||||
"Content-Type": "application/json",
|
|
||||||
}
|
|
||||||
ok = await send_json_line_to_ip(ip, msg)
|
|
||||||
if not ok:
|
|
||||||
return json.dumps({"error": "Wi-Fi driver not connected"}), 503, {
|
|
||||||
"Content-Type": "application/json",
|
|
||||||
}
|
|
||||||
else:
|
|
||||||
sender = get_current_sender()
|
|
||||||
if not sender:
|
|
||||||
return json.dumps({"error": "Transport not configured"}), 503, {
|
return json.dumps({"error": "Transport not configured"}), 503, {
|
||||||
"Content-Type": "application/json",
|
"Content-Type": "application/json",
|
||||||
}
|
}
|
||||||
try:
|
try:
|
||||||
await sender.send(msg, addr=id)
|
ok = await bridge.send({"v": "1", "b": b_val, "save": True}, addr=id)
|
||||||
|
if not ok:
|
||||||
|
return json.dumps({"error": "Send failed"}), 503, {
|
||||||
|
"Content-Type": "application/json",
|
||||||
|
}
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
return json.dumps({"error": str(e)}), 503, {"Content-Type": "application/json"}
|
return json.dumps({"error": str(e)}), 503, {"Content-Type": "application/json"}
|
||||||
|
|
||||||
@@ -509,7 +516,7 @@ async def push_device_output_brightness(request, id):
|
|||||||
@controller.post("/<id>/driver-config")
|
@controller.post("/<id>/driver-config")
|
||||||
async def push_driver_config(request, id):
|
async def push_driver_config(request, id):
|
||||||
"""
|
"""
|
||||||
Push ``device_config`` to a Wi‑Fi LED driver over WebSocket.
|
Push ``device_config`` to an ESP-NOW LED driver.
|
||||||
Body JSON: optional ``name``, ``num_leds``, ``color_order``, ``startup_mode`` (default|last|off).
|
Body JSON: optional ``name``, ``num_leds``, ``color_order``, ``startup_mode`` (default|last|off).
|
||||||
"""
|
"""
|
||||||
dev = devices.read(id)
|
dev = devices.read(id)
|
||||||
@@ -517,13 +524,9 @@ async def push_driver_config(request, id):
|
|||||||
return json.dumps({"error": "Device not found"}), 404, {
|
return json.dumps({"error": "Device not found"}), 404, {
|
||||||
"Content-Type": "application/json",
|
"Content-Type": "application/json",
|
||||||
}
|
}
|
||||||
if (dev.get("transport") or "").lower() != "wifi":
|
bridge = get_current_bridge()
|
||||||
return json.dumps({"error": "driver-config is only for Wi-Fi devices"}), 400, {
|
if not bridge:
|
||||||
"Content-Type": "application/json",
|
return json.dumps({"error": "Transport not configured"}), 503, {
|
||||||
}
|
|
||||||
wifi_ip = str(dev.get("address") or "").strip()
|
|
||||||
if not wifi_ip:
|
|
||||||
return json.dumps({"error": "Device has no IP address"}), 400, {
|
|
||||||
"Content-Type": "application/json",
|
"Content-Type": "application/json",
|
||||||
}
|
}
|
||||||
body = request.json or {}
|
body = request.json or {}
|
||||||
@@ -551,12 +554,9 @@ async def push_driver_config(request, id):
|
|||||||
"error": "Provide at least one of name, num_leds, color_order, startup_mode"
|
"error": "Provide at least one of name, num_leds, color_order, startup_mode"
|
||||||
}
|
}
|
||||||
), 400, {"Content-Type": "application/json"}
|
), 400, {"Content-Type": "application/json"}
|
||||||
msg = json.dumps(
|
ok = await bridge.send({"v": "1", "device_config": dc, "save": True}, addr=id)
|
||||||
{"v": "1", "device_config": dc, "save": True}, separators=(",", ":")
|
|
||||||
)
|
|
||||||
ok = await send_json_line_to_ip(wifi_ip, msg)
|
|
||||||
if not ok:
|
if not ok:
|
||||||
return json.dumps({"error": "Wi-Fi driver not connected"}), 503, {
|
return json.dumps({"error": "Send failed"}), 503, {
|
||||||
"Content-Type": "application/json",
|
"Content-Type": "application/json",
|
||||||
}
|
}
|
||||||
return json.dumps({"message": "driver-config sent"}), 200, {
|
return json.dumps({"message": "driver-config sent"}), 200, {
|
||||||
@@ -567,71 +567,13 @@ async def push_driver_config(request, id):
|
|||||||
@controller.post("/<id>/patterns/push")
|
@controller.post("/<id>/patterns/push")
|
||||||
async def push_patterns_ota(request, id):
|
async def push_patterns_ota(request, id):
|
||||||
"""
|
"""
|
||||||
Push all local pattern files directly to a Wi-Fi LED driver over HTTP upload.
|
Pattern OTA over HTTP is not available for ESP-NOW drivers.
|
||||||
"""
|
"""
|
||||||
dev = devices.read(id)
|
dev = devices.read(id)
|
||||||
if not dev:
|
if not dev:
|
||||||
return json.dumps({"error": "Device not found"}), 404, {
|
return json.dumps({"error": "Device not found"}), 404, {
|
||||||
"Content-Type": "application/json",
|
"Content-Type": "application/json",
|
||||||
}
|
}
|
||||||
if (dev.get("transport") or "").lower() != "wifi":
|
return json.dumps(
|
||||||
return json.dumps({"error": "Pattern OTA push is only supported for Wi-Fi devices"}), 400, {
|
{"error": "Pattern OTA push is not supported for ESP-NOW devices"}
|
||||||
"Content-Type": "application/json",
|
), 400, {"Content-Type": "application/json"}
|
||||||
}
|
|
||||||
wifi_ip = str(dev.get("address") or "").strip()
|
|
||||||
if not wifi_ip:
|
|
||||||
return json.dumps({"error": "Device has no IP address"}), 400, {
|
|
||||||
"Content-Type": "application/json",
|
|
||||||
}
|
|
||||||
|
|
||||||
base_dir = driver_patterns_dir()
|
|
||||||
try:
|
|
||||||
names = sorted(os.listdir(base_dir))
|
|
||||||
except OSError as e:
|
|
||||||
return json.dumps({"error": str(e)}), 500, {
|
|
||||||
"Content-Type": "application/json",
|
|
||||||
}
|
|
||||||
|
|
||||||
files = [n for n in names if _safe_pattern_filename(n) and n != "__init__.py"]
|
|
||||||
if not files:
|
|
||||||
return json.dumps({"error": "No pattern files found"}), 404, {
|
|
||||||
"Content-Type": "application/json",
|
|
||||||
}
|
|
||||||
|
|
||||||
sent = []
|
|
||||||
failed = []
|
|
||||||
total = len(files)
|
|
||||||
for idx, filename in enumerate(files):
|
|
||||||
path = os.path.join(base_dir, filename)
|
|
||||||
try:
|
|
||||||
with open(path, "r") as f:
|
|
||||||
code = f.read()
|
|
||||||
except OSError:
|
|
||||||
failed.append(filename)
|
|
||||||
continue
|
|
||||||
reload_patterns = idx == (total - 1)
|
|
||||||
ok = _http_post_pattern_source(
|
|
||||||
wifi_ip,
|
|
||||||
filename,
|
|
||||||
code,
|
|
||||||
reload_patterns=reload_patterns,
|
|
||||||
timeout_s=10.0,
|
|
||||||
)
|
|
||||||
if ok:
|
|
||||||
sent.append(filename)
|
|
||||||
else:
|
|
||||||
failed.append(filename)
|
|
||||||
|
|
||||||
if not sent:
|
|
||||||
return json.dumps({"error": "Wi-Fi driver did not accept pattern uploads", "failed": failed}), 503, {
|
|
||||||
"Content-Type": "application/json",
|
|
||||||
}
|
|
||||||
|
|
||||||
return json.dumps({
|
|
||||||
"message": "Pattern files uploaded",
|
|
||||||
"sent_count": len(sent),
|
|
||||||
"sent": sent,
|
|
||||||
"failed": failed,
|
|
||||||
}), 200, {
|
|
||||||
"Content-Type": "application/json",
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -3,8 +3,8 @@ from microdot.session import with_session
|
|||||||
import asyncio
|
import asyncio
|
||||||
from models.group import Group
|
from models.group import Group
|
||||||
from models.device import Device
|
from models.device import Device
|
||||||
from models.transport import get_current_sender
|
from models.transport import get_current_bridge
|
||||||
from models.wifi_ws_clients import normalize_tcp_peer_ip, send_json_line_to_ip
|
from util.espnow_registry import push_groups_for_group_devices
|
||||||
from settings import get_settings
|
from settings import get_settings
|
||||||
from util.brightness_combine import effective_brightness_for_mac
|
from util.brightness_combine import effective_brightness_for_mac
|
||||||
import json
|
import json
|
||||||
@@ -62,6 +62,12 @@ async def get_group(request, session, id):
|
|||||||
return json.dumps(group), 200, {"Content-Type": "application/json"}
|
return json.dumps(group), 200, {"Content-Type": "application/json"}
|
||||||
|
|
||||||
|
|
||||||
|
def _sanitize_group_bridge_id_write(data):
|
||||||
|
"""Per-group bridge assignment is disabled; ignore writes."""
|
||||||
|
if isinstance(data, dict) and "bridge_id" in data:
|
||||||
|
data["bridge_id"] = None
|
||||||
|
|
||||||
|
|
||||||
def _sanitize_group_profile_id_write(data, session):
|
def _sanitize_group_profile_id_write(data, session):
|
||||||
"""Allow ``profile_id`` only for the active profile, or null to share across profiles."""
|
"""Allow ``profile_id`` only for the active profile, or null to share across profiles."""
|
||||||
if not isinstance(data, dict):
|
if not isinstance(data, dict):
|
||||||
@@ -92,6 +98,7 @@ async def create_group(request, session):
|
|||||||
name = data.get("name", "")
|
name = data.get("name", "")
|
||||||
profile_scoped = bool(data.pop("profile_scoped", False))
|
profile_scoped = bool(data.pop("profile_scoped", False))
|
||||||
_sanitize_group_profile_id_write(data, session)
|
_sanitize_group_profile_id_write(data, session)
|
||||||
|
_sanitize_group_bridge_id_write(data)
|
||||||
group_id = groups.create(name)
|
group_id = groups.create(name)
|
||||||
if data:
|
if data:
|
||||||
groups.update(group_id, data)
|
groups.update(group_id, data)
|
||||||
@@ -101,6 +108,9 @@ async def create_group(request, session):
|
|||||||
cur = get_current_profile_id(session)
|
cur = get_current_profile_id(session)
|
||||||
if cur:
|
if cur:
|
||||||
groups.update(group_id, {"profile_id": str(cur)})
|
groups.update(group_id, {"profile_id": str(cur)})
|
||||||
|
g = groups.read(group_id)
|
||||||
|
if g:
|
||||||
|
await push_groups_for_group_devices(g)
|
||||||
return json.dumps(groups.read(group_id)), 201, {"Content-Type": "application/json"}
|
return json.dumps(groups.read(group_id)), 201, {"Content-Type": "application/json"}
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
return json.dumps({"error": str(e)}), 400
|
return json.dumps({"error": str(e)}), 400
|
||||||
@@ -116,9 +126,11 @@ async def update_group(request, session, id):
|
|||||||
return json.dumps({"error": "Invalid JSON"}), 400, {"Content-Type": "application/json"}
|
return json.dumps({"error": "Invalid JSON"}), 400, {"Content-Type": "application/json"}
|
||||||
data = dict(data)
|
data = dict(data)
|
||||||
_sanitize_group_profile_id_write(data, session)
|
_sanitize_group_profile_id_write(data, session)
|
||||||
|
_sanitize_group_bridge_id_write(data)
|
||||||
if groups.update(id, data):
|
if groups.update(id, data):
|
||||||
g = groups.read(id)
|
g = groups.read(id)
|
||||||
if g:
|
if g:
|
||||||
|
await push_groups_for_group_devices(g)
|
||||||
return json.dumps(g), 200, {"Content-Type": "application/json"}
|
return json.dumps(g), 200, {"Content-Type": "application/json"}
|
||||||
return json.dumps({"error": "Group not found"}), 404
|
return json.dumps({"error": "Group not found"}), 404
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
@@ -135,7 +147,9 @@ async def delete_group(request, session, id):
|
|||||||
|
|
||||||
if not _group_doc_visible_for_profile(g, get_current_profile_id(session)):
|
if not _group_doc_visible_for_profile(g, get_current_profile_id(session)):
|
||||||
return json.dumps({"error": "Group not found"}), 404
|
return json.dumps({"error": "Group not found"}), 404
|
||||||
|
macs = list(g.get("devices") or []) if isinstance(g, dict) else []
|
||||||
if groups.delete(id):
|
if groups.delete(id):
|
||||||
|
await push_groups_for_group_devices({"devices": macs})
|
||||||
return json.dumps({"message": "Group deleted successfully"}), 200
|
return json.dumps({"message": "Group deleted successfully"}), 200
|
||||||
return json.dumps({"error": "Group not found"}), 404
|
return json.dumps({"error": "Group not found"}), 404
|
||||||
|
|
||||||
@@ -184,7 +198,7 @@ def _read_group_for_session(session, id):
|
|||||||
@with_session
|
@with_session
|
||||||
async def push_group_driver_config(request, session, id):
|
async def push_group_driver_config(request, session, id):
|
||||||
"""
|
"""
|
||||||
Push group Wi‑Fi defaults to every Wi‑Fi device listed in the group (TCP WebSocket).
|
Push group driver defaults to every ESP-NOW device listed in the group.
|
||||||
Uses stored ``wifi_*`` fields on the group; optional JSON body may override for this send only.
|
Uses stored ``wifi_*`` fields on the group; optional JSON body may override for this send only.
|
||||||
"""
|
"""
|
||||||
gdoc = _read_group_for_session(session, id)
|
gdoc = _read_group_for_session(session, id)
|
||||||
@@ -211,11 +225,10 @@ async def push_group_driver_config(request, session, id):
|
|||||||
mac_list = gdoc.get("devices") if isinstance(gdoc.get("devices"), list) else []
|
mac_list = gdoc.get("devices") if isinstance(gdoc.get("devices"), list) else []
|
||||||
sent = 0
|
sent = 0
|
||||||
errors = []
|
errors = []
|
||||||
msg = json.dumps(
|
bridge = get_current_bridge()
|
||||||
{"v": "1", "device_config": dc, "save": True}, separators=(",", ":")
|
if not bridge:
|
||||||
)
|
return json.dumps({"error": "Transport not configured"}), 503
|
||||||
tasks = []
|
payload = {"v": "1", "device_config": dc, "save": True}
|
||||||
meta_macs = []
|
|
||||||
for mac in mac_list:
|
for mac in mac_list:
|
||||||
m = str(mac).strip().lower().replace(":", "").replace("-", "")
|
m = str(mac).strip().lower().replace(":", "").replace("-", "")
|
||||||
if len(m) != 12:
|
if len(m) != 12:
|
||||||
@@ -224,23 +237,13 @@ async def push_group_driver_config(request, session, id):
|
|||||||
if not dev:
|
if not dev:
|
||||||
errors.append({"mac": m, "error": "not in registry"})
|
errors.append({"mac": m, "error": "not in registry"})
|
||||||
continue
|
continue
|
||||||
if (dev.get("transport") or "").lower() != "wifi":
|
try:
|
||||||
continue
|
if await bridge.send(payload, addr=m):
|
||||||
ip = normalize_tcp_peer_ip(str(dev.get("address") or ""))
|
|
||||||
if not ip:
|
|
||||||
errors.append({"mac": m, "error": "no IP"})
|
|
||||||
continue
|
|
||||||
tasks.append(send_json_line_to_ip(ip, msg))
|
|
||||||
meta_macs.append(m)
|
|
||||||
if tasks:
|
|
||||||
results = await asyncio.gather(*tasks, return_exceptions=True)
|
|
||||||
for m, r in zip(meta_macs, results):
|
|
||||||
if r is True:
|
|
||||||
sent += 1
|
sent += 1
|
||||||
elif isinstance(r, Exception):
|
|
||||||
errors.append({"mac": m, "error": str(r)})
|
|
||||||
else:
|
else:
|
||||||
errors.append({"mac": m, "error": "driver not connected"})
|
errors.append({"mac": m, "error": "send failed"})
|
||||||
|
except Exception as e:
|
||||||
|
errors.append({"mac": m, "error": str(e)})
|
||||||
|
|
||||||
return json.dumps(
|
return json.dumps(
|
||||||
{"message": "driver-config sent", "sent": sent, "errors": errors}
|
{"message": "driver-config sent", "sent": sent, "errors": errors}
|
||||||
@@ -265,7 +268,7 @@ async def push_group_output_brightness(request, session, id):
|
|||||||
mac_list = gdoc.get("devices") if isinstance(gdoc.get("devices"), list) else []
|
mac_list = gdoc.get("devices") if isinstance(gdoc.get("devices"), list) else []
|
||||||
sent = 0
|
sent = 0
|
||||||
errors = []
|
errors = []
|
||||||
sender = get_current_sender()
|
bridge = get_current_bridge()
|
||||||
|
|
||||||
async def _push_brightness_one(m: str, dev: dict) -> tuple[str, bool, str | None]:
|
async def _push_brightness_one(m: str, dev: dict) -> tuple[str, bool, str | None]:
|
||||||
b_val = effective_brightness_for_mac(
|
b_val = effective_brightness_for_mac(
|
||||||
@@ -275,19 +278,11 @@ async def push_group_output_brightness(request, session, id):
|
|||||||
m,
|
m,
|
||||||
zone_brightness=None,
|
zone_brightness=None,
|
||||||
)
|
)
|
||||||
msg = _brightness_save_message_json(b_val)
|
if not bridge:
|
||||||
transport = (dev.get("transport") or "espnow").strip().lower()
|
|
||||||
if transport == "wifi":
|
|
||||||
ip = normalize_tcp_peer_ip(str(dev.get("address") or ""))
|
|
||||||
if not ip:
|
|
||||||
return m, False, "no IP"
|
|
||||||
ok = await send_json_line_to_ip(ip, msg)
|
|
||||||
return m, bool(ok), None if ok else "driver not connected"
|
|
||||||
if not sender:
|
|
||||||
return m, False, "transport not configured"
|
return m, False, "transport not configured"
|
||||||
try:
|
try:
|
||||||
await sender.send(msg, addr=m)
|
ok = await bridge.send({"v": "1", "b": b_val, "save": True}, addr=m)
|
||||||
return m, True, None
|
return m, bool(ok), None if ok else "send failed"
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
return m, False, str(e)
|
return m, False, str(e)
|
||||||
|
|
||||||
@@ -351,7 +346,9 @@ async def identify_group_devices(request, session, id):
|
|||||||
{"message": "identify group done", "sent": 0, "errors": errors}
|
{"message": "identify group done", "sent": 0, "errors": errors}
|
||||||
), 200, {"Content-Type": "application/json"}
|
), 200, {"Content-Type": "application/json"}
|
||||||
|
|
||||||
sent, batch_errors = await send_identify_to_group_devices(normalized)
|
sent, batch_errors = await send_identify_to_group_devices(
|
||||||
|
normalized, group_ids=[str(id)]
|
||||||
|
)
|
||||||
errors.extend(batch_errors)
|
errors.extend(batch_errors)
|
||||||
|
|
||||||
return json.dumps(
|
return json.dumps(
|
||||||
|
|||||||
@@ -4,8 +4,11 @@ from models.preset import Preset
|
|||||||
from models.profile import Profile
|
from models.profile import Profile
|
||||||
from models.pallet import Palette
|
from models.pallet import Palette
|
||||||
from models.device import Device, normalize_mac
|
from models.device import Device, normalize_mac
|
||||||
from models.transport import get_current_sender
|
from models.transport import get_current_bridge
|
||||||
from util.driver_delivery import deliver_json_messages, deliver_preset_broadcast_then_per_device
|
from util.driver_delivery import (
|
||||||
|
build_preset_json_chunks,
|
||||||
|
deliver_json_messages,
|
||||||
|
)
|
||||||
from util.espnow_message import build_message, build_preset_dict
|
from util.espnow_message import build_message, build_preset_dict
|
||||||
from util.profile_bundle import export_preset_bundle, import_preset_bundle
|
from util.profile_bundle import export_preset_bundle, import_preset_bundle
|
||||||
import json
|
import json
|
||||||
@@ -221,42 +224,16 @@ async def send_presets(request, session):
|
|||||||
if default_id is not None and str(default_id) not in presets_by_name:
|
if default_id is not None and str(default_id) not in presets_by_name:
|
||||||
default_id = None
|
default_id = None
|
||||||
|
|
||||||
sender = get_current_sender()
|
bridge = get_current_bridge()
|
||||||
if not sender:
|
if not bridge:
|
||||||
return json.dumps({"error": "Transport not configured"}), 503, {'Content-Type': 'application/json'}
|
return json.dumps({"error": "Transport not configured"}), 503, {'Content-Type': 'application/json'}
|
||||||
|
|
||||||
MAX_BYTES = 240
|
|
||||||
send_delay_s = 0.1
|
send_delay_s = 0.1
|
||||||
entries = list(presets_by_name.items())
|
total_presets = len(presets_by_name)
|
||||||
total_presets = len(entries)
|
chunk_messages = build_preset_json_chunks(
|
||||||
|
presets_by_name,
|
||||||
batch = {}
|
|
||||||
chunk_messages = []
|
|
||||||
for name, preset_obj in entries:
|
|
||||||
test_batch = dict(batch)
|
|
||||||
test_batch[name] = preset_obj
|
|
||||||
test_msg = build_message(presets=test_batch, save=save_flag, default=default_id)
|
|
||||||
size = len(test_msg)
|
|
||||||
|
|
||||||
if size <= MAX_BYTES or not batch:
|
|
||||||
batch = test_batch
|
|
||||||
else:
|
|
||||||
chunk_messages.append(
|
|
||||||
build_message(
|
|
||||||
presets=dict(batch),
|
|
||||||
save=False,
|
|
||||||
default=None,
|
|
||||||
)
|
|
||||||
)
|
|
||||||
batch = {name: preset_obj}
|
|
||||||
|
|
||||||
if batch:
|
|
||||||
chunk_messages.append(
|
|
||||||
build_message(
|
|
||||||
presets=dict(batch),
|
|
||||||
save=save_flag,
|
save=save_flag,
|
||||||
default=default_id,
|
default=str(default_id) if default_id is not None else None,
|
||||||
)
|
|
||||||
)
|
)
|
||||||
|
|
||||||
target_list = None
|
target_list = None
|
||||||
@@ -274,20 +251,50 @@ async def send_presets(request, session):
|
|||||||
dm = normalize_mac(str(destination_mac))
|
dm = normalize_mac(str(destination_mac))
|
||||||
target_list = [dm] if dm else None
|
target_list = [dm] if dm else None
|
||||||
|
|
||||||
|
group_ids = data.get("group_ids") or data.get("groups")
|
||||||
|
if isinstance(group_ids, list):
|
||||||
|
group_ids = [str(g).strip() for g in group_ids if str(g).strip()]
|
||||||
|
else:
|
||||||
|
group_ids = None
|
||||||
|
|
||||||
|
unicast = bool(data.get("unicast")) or bool(destination_mac)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
if target_list:
|
if unicast and target_list:
|
||||||
deliveries = await deliver_preset_broadcast_then_per_device(
|
deliveries = 0
|
||||||
sender,
|
for msg in chunk_messages:
|
||||||
chunk_messages,
|
d, _chunks = await deliver_json_messages(
|
||||||
|
bridge, [msg],
|
||||||
target_list,
|
target_list,
|
||||||
Device(),
|
Device(),
|
||||||
str(default_id) if default_id is not None else None,
|
|
||||||
delay_s=send_delay_s,
|
delay_s=send_delay_s,
|
||||||
|
unicast=True,
|
||||||
)
|
)
|
||||||
|
deliveries += d
|
||||||
|
if default_id is not None:
|
||||||
|
def_msg = json.dumps(
|
||||||
|
{"v": "1", "default": str(default_id), "save": True},
|
||||||
|
separators=(",", ":"),
|
||||||
|
)
|
||||||
|
d, _chunks = await deliver_json_messages(
|
||||||
|
bridge,
|
||||||
|
[def_msg],
|
||||||
|
target_list,
|
||||||
|
Device(),
|
||||||
|
delay_s=send_delay_s,
|
||||||
|
unicast=True,
|
||||||
|
)
|
||||||
|
deliveries += d
|
||||||
else:
|
else:
|
||||||
|
wire_messages = []
|
||||||
|
for msg in chunk_messages:
|
||||||
|
body = json.loads(msg)
|
||||||
|
if group_ids:
|
||||||
|
body["groups"] = list(group_ids)
|
||||||
|
wire_messages.append(json.dumps(body, separators=(",", ":")))
|
||||||
deliveries, _chunks = await deliver_json_messages(
|
deliveries, _chunks = await deliver_json_messages(
|
||||||
sender,
|
bridge,
|
||||||
chunk_messages,
|
wire_messages,
|
||||||
None,
|
None,
|
||||||
Device(),
|
Device(),
|
||||||
delay_s=send_delay_s,
|
delay_s=send_delay_s,
|
||||||
@@ -335,18 +342,37 @@ async def push_driver_messages(request, session):
|
|||||||
if not target_list:
|
if not target_list:
|
||||||
target_list = None
|
target_list = None
|
||||||
|
|
||||||
sender = get_current_sender()
|
bridge = get_current_bridge()
|
||||||
if not sender:
|
if not bridge:
|
||||||
return json.dumps({"error": "Transport not configured"}), 503, {'Content-Type': 'application/json'}
|
return json.dumps({"error": "Transport not configured"}), 503, {'Content-Type': 'application/json'}
|
||||||
|
|
||||||
messages = []
|
messages = []
|
||||||
for item in seq:
|
i = 0
|
||||||
if isinstance(item, dict):
|
while i < len(seq):
|
||||||
messages.append(json.dumps(item))
|
item = seq[i]
|
||||||
elif isinstance(item, str):
|
if not isinstance(item, dict):
|
||||||
|
if isinstance(item, str):
|
||||||
messages.append(item)
|
messages.append(item)
|
||||||
else:
|
i += 1
|
||||||
|
continue
|
||||||
return json.dumps({"error": "sequence items must be objects or strings"}), 400, {'Content-Type': 'application/json'}
|
return json.dumps({"error": "sequence items must be objects or strings"}), 400, {'Content-Type': 'application/json'}
|
||||||
|
nxt = seq[i + 1] if i + 1 < len(seq) else None
|
||||||
|
if (
|
||||||
|
isinstance(nxt, dict)
|
||||||
|
and "presets" in item
|
||||||
|
and "select" not in item
|
||||||
|
and "select" in nxt
|
||||||
|
and "presets" not in nxt
|
||||||
|
):
|
||||||
|
combined = dict(item)
|
||||||
|
combined["select"] = nxt["select"]
|
||||||
|
combined_str = json.dumps(combined, separators=(",", ":"))
|
||||||
|
if len(combined_str.encode("utf-8")) <= 248:
|
||||||
|
messages.append(combined_str)
|
||||||
|
i += 2
|
||||||
|
continue
|
||||||
|
messages.append(json.dumps(item, separators=(",", ":")))
|
||||||
|
i += 1
|
||||||
|
|
||||||
delay_s = data.get("delay_s", 0.05)
|
delay_s = data.get("delay_s", 0.05)
|
||||||
try:
|
try:
|
||||||
@@ -354,13 +380,16 @@ async def push_driver_messages(request, session):
|
|||||||
except (TypeError, ValueError):
|
except (TypeError, ValueError):
|
||||||
delay_s = 0.05
|
delay_s = 0.05
|
||||||
|
|
||||||
|
unicast = bool(data.get("unicast"))
|
||||||
|
|
||||||
try:
|
try:
|
||||||
deliveries, _chunks = await deliver_json_messages(
|
deliveries, _chunks = await deliver_json_messages(
|
||||||
sender,
|
bridge,
|
||||||
messages,
|
messages,
|
||||||
target_list,
|
target_list,
|
||||||
Device(),
|
Device(),
|
||||||
delay_s=delay_s,
|
delay_s=delay_s,
|
||||||
|
unicast=unicast,
|
||||||
)
|
)
|
||||||
except Exception:
|
except Exception:
|
||||||
return json.dumps({"error": "Send failed"}), 503, {'Content-Type': 'application/json'}
|
return json.dumps({"error": "Send failed"}), 503, {'Content-Type': 'application/json'}
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ from microdot import Microdot
|
|||||||
from microdot.session import with_session
|
from microdot.session import with_session
|
||||||
from models.sequence import Sequence
|
from models.sequence import Sequence
|
||||||
from models.profile import Profile
|
from models.profile import Profile
|
||||||
from models.transport import get_current_sender
|
from models.transport import get_current_bridge
|
||||||
from models.preset import Preset
|
from models.preset import Preset
|
||||||
from util.profile_bundle import export_sequence_bundle, import_sequence_bundle
|
from util.profile_bundle import export_sequence_bundle, import_sequence_bundle
|
||||||
import json
|
import json
|
||||||
@@ -254,7 +254,7 @@ async def stop_sequence_playback(request, session):
|
|||||||
@with_session
|
@with_session
|
||||||
async def play_sequence(request, session, id):
|
async def play_sequence(request, session, id):
|
||||||
"""Start server-driven playback for a sequence in a zone (body: {\"zone_id\": \"...\"})."""
|
"""Start server-driven playback for a sequence in a zone (body: {\"zone_id\": \"...\"})."""
|
||||||
if not get_current_sender():
|
if not get_current_bridge():
|
||||||
return (
|
return (
|
||||||
json.dumps({"error": "Transport not configured"}),
|
json.dumps({"error": "Transport not configured"}),
|
||||||
503,
|
503,
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ import json
|
|||||||
|
|
||||||
from microdot import Microdot, send_file
|
from microdot import Microdot, send_file
|
||||||
|
|
||||||
from models import wifi_ws_clients
|
|
||||||
from settings import get_settings
|
from settings import get_settings
|
||||||
|
|
||||||
controller = Microdot()
|
controller = Microdot()
|
||||||
@@ -89,6 +88,13 @@ def _validate_audio_beat_phase_ms(value):
|
|||||||
return v
|
return v
|
||||||
|
|
||||||
|
|
||||||
|
def _validate_audio_input_volume(value):
|
||||||
|
v = int(value)
|
||||||
|
if v < 0 or v > 200:
|
||||||
|
raise ValueError("audio_input_volume must be between 0 and 200")
|
||||||
|
return v
|
||||||
|
|
||||||
|
|
||||||
@controller.put('')
|
@controller.put('')
|
||||||
async def update_settings(request):
|
async def update_settings(request):
|
||||||
"""Update general settings."""
|
"""Update general settings."""
|
||||||
@@ -105,16 +111,11 @@ async def update_settings(request):
|
|||||||
settings[key] = _validate_sequence_switch_wait(value)
|
settings[key] = _validate_sequence_switch_wait(value)
|
||||||
elif key == 'audio_beat_phase_ms' and value is not None:
|
elif key == 'audio_beat_phase_ms' and value is not None:
|
||||||
settings[key] = _validate_audio_beat_phase_ms(value)
|
settings[key] = _validate_audio_beat_phase_ms(value)
|
||||||
|
elif key == 'audio_input_volume' and value is not None:
|
||||||
|
settings[key] = _validate_audio_input_volume(value)
|
||||||
else:
|
else:
|
||||||
settings[key] = value
|
settings[key] = value
|
||||||
settings.save()
|
settings.save()
|
||||||
if global_brightness_changed:
|
|
||||||
try:
|
|
||||||
asyncio.get_running_loop().create_task(
|
|
||||||
wifi_ws_clients.broadcast_global_brightness_to_tcp_drivers()
|
|
||||||
)
|
|
||||||
except RuntimeError:
|
|
||||||
pass
|
|
||||||
return json.dumps({"message": "Settings updated successfully"}), 200, {'Content-Type': 'application/json'}
|
return json.dumps({"message": "Settings updated successfully"}), 200, {'Content-Type': 'application/json'}
|
||||||
except ValueError as e:
|
except ValueError as e:
|
||||||
return json.dumps({"error": str(e)}), 400
|
return json.dumps({"error": str(e)}), 400
|
||||||
|
|||||||
282
src/controllers/wifi_bridge.py
Normal file
@@ -0,0 +1,282 @@
|
|||||||
|
"""Pi Wi‑Fi and saved ESP-NOW bridge profiles."""
|
||||||
|
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
import json
|
||||||
|
import secrets
|
||||||
|
|
||||||
|
from microdot import Microdot
|
||||||
|
|
||||||
|
from settings import get_settings
|
||||||
|
from util.bridge_profiles import find_bridge_profile, normalise_bridges
|
||||||
|
from util.bridge_runtime import (
|
||||||
|
active_bridge_profile_id,
|
||||||
|
bridge_connected,
|
||||||
|
bridge_serial_connected,
|
||||||
|
bridge_ws_connected,
|
||||||
|
connect_bridge_profile,
|
||||||
|
connect_bridge_serial,
|
||||||
|
connect_bridge_wifi,
|
||||||
|
)
|
||||||
|
from util.pi_wifi import list_wifi_interfaces, nmcli_available, scan_wifi
|
||||||
|
|
||||||
|
controller = Microdot()
|
||||||
|
|
||||||
|
|
||||||
|
def _bridge_transport(settings) -> str:
|
||||||
|
mode = str(settings.get("bridge_transport") or "wifi").strip().lower()
|
||||||
|
return mode if mode in ("wifi", "serial") else "wifi"
|
||||||
|
|
||||||
|
|
||||||
|
def _bridges_payload(settings) -> dict:
|
||||||
|
return {
|
||||||
|
"ok": True,
|
||||||
|
"wifi_interface": settings.get("wifi_interface") or "",
|
||||||
|
"bridge_ws_url": settings.get("bridge_ws_url") or "",
|
||||||
|
"bridge_connected": bridge_connected(),
|
||||||
|
"bridge_wifi_connected": bridge_ws_connected(),
|
||||||
|
"bridge_serial_connected": bridge_serial_connected(),
|
||||||
|
"bridge_transport": _bridge_transport(settings),
|
||||||
|
"active_bridge_id": active_bridge_profile_id(settings) or "",
|
||||||
|
"bridge_serial_port": settings.get("bridge_serial_port") or "",
|
||||||
|
"bridge_serial_baudrate": int(settings.get("bridge_serial_baudrate") or 921600),
|
||||||
|
"bridges": normalise_bridges(settings.get("bridges")),
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@controller.get("/interfaces")
|
||||||
|
async def wifi_interfaces(request):
|
||||||
|
_ = request
|
||||||
|
if not nmcli_available():
|
||||||
|
return (
|
||||||
|
json.dumps({"ok": False, "error": "nmcli not found (install NetworkManager)"}),
|
||||||
|
503,
|
||||||
|
{"Content-Type": "application/json"},
|
||||||
|
)
|
||||||
|
return (
|
||||||
|
json.dumps({"ok": True, "interfaces": list_wifi_interfaces()}),
|
||||||
|
200,
|
||||||
|
{"Content-Type": "application/json"},
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
@controller.get("/scan")
|
||||||
|
async def wifi_scan(request):
|
||||||
|
device = (request.args.get("device") or "").strip()
|
||||||
|
if not device:
|
||||||
|
return json.dumps({"error": "device query param required"}), 400, {
|
||||||
|
"Content-Type": "application/json",
|
||||||
|
}
|
||||||
|
if not nmcli_available():
|
||||||
|
return json.dumps({"ok": False, "error": "nmcli not found"}), 503, {
|
||||||
|
"Content-Type": "application/json",
|
||||||
|
}
|
||||||
|
try:
|
||||||
|
networks = await scan_wifi(device)
|
||||||
|
return json.dumps({"ok": True, "device": device, "networks": networks}), 200, {
|
||||||
|
"Content-Type": "application/json",
|
||||||
|
}
|
||||||
|
except Exception as e:
|
||||||
|
return json.dumps({"ok": False, "error": str(e)}), 500, {
|
||||||
|
"Content-Type": "application/json",
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@controller.get("/bridges")
|
||||||
|
async def get_bridges(request):
|
||||||
|
_ = request
|
||||||
|
settings = get_settings()
|
||||||
|
return json.dumps(_bridges_payload(settings)), 200, {"Content-Type": "application/json"}
|
||||||
|
|
||||||
|
|
||||||
|
@controller.put("/bridges")
|
||||||
|
async def put_bridges(request):
|
||||||
|
try:
|
||||||
|
data = request.json or {}
|
||||||
|
settings = get_settings()
|
||||||
|
if "wifi_interface" in data:
|
||||||
|
settings["wifi_interface"] = str(data.get("wifi_interface") or "").strip()
|
||||||
|
if "bridge_transport" in data:
|
||||||
|
mode = str(data.get("bridge_transport") or "").strip().lower()
|
||||||
|
if mode in ("wifi", "serial"):
|
||||||
|
settings["bridge_transport"] = mode
|
||||||
|
if "bridge_ws_url" in data:
|
||||||
|
settings["bridge_ws_url"] = str(data.get("bridge_ws_url") or "").strip()
|
||||||
|
if "bridge_serial_port" in data:
|
||||||
|
settings["bridge_serial_port"] = str(data.get("bridge_serial_port") or "").strip()
|
||||||
|
if "bridge_serial_baudrate" in data:
|
||||||
|
settings["bridge_serial_baudrate"] = int(data.get("bridge_serial_baudrate") or 921600)
|
||||||
|
if "bridges" in data:
|
||||||
|
settings["bridges"] = normalise_bridges(data.get("bridges"))
|
||||||
|
settings.save()
|
||||||
|
return json.dumps({"ok": True, "message": "Bridge profiles saved"}), 200, {
|
||||||
|
"Content-Type": "application/json",
|
||||||
|
}
|
||||||
|
except Exception as e:
|
||||||
|
return json.dumps({"ok": False, "error": str(e)}), 400, {
|
||||||
|
"Content-Type": "application/json",
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@controller.delete("/bridges/<bridge_id>")
|
||||||
|
async def delete_bridge_profile(request, bridge_id):
|
||||||
|
_ = request
|
||||||
|
settings = get_settings()
|
||||||
|
bid = str(bridge_id or "").strip()
|
||||||
|
bridges = normalise_bridges(settings.get("bridges"))
|
||||||
|
kept = [b for b in bridges if str(b.get("id") or "") != bid]
|
||||||
|
if len(kept) == len(bridges):
|
||||||
|
return json.dumps({"ok": False, "error": "Bridge profile not found"}), 404, {
|
||||||
|
"Content-Type": "application/json",
|
||||||
|
}
|
||||||
|
settings["bridges"] = kept
|
||||||
|
settings.save()
|
||||||
|
payload = _bridges_payload(settings)
|
||||||
|
payload["message"] = "Bridge profile deleted"
|
||||||
|
return json.dumps(payload), 200, {"Content-Type": "application/json"}
|
||||||
|
|
||||||
|
|
||||||
|
@controller.post("/bridges/<bridge_id>/connect")
|
||||||
|
async def connect_saved_bridge(request, bridge_id):
|
||||||
|
_ = request
|
||||||
|
settings = get_settings()
|
||||||
|
profile = find_bridge_profile(settings, bridge_id)
|
||||||
|
if not profile:
|
||||||
|
return json.dumps({"error": "Bridge profile not found"}), 404, {
|
||||||
|
"Content-Type": "application/json",
|
||||||
|
}
|
||||||
|
try:
|
||||||
|
ok, err = await connect_bridge_profile(profile, settings)
|
||||||
|
if not ok:
|
||||||
|
return json.dumps({"ok": False, "error": err or "Connect failed"}), 400, {
|
||||||
|
"Content-Type": "application/json",
|
||||||
|
}
|
||||||
|
payload = _bridges_payload(settings)
|
||||||
|
payload["message"] = f"Connected to {profile.get('label')}"
|
||||||
|
return json.dumps(payload), 200, {"Content-Type": "application/json"}
|
||||||
|
except Exception as e:
|
||||||
|
return json.dumps({"ok": False, "error": str(e)}), 500, {
|
||||||
|
"Content-Type": "application/json",
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@controller.post("/connect")
|
||||||
|
async def wifi_connect_bridge(request):
|
||||||
|
"""Join a bridge AP and open its WebSocket."""
|
||||||
|
try:
|
||||||
|
data = request.json or {}
|
||||||
|
settings = get_settings()
|
||||||
|
device = str(data.get("device") or settings.get("wifi_interface") or "").strip()
|
||||||
|
ssid = str(data.get("ssid") or "").strip()
|
||||||
|
password = str(data.get("password") or "")
|
||||||
|
ap_ip = str(data.get("ap_ip") or "192.168.4.1").strip()
|
||||||
|
try:
|
||||||
|
ws_port = int(data.get("ws_port") or 80)
|
||||||
|
except (TypeError, ValueError):
|
||||||
|
ws_port = 80
|
||||||
|
label = str(data.get("label") or ssid).strip() or ssid
|
||||||
|
save_profile = bool(data.get("save_profile", True))
|
||||||
|
if not device:
|
||||||
|
return json.dumps({"error": "Wi‑Fi interface (device) is required"}), 400, {
|
||||||
|
"Content-Type": "application/json",
|
||||||
|
}
|
||||||
|
if not ssid:
|
||||||
|
return json.dumps({"error": "ssid is required"}), 400, {
|
||||||
|
"Content-Type": "application/json",
|
||||||
|
}
|
||||||
|
settings["wifi_interface"] = device
|
||||||
|
bridges = normalise_bridges(settings.get("bridges"))
|
||||||
|
profile_id = None
|
||||||
|
if save_profile:
|
||||||
|
profile_id = secrets.token_hex(6)
|
||||||
|
bridges = [
|
||||||
|
b
|
||||||
|
for b in bridges
|
||||||
|
if not (b.get("transport") == "wifi" and b.get("ssid") == ssid)
|
||||||
|
]
|
||||||
|
bridges.append(
|
||||||
|
{
|
||||||
|
"id": profile_id,
|
||||||
|
"label": label,
|
||||||
|
"transport": "wifi",
|
||||||
|
"ssid": ssid,
|
||||||
|
"password": password,
|
||||||
|
"ap_ip": ap_ip,
|
||||||
|
"ws_port": ws_port,
|
||||||
|
}
|
||||||
|
)
|
||||||
|
settings["bridges"] = bridges
|
||||||
|
settings.save()
|
||||||
|
profile = {
|
||||||
|
"transport": "wifi",
|
||||||
|
"ssid": ssid,
|
||||||
|
"password": password,
|
||||||
|
"ap_ip": ap_ip,
|
||||||
|
"ws_port": ws_port,
|
||||||
|
"wifi_interface": device,
|
||||||
|
}
|
||||||
|
ok, err = await connect_bridge_wifi(profile, settings)
|
||||||
|
if not ok:
|
||||||
|
return json.dumps({"ok": False, "error": err or "Connect failed"}), 400, {
|
||||||
|
"Content-Type": "application/json",
|
||||||
|
}
|
||||||
|
payload = _bridges_payload(settings)
|
||||||
|
payload["profile_id"] = profile_id
|
||||||
|
payload["message"] = f"Connected to {ssid}"
|
||||||
|
return json.dumps(payload), 200, {"Content-Type": "application/json"}
|
||||||
|
except Exception as e:
|
||||||
|
return json.dumps({"ok": False, "error": str(e)}), 500, {
|
||||||
|
"Content-Type": "application/json",
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@controller.post("/serial/connect")
|
||||||
|
async def serial_connect_bridge(request):
|
||||||
|
try:
|
||||||
|
data = request.json or {}
|
||||||
|
port = str(data.get("port") or data.get("serial_port") or "").strip()
|
||||||
|
save_profile = bool(data.get("save_profile", True))
|
||||||
|
label = str(data.get("label") or port).strip() or port
|
||||||
|
try:
|
||||||
|
baud = int(data.get("baudrate") or data.get("serial_baudrate") or 921600)
|
||||||
|
except (TypeError, ValueError):
|
||||||
|
baud = 921600
|
||||||
|
if not port:
|
||||||
|
return json.dumps({"error": "port is required"}), 400, {
|
||||||
|
"Content-Type": "application/json",
|
||||||
|
}
|
||||||
|
settings = get_settings()
|
||||||
|
bridges = normalise_bridges(settings.get("bridges"))
|
||||||
|
profile_id = None
|
||||||
|
if save_profile:
|
||||||
|
profile_id = secrets.token_hex(6)
|
||||||
|
bridges = [
|
||||||
|
b
|
||||||
|
for b in bridges
|
||||||
|
if not (b.get("transport") == "serial" and b.get("serial_port") == port)
|
||||||
|
]
|
||||||
|
bridges.append(
|
||||||
|
{
|
||||||
|
"id": profile_id,
|
||||||
|
"label": label,
|
||||||
|
"transport": "serial",
|
||||||
|
"serial_port": port,
|
||||||
|
"serial_baudrate": baud,
|
||||||
|
}
|
||||||
|
)
|
||||||
|
settings["bridges"] = bridges
|
||||||
|
settings.save()
|
||||||
|
profile = {"transport": "serial", "serial_port": port, "serial_baudrate": baud}
|
||||||
|
ok, err = await connect_bridge_serial(profile, settings)
|
||||||
|
if not ok:
|
||||||
|
return json.dumps({"ok": False, "error": err}), 500, {
|
||||||
|
"Content-Type": "application/json",
|
||||||
|
}
|
||||||
|
payload = _bridges_payload(settings)
|
||||||
|
payload["profile_id"] = profile_id
|
||||||
|
payload["message"] = f"Connected on {port}"
|
||||||
|
return json.dumps(payload), 200, {"Content-Type": "application/json"}
|
||||||
|
except Exception as e:
|
||||||
|
return json.dumps({"ok": False, "error": str(e)}), 500, {
|
||||||
|
"Content-Type": "application/json",
|
||||||
|
}
|
||||||
251
src/fastapi_app.py
Normal file
@@ -0,0 +1,251 @@
|
|||||||
|
"""FastAPI entrypoint; Microdot controllers run behind an ASGI bridge."""
|
||||||
|
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
import json
|
||||||
|
import logging
|
||||||
|
import os
|
||||||
|
from contextlib import asynccontextmanager
|
||||||
|
from typing import Any, Optional
|
||||||
|
|
||||||
|
from fastapi import FastAPI, WebSocket, WebSocketDisconnect
|
||||||
|
from fastapi.responses import JSONResponse, PlainTextResponse
|
||||||
|
|
||||||
|
from app_factory import (
|
||||||
|
AppRuntime,
|
||||||
|
audio_status_payload,
|
||||||
|
create_microdot_app,
|
||||||
|
live_reload_enabled,
|
||||||
|
)
|
||||||
|
from microdot_asgi import MicrodotASGI
|
||||||
|
from models.transport import get_current_bridge
|
||||||
|
|
||||||
|
|
||||||
|
_runtime: Optional[AppRuntime] = None
|
||||||
|
_microdot_app = None
|
||||||
|
_test_mode = False
|
||||||
|
|
||||||
|
|
||||||
|
class _SuppressDevAccessLogFilter(logging.Filter):
|
||||||
|
def filter(self, record: logging.LogRecord) -> bool:
|
||||||
|
return "/__dev/" not in record.getMessage()
|
||||||
|
|
||||||
|
|
||||||
|
logging.getLogger("uvicorn.access").addFilter(_SuppressDevAccessLogFilter())
|
||||||
|
|
||||||
|
|
||||||
|
def _bridge():
|
||||||
|
return get_current_bridge()
|
||||||
|
|
||||||
|
|
||||||
|
@asynccontextmanager
|
||||||
|
async def _lifespan(app: FastAPI):
|
||||||
|
global _runtime
|
||||||
|
_runtime = AppRuntime()
|
||||||
|
await _runtime.startup(test_mode=_test_mode)
|
||||||
|
if live_reload_enabled() and not _test_mode:
|
||||||
|
print(
|
||||||
|
"[dev] LED_CONTROLLER_LIVE_RELOAD: browser refreshes when uvicorn reloads"
|
||||||
|
)
|
||||||
|
yield
|
||||||
|
await _runtime.shutdown()
|
||||||
|
|
||||||
|
|
||||||
|
def _create_fastapi() -> FastAPI:
|
||||||
|
api = FastAPI(title="LED Controller", lifespan=_lifespan)
|
||||||
|
|
||||||
|
@api.get("/__dev/build-id", response_class=PlainTextResponse)
|
||||||
|
async def dev_build_id_route():
|
||||||
|
from app_factory import dev_build_id as current_build_id
|
||||||
|
|
||||||
|
bid = current_build_id()
|
||||||
|
if not bid:
|
||||||
|
return PlainTextResponse("", status_code=404)
|
||||||
|
return PlainTextResponse(
|
||||||
|
bid,
|
||||||
|
headers={"Cache-Control": "no-store"},
|
||||||
|
)
|
||||||
|
|
||||||
|
@api.get("/__dev/client-rev", response_class=PlainTextResponse)
|
||||||
|
async def dev_client_rev_route():
|
||||||
|
from app_factory import dev_client_revision
|
||||||
|
|
||||||
|
rev = dev_client_revision()
|
||||||
|
if not rev:
|
||||||
|
return PlainTextResponse("", status_code=404)
|
||||||
|
return PlainTextResponse(
|
||||||
|
rev,
|
||||||
|
headers={"Cache-Control": "no-store"},
|
||||||
|
)
|
||||||
|
|
||||||
|
@api.get("/api/audio/devices")
|
||||||
|
async def audio_devices():
|
||||||
|
if _runtime is None:
|
||||||
|
return JSONResponse({"error": "not ready"}, status_code=503)
|
||||||
|
try:
|
||||||
|
return {
|
||||||
|
"devices": _runtime.audio_detector.list_input_devices(),
|
||||||
|
"diagnostics": _runtime.audio_detector.diagnostics(),
|
||||||
|
}
|
||||||
|
except Exception as e:
|
||||||
|
return JSONResponse({"error": str(e)}, status_code=500)
|
||||||
|
|
||||||
|
@api.post("/api/audio/start")
|
||||||
|
async def audio_start(payload: dict | None = None):
|
||||||
|
if _runtime is None:
|
||||||
|
return JSONResponse({"ok": False, "error": "not ready"}, status_code=503)
|
||||||
|
body = payload if isinstance(payload, dict) else {}
|
||||||
|
device = body.get("device", None)
|
||||||
|
if device in ("", None):
|
||||||
|
device = None
|
||||||
|
device_select = str(body.get("device_select") or "").strip()
|
||||||
|
if not device_select and device not in ("", None):
|
||||||
|
device_select = str(device).strip()
|
||||||
|
try:
|
||||||
|
from util.pulse_audio_devices import resolve_capture_device
|
||||||
|
|
||||||
|
device = resolve_capture_device(device)
|
||||||
|
_runtime.audio_detector.start(device=device)
|
||||||
|
from util.audio_run_persist import write_audio_run_state
|
||||||
|
|
||||||
|
write_audio_run_state(
|
||||||
|
enabled=True,
|
||||||
|
device=device,
|
||||||
|
device_override=str(body.get("device_override") or ""),
|
||||||
|
device_select=device_select,
|
||||||
|
)
|
||||||
|
return {"ok": True, "status": _runtime.audio_detector.status()}
|
||||||
|
except Exception as e:
|
||||||
|
return JSONResponse({"ok": False, "error": str(e)}, status_code=500)
|
||||||
|
|
||||||
|
@api.put("/api/audio/device")
|
||||||
|
async def audio_set_device(payload: dict | None = None):
|
||||||
|
if _runtime is None:
|
||||||
|
return JSONResponse({"ok": False, "error": "not ready"}, status_code=503)
|
||||||
|
body = payload if isinstance(payload, dict) else {}
|
||||||
|
device_select = str(body.get("device_select") or "").strip()
|
||||||
|
device_override = str(body.get("device_override") or "").strip()
|
||||||
|
raw = device_override if device_override else device_select
|
||||||
|
device = raw if raw else None
|
||||||
|
from util.audio_run_persist import read_audio_run_state, write_audio_run_state
|
||||||
|
|
||||||
|
prev = read_audio_run_state()
|
||||||
|
write_audio_run_state(
|
||||||
|
enabled=bool(prev.get("enabled")),
|
||||||
|
device=device if raw else None,
|
||||||
|
device_override=device_override,
|
||||||
|
device_select=device_select,
|
||||||
|
)
|
||||||
|
return {"ok": True, "audio_run": read_audio_run_state()}
|
||||||
|
|
||||||
|
@api.post("/api/audio/stop")
|
||||||
|
async def audio_stop():
|
||||||
|
if _runtime is None:
|
||||||
|
return JSONResponse({"ok": False, "error": "not ready"}, status_code=503)
|
||||||
|
_runtime.audio_detector.stop()
|
||||||
|
from util.audio_run_persist import write_audio_run_state
|
||||||
|
|
||||||
|
write_audio_run_state(enabled=False)
|
||||||
|
return {"ok": True, "status": _runtime.audio_detector.status()}
|
||||||
|
|
||||||
|
@api.post("/api/audio/reset")
|
||||||
|
async def audio_reset():
|
||||||
|
if _runtime is None:
|
||||||
|
return JSONResponse({"ok": False, "error": "not ready"}, status_code=503)
|
||||||
|
ok = _runtime.audio_detector.reset_tracking()
|
||||||
|
if not ok:
|
||||||
|
return JSONResponse(
|
||||||
|
{"ok": False, "error": "Audio detector is not running"},
|
||||||
|
status_code=409,
|
||||||
|
)
|
||||||
|
return {"ok": True, "status": _runtime.audio_detector.status()}
|
||||||
|
|
||||||
|
@api.post("/api/audio/anchor-bar")
|
||||||
|
async def audio_anchor_bar():
|
||||||
|
if _runtime is None:
|
||||||
|
return JSONResponse({"ok": False, "error": "not ready"}, status_code=503)
|
||||||
|
ok = _runtime.audio_detector.anchor_bar_phase()
|
||||||
|
if not ok:
|
||||||
|
return JSONResponse(
|
||||||
|
{"ok": False, "error": "Audio detector is not running"},
|
||||||
|
status_code=409,
|
||||||
|
)
|
||||||
|
return {"ok": True, "status": _runtime.audio_detector.status()}
|
||||||
|
|
||||||
|
@api.get("/api/audio/status")
|
||||||
|
async def audio_status():
|
||||||
|
if _runtime is None:
|
||||||
|
return JSONResponse({"error": "not ready"}, status_code=503)
|
||||||
|
return {"status": audio_status_payload(_runtime.audio_detector, _runtime.settings)}
|
||||||
|
|
||||||
|
@api.websocket("/ws")
|
||||||
|
async def ws_endpoint(websocket: WebSocket):
|
||||||
|
await websocket.accept()
|
||||||
|
bridge = _bridge()
|
||||||
|
try:
|
||||||
|
while True:
|
||||||
|
data = await websocket.receive()
|
||||||
|
if data.get("type") == "websocket.disconnect":
|
||||||
|
break
|
||||||
|
if "bytes" in data and data["bytes"] is not None:
|
||||||
|
await bridge.send(bytes(data["bytes"]))
|
||||||
|
continue
|
||||||
|
text = data.get("text")
|
||||||
|
if text is None:
|
||||||
|
continue
|
||||||
|
try:
|
||||||
|
parsed = json.loads(text)
|
||||||
|
addr = parsed.pop("to", None)
|
||||||
|
await bridge.send(parsed, addr=addr)
|
||||||
|
except json.JSONDecodeError:
|
||||||
|
pass
|
||||||
|
except Exception:
|
||||||
|
try:
|
||||||
|
await websocket.send_text(json.dumps({"error": "Send failed"}))
|
||||||
|
except Exception:
|
||||||
|
pass
|
||||||
|
except WebSocketDisconnect:
|
||||||
|
pass
|
||||||
|
except Exception:
|
||||||
|
pass
|
||||||
|
|
||||||
|
return api
|
||||||
|
|
||||||
|
|
||||||
|
class CombinedASGI:
|
||||||
|
"""Route FastAPI-only paths first; delegate the rest to Microdot."""
|
||||||
|
|
||||||
|
_FASTAPI_PREFIXES = ("/api/", "/__dev/")
|
||||||
|
|
||||||
|
def __init__(self, fastapi_app: FastAPI, microdot_asgi: MicrodotASGI):
|
||||||
|
self.fastapi_app = fastapi_app
|
||||||
|
self.microdot_asgi = microdot_asgi
|
||||||
|
|
||||||
|
async def __call__(self, scope: dict, receive: Any, send: Any) -> None:
|
||||||
|
stype = scope.get("type")
|
||||||
|
if stype == "lifespan":
|
||||||
|
await self.fastapi_app(scope, receive, send)
|
||||||
|
return
|
||||||
|
if stype == "websocket":
|
||||||
|
if scope.get("path") == "/ws":
|
||||||
|
await self.fastapi_app(scope, receive, send)
|
||||||
|
return
|
||||||
|
await send({"type": "websocket.close", "code": 1000})
|
||||||
|
return
|
||||||
|
if stype == "http":
|
||||||
|
path = scope.get("path") or ""
|
||||||
|
if path.startswith(self._FASTAPI_PREFIXES):
|
||||||
|
await self.fastapi_app(scope, receive, send)
|
||||||
|
return
|
||||||
|
await self.microdot_asgi(scope, receive, send)
|
||||||
|
|
||||||
|
|
||||||
|
def create_application(*, test_mode: bool = False) -> CombinedASGI:
|
||||||
|
global _microdot_app, _test_mode
|
||||||
|
_test_mode = test_mode
|
||||||
|
_microdot_app = create_microdot_app(inject_live_reload=live_reload_enabled())
|
||||||
|
fastapi_app = _create_fastapi()
|
||||||
|
return CombinedASGI(fastapi_app, MicrodotASGI(_microdot_app))
|
||||||
|
|
||||||
|
|
||||||
|
app = create_application()
|
||||||
566
src/main.py
@@ -1,566 +0,0 @@
|
|||||||
import asyncio
|
|
||||||
import errno
|
|
||||||
import json
|
|
||||||
import os
|
|
||||||
import secrets
|
|
||||||
import signal
|
|
||||||
import socket
|
|
||||||
import threading
|
|
||||||
import traceback
|
|
||||||
from microdot import Microdot, send_file
|
|
||||||
from microdot.websocket import with_websocket
|
|
||||||
from microdot.session import Session
|
|
||||||
from settings import get_settings
|
|
||||||
|
|
||||||
import controllers.preset as preset
|
|
||||||
import controllers.profile as profile
|
|
||||||
import controllers.group as group
|
|
||||||
import controllers.sequence as sequence
|
|
||||||
import controllers.zone as zone
|
|
||||||
import controllers.palette as palette
|
|
||||||
import controllers.scene as scene
|
|
||||||
import controllers.pattern as pattern
|
|
||||||
import controllers.settings as settings_controller
|
|
||||||
import controllers.device as device_controller
|
|
||||||
import controllers.led_tool as led_tool_controller
|
|
||||||
from models.transport import get_sender, set_sender, get_current_sender
|
|
||||||
from models.device import Device, normalize_mac
|
|
||||||
from models import wifi_ws_clients as tcp_client_registry
|
|
||||||
from util.device_status_broadcaster import (
|
|
||||||
broadcast_device_tcp_snapshot_to,
|
|
||||||
broadcast_device_tcp_status,
|
|
||||||
register_device_status_ws,
|
|
||||||
unregister_device_status_ws,
|
|
||||||
)
|
|
||||||
from util.audio_detector import AudioBeatDetector
|
|
||||||
|
|
||||||
_tcp_device_lock = threading.Lock()
|
|
||||||
|
|
||||||
DISCOVERY_UDP_PORT = 8766
|
|
||||||
|
|
||||||
|
|
||||||
def _live_reload_enabled() -> bool:
|
|
||||||
v = os.environ.get("LED_CONTROLLER_LIVE_RELOAD", "").strip().lower()
|
|
||||||
return v not in ("", "0", "false", "no")
|
|
||||||
|
|
||||||
|
|
||||||
def _register_udp_device_sync(
|
|
||||||
device_name: str, peer_ip: str, mac, device_type=None
|
|
||||||
) -> None:
|
|
||||||
with _tcp_device_lock:
|
|
||||||
try:
|
|
||||||
d = Device()
|
|
||||||
did, persisted = d.upsert_wifi_tcp_client(
|
|
||||||
device_name, peer_ip, mac, device_type=device_type
|
|
||||||
)
|
|
||||||
if did and persisted:
|
|
||||||
print(
|
|
||||||
f"UDP device registered: mac={did} name={device_name!r} ip={peer_ip!r}"
|
|
||||||
)
|
|
||||||
except Exception as e:
|
|
||||||
print(f"UDP device registry failed: {e}")
|
|
||||||
traceback.print_exception(type(e), e, e.__traceback__)
|
|
||||||
|
|
||||||
|
|
||||||
async def _handle_udp_discovery(sock, udp_holder=None) -> None:
|
|
||||||
while True:
|
|
||||||
try:
|
|
||||||
data, addr = await asyncio.get_running_loop().sock_recvfrom(sock, 2048)
|
|
||||||
except asyncio.CancelledError:
|
|
||||||
raise
|
|
||||||
except OSError as e:
|
|
||||||
if udp_holder and udp_holder.get("closing"):
|
|
||||||
break
|
|
||||||
print(f"[UDP] recv failed: {e!r}")
|
|
||||||
continue
|
|
||||||
except Exception as e:
|
|
||||||
print(f"[UDP] recv failed: {e!r}")
|
|
||||||
continue
|
|
||||||
peer_ip = addr[0] if addr else ""
|
|
||||||
line = data.split(b"\n", 1)[0].strip()
|
|
||||||
if line:
|
|
||||||
try:
|
|
||||||
parsed = json.loads(line.decode("utf-8"))
|
|
||||||
if isinstance(parsed, dict):
|
|
||||||
dns = str(parsed.get("device_name") or "").strip()
|
|
||||||
mac = parsed.get("mac") or parsed.get("device_mac") or parsed.get(
|
|
||||||
"sta_mac"
|
|
||||||
)
|
|
||||||
device_type = parsed.get("type") or parsed.get("device_type")
|
|
||||||
if dns and normalize_mac(mac):
|
|
||||||
_register_udp_device_sync(dns, peer_ip, mac, device_type)
|
|
||||||
if str(parsed.get("v") or "") == "1":
|
|
||||||
tcp_client_registry.ensure_driver_connection(peer_ip)
|
|
||||||
except (UnicodeError, ValueError, TypeError):
|
|
||||||
pass
|
|
||||||
try:
|
|
||||||
await asyncio.get_running_loop().sock_sendto(sock, data, addr)
|
|
||||||
except Exception as e:
|
|
||||||
print(f"[UDP] echo send failed: {e!r}")
|
|
||||||
|
|
||||||
|
|
||||||
def _prime_wifi_outbound_driver_connections() -> None:
|
|
||||||
"""On boot, dial each registered Wi-Fi driver (same 4-attempt limit as UDP hello)."""
|
|
||||||
n = 0
|
|
||||||
try:
|
|
||||||
dev = Device()
|
|
||||||
for mac_key, doc in list(dev.items()):
|
|
||||||
if not isinstance(doc, dict):
|
|
||||||
continue
|
|
||||||
if doc.get("transport") != "wifi":
|
|
||||||
continue
|
|
||||||
ip = _ipv4_address(str(doc.get("address") or ""))
|
|
||||||
if not ip:
|
|
||||||
continue
|
|
||||||
tcp_client_registry.ensure_driver_connection(ip)
|
|
||||||
n += 1
|
|
||||||
except Exception as e:
|
|
||||||
print(f"[startup] Wi-Fi driver connection prime failed: {e!r}")
|
|
||||||
traceback.print_exception(type(e), e, e.__traceback__)
|
|
||||||
return
|
|
||||||
if n:
|
|
||||||
print(f"[startup] primed outbound WebSocket for {n} Wi-Fi driver(s)")
|
|
||||||
|
|
||||||
|
|
||||||
def _ipv4_address(addr: str) -> str | None:
|
|
||||||
"""Return dotted IPv4 string or None (hostnames skipped for UDP nudge)."""
|
|
||||||
s = (addr or "").strip()
|
|
||||||
if not s:
|
|
||||||
return None
|
|
||||||
parts = s.split(".")
|
|
||||||
if len(parts) != 4:
|
|
||||||
return None
|
|
||||||
try:
|
|
||||||
nums = [int(p) for p in parts]
|
|
||||||
except ValueError:
|
|
||||||
return None
|
|
||||||
if not all(0 <= n <= 255 for n in nums):
|
|
||||||
return None
|
|
||||||
return s
|
|
||||||
|
|
||||||
|
|
||||||
async def _run_udp_discovery_server(udp_holder=None) -> None:
|
|
||||||
sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
|
|
||||||
sock.setblocking(False)
|
|
||||||
try:
|
|
||||||
sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
|
|
||||||
except (AttributeError, OSError):
|
|
||||||
pass
|
|
||||||
try:
|
|
||||||
sock.setsockopt(socket.SOL_SOCKET, socket.SO_BROADCAST, 1)
|
|
||||||
except (AttributeError, OSError):
|
|
||||||
pass
|
|
||||||
sock.bind(("0.0.0.0", DISCOVERY_UDP_PORT))
|
|
||||||
if udp_holder is not None:
|
|
||||||
udp_holder["sock"] = sock
|
|
||||||
print(f"UDP discovery listening on 0.0.0.0:{DISCOVERY_UDP_PORT}")
|
|
||||||
try:
|
|
||||||
await _handle_udp_discovery(sock, udp_holder)
|
|
||||||
finally:
|
|
||||||
if udp_holder is not None:
|
|
||||||
udp_holder.pop("sock", None)
|
|
||||||
try:
|
|
||||||
sock.close()
|
|
||||||
except Exception:
|
|
||||||
pass
|
|
||||||
|
|
||||||
|
|
||||||
async def _send_bridge_wifi_channel(settings, sender):
|
|
||||||
"""Tell the serial ESP32 bridge to set STA channel (settings wifi_channel); not forwarded as ESP-NOW."""
|
|
||||||
try:
|
|
||||||
ch = int(settings.get("wifi_channel", 6))
|
|
||||||
except (TypeError, ValueError):
|
|
||||||
ch = 6
|
|
||||||
ch = max(1, min(11, ch))
|
|
||||||
payload = json.dumps({"m": "bridge", "ch": ch}, separators=(",", ":"))
|
|
||||||
try:
|
|
||||||
await sender.send(payload, addr="ffffffffffff")
|
|
||||||
print(f"[startup] bridge Wi-Fi channel -> {ch}")
|
|
||||||
except Exception as e:
|
|
||||||
print(f"[startup] bridge channel message failed: {e}")
|
|
||||||
|
|
||||||
|
|
||||||
async def main(port=80):
|
|
||||||
settings = get_settings()
|
|
||||||
print(settings)
|
|
||||||
print("Starting")
|
|
||||||
|
|
||||||
# Initialize transport (serial to ESP32 bridge)
|
|
||||||
sender = get_sender(settings)
|
|
||||||
set_sender(sender)
|
|
||||||
|
|
||||||
app = Microdot()
|
|
||||||
audio_detector = AudioBeatDetector()
|
|
||||||
try:
|
|
||||||
from util import audio_detector as audio_detector_module
|
|
||||||
|
|
||||||
audio_detector_module.set_shared_beat_detector(audio_detector)
|
|
||||||
except Exception as e:
|
|
||||||
print(f"[startup] audio detector shared registration skipped: {e!r}")
|
|
||||||
try:
|
|
||||||
from util.audio_run_persist import coerce_audio_device, read_audio_run_state
|
|
||||||
|
|
||||||
persisted = read_audio_run_state()
|
|
||||||
if persisted.get("enabled"):
|
|
||||||
dev = coerce_audio_device(persisted.get("device"))
|
|
||||||
audio_detector.start(device=dev)
|
|
||||||
print("[startup] audio beat detector started from saved run state")
|
|
||||||
except Exception as e:
|
|
||||||
print(f"[startup] audio auto-start skipped: {e!r}")
|
|
||||||
from util import beat_driver_route
|
|
||||||
|
|
||||||
beat_driver_route.set_beat_route_main_loop(asyncio.get_running_loop())
|
|
||||||
from util import sequence_playback as seq_pb
|
|
||||||
|
|
||||||
seq_pb.ensure_beat_consumer_started()
|
|
||||||
|
|
||||||
# Initialize sessions with a secret key from settings
|
|
||||||
secret_key = settings.get('session_secret_key', 'led-controller-secret-key-change-in-production')
|
|
||||||
Session(app, secret_key=secret_key)
|
|
||||||
|
|
||||||
# Mount model controllers as subroutes
|
|
||||||
# Verify controllers are Microdot instances before mounting
|
|
||||||
controllers_to_mount = [
|
|
||||||
('/presets', preset, 'preset'),
|
|
||||||
('/profiles', profile, 'profile'),
|
|
||||||
('/groups', group, 'group'),
|
|
||||||
('/sequences', sequence, 'sequence'),
|
|
||||||
('/zones', zone, 'zone'),
|
|
||||||
('/palettes', palette, 'palette'),
|
|
||||||
('/scenes', scene, 'scene'),
|
|
||||||
]
|
|
||||||
|
|
||||||
# Mount model controllers as subroutes
|
|
||||||
app.mount(preset.controller, '/presets')
|
|
||||||
app.mount(profile.controller, '/profiles')
|
|
||||||
app.mount(group.controller, '/groups')
|
|
||||||
app.mount(sequence.controller, '/sequences')
|
|
||||||
app.mount(zone.controller, '/zones')
|
|
||||||
app.mount(palette.controller, '/palettes')
|
|
||||||
app.mount(scene.controller, '/scenes')
|
|
||||||
app.mount(pattern.controller, '/patterns')
|
|
||||||
app.mount(settings_controller.controller, '/settings')
|
|
||||||
app.mount(device_controller.controller, '/devices')
|
|
||||||
app.mount(led_tool_controller.controller, '/led-tool')
|
|
||||||
|
|
||||||
tcp_client_registry.set_settings(settings)
|
|
||||||
tcp_client_registry.set_tcp_status_broadcaster(broadcast_device_tcp_status)
|
|
||||||
|
|
||||||
live_reload = _live_reload_enabled()
|
|
||||||
dev_build_id = secrets.token_hex(12) if live_reload else None
|
|
||||||
if live_reload:
|
|
||||||
print(
|
|
||||||
"[dev] LED_CONTROLLER_LIVE_RELOAD: browser refreshes when the server process restarts"
|
|
||||||
)
|
|
||||||
|
|
||||||
if dev_build_id:
|
|
||||||
|
|
||||||
@app.route("/__dev/build-id")
|
|
||||||
def dev_build_id_route(request):
|
|
||||||
_ = request
|
|
||||||
return (
|
|
||||||
dev_build_id,
|
|
||||||
200,
|
|
||||||
{
|
|
||||||
"Content-Type": "text/plain; charset=utf-8",
|
|
||||||
"Cache-Control": "no-store",
|
|
||||||
},
|
|
||||||
)
|
|
||||||
|
|
||||||
# Serve index.html at root (cwd is src/ when run via pipenv run run)
|
|
||||||
@app.route("/")
|
|
||||||
def index(request):
|
|
||||||
"""Serve the main web UI."""
|
|
||||||
if dev_build_id:
|
|
||||||
try:
|
|
||||||
with open("templates/index.html", encoding="utf-8") as f:
|
|
||||||
html = f.read()
|
|
||||||
tag = '<script src="/static/dev-live-reload.js" defer></script>'
|
|
||||||
if "</body>" in html:
|
|
||||||
html = html.replace("</body>", tag + "\n</body>", 1)
|
|
||||||
return html, 200, {"Content-Type": "text/html; charset=utf-8"}
|
|
||||||
except OSError:
|
|
||||||
pass
|
|
||||||
return send_file("templates/index.html")
|
|
||||||
|
|
||||||
# Favicon: avoid 404 in browser console (no file needed)
|
|
||||||
@app.route('/favicon.ico')
|
|
||||||
def favicon(request):
|
|
||||||
return '', 204
|
|
||||||
|
|
||||||
@app.route('/api/audio/devices')
|
|
||||||
async def audio_devices(request):
|
|
||||||
_ = request
|
|
||||||
try:
|
|
||||||
return {
|
|
||||||
"devices": audio_detector.list_input_devices(),
|
|
||||||
"diagnostics": audio_detector.diagnostics(),
|
|
||||||
}
|
|
||||||
except Exception as e:
|
|
||||||
return {"error": str(e)}, 500
|
|
||||||
|
|
||||||
@app.route('/api/audio/start', methods=['POST'])
|
|
||||||
async def audio_start(request):
|
|
||||||
payload = request.json if isinstance(request.json, dict) else {}
|
|
||||||
device = payload.get("device", None)
|
|
||||||
if device in ("", None):
|
|
||||||
device = None
|
|
||||||
else:
|
|
||||||
try:
|
|
||||||
device = int(device)
|
|
||||||
except (TypeError, ValueError):
|
|
||||||
pass
|
|
||||||
try:
|
|
||||||
audio_detector.start(device=device)
|
|
||||||
from util.audio_run_persist import write_audio_run_state
|
|
||||||
|
|
||||||
write_audio_run_state(
|
|
||||||
enabled=True,
|
|
||||||
device=device,
|
|
||||||
device_override=str(payload.get("device_override") or ""),
|
|
||||||
device_select=str(payload.get("device_select") or ""),
|
|
||||||
)
|
|
||||||
return {"ok": True, "status": audio_detector.status()}
|
|
||||||
except Exception as e:
|
|
||||||
return {"ok": False, "error": str(e)}, 500
|
|
||||||
|
|
||||||
@app.route('/api/audio/stop', methods=['POST'])
|
|
||||||
async def audio_stop(request):
|
|
||||||
_ = request
|
|
||||||
audio_detector.stop()
|
|
||||||
from util.audio_run_persist import write_audio_run_state
|
|
||||||
|
|
||||||
write_audio_run_state(enabled=False)
|
|
||||||
return {"ok": True, "status": audio_detector.status()}
|
|
||||||
|
|
||||||
@app.route('/api/audio/reset', methods=['POST'])
|
|
||||||
async def audio_reset(request):
|
|
||||||
"""Clear beat/BPM tracking state without stopping the detector."""
|
|
||||||
_ = request
|
|
||||||
ok = audio_detector.reset_tracking()
|
|
||||||
if not ok:
|
|
||||||
return {"ok": False, "error": "Audio detector is not running"}, 409
|
|
||||||
return {"ok": True, "status": audio_detector.status()}
|
|
||||||
|
|
||||||
@app.route('/api/audio/anchor-bar', methods=['POST'])
|
|
||||||
async def audio_anchor_bar(request):
|
|
||||||
"""Mark the current moment as bar beat 1 (downbeat)."""
|
|
||||||
_ = request
|
|
||||||
ok = audio_detector.anchor_bar_phase()
|
|
||||||
if not ok:
|
|
||||||
return {"ok": False, "error": "Audio detector is not running"}, 409
|
|
||||||
return {"ok": True, "status": audio_detector.status()}
|
|
||||||
|
|
||||||
@app.route('/api/audio/status')
|
|
||||||
async def audio_status(request):
|
|
||||||
_ = request
|
|
||||||
from util import beat_driver_route
|
|
||||||
from util import sequence_playback
|
|
||||||
|
|
||||||
st = audio_detector.status()
|
|
||||||
st["sequence"] = sequence_playback.playback_status()
|
|
||||||
st["manual_beat_stride"] = beat_driver_route.manual_beat_stride_status()
|
|
||||||
seq = st.get("sequence")
|
|
||||||
beat_readout = ""
|
|
||||||
if isinstance(seq, dict) and str(seq.get("beat_readout") or "").strip():
|
|
||||||
beat_readout = str(seq.get("beat_readout") or "").strip()
|
|
||||||
elif st.get("running"):
|
|
||||||
mb = st.get("manual_beat_stride")
|
|
||||||
if isinstance(mb, dict) and mb.get("active"):
|
|
||||||
try:
|
|
||||||
n = int(mb.get("stride_n") or 1)
|
|
||||||
except (TypeError, ValueError):
|
|
||||||
n = 1
|
|
||||||
n = max(1, min(64, n))
|
|
||||||
try:
|
|
||||||
bi = int(mb.get("beat_in_stride") or 1)
|
|
||||||
except (TypeError, ValueError):
|
|
||||||
bi = 1
|
|
||||||
pos = min(n, max(1, bi))
|
|
||||||
beat_readout = f"{pos}/{n}"
|
|
||||||
else:
|
|
||||||
try:
|
|
||||||
bs = int(st.get("beat_seq") or 0)
|
|
||||||
except (TypeError, ValueError):
|
|
||||||
bs = 0
|
|
||||||
if bs > 0:
|
|
||||||
beat_readout = str(bs)
|
|
||||||
st["beat_readout"] = beat_readout
|
|
||||||
from util.audio_run_persist import read_audio_run_state
|
|
||||||
|
|
||||||
st["beat_phase_ms"] = int(settings.get("audio_beat_phase_ms") or 0)
|
|
||||||
seq_wait = str(settings.get("sequence_switch_wait") or "beat").strip().lower()
|
|
||||||
if seq_wait not in ("beat", "downbeat"):
|
|
||||||
seq_wait = "beat"
|
|
||||||
st["sequence_switch_wait"] = seq_wait
|
|
||||||
st["audio_run"] = read_audio_run_state()
|
|
||||||
return {"status": st}
|
|
||||||
|
|
||||||
# Static file route
|
|
||||||
@app.route("/static/<path:path>")
|
|
||||||
def static_handler(request, path):
|
|
||||||
"""Serve static files."""
|
|
||||||
if '..' in path:
|
|
||||||
# Directory traversal is not allowed
|
|
||||||
return 'Not found', 404
|
|
||||||
return send_file('static/' + path)
|
|
||||||
|
|
||||||
@app.route('/ws')
|
|
||||||
@with_websocket
|
|
||||||
async def ws(request, ws):
|
|
||||||
await register_device_status_ws(ws)
|
|
||||||
await broadcast_device_tcp_snapshot_to(ws)
|
|
||||||
try:
|
|
||||||
while True:
|
|
||||||
data = await ws.receive()
|
|
||||||
print(data)
|
|
||||||
if data:
|
|
||||||
try:
|
|
||||||
parsed = json.loads(data)
|
|
||||||
print("WS received JSON:", parsed)
|
|
||||||
# Optional "to": 12-char hex MAC; rest is payload (sent with that address).
|
|
||||||
addr = parsed.pop("to", None)
|
|
||||||
payload = json.dumps(parsed) if parsed else data
|
|
||||||
await sender.send(payload, addr=addr)
|
|
||||||
except json.JSONDecodeError:
|
|
||||||
# Not JSON: send raw with default address
|
|
||||||
try:
|
|
||||||
await sender.send(data)
|
|
||||||
except Exception:
|
|
||||||
try:
|
|
||||||
await ws.send(json.dumps({"error": "Send failed"}))
|
|
||||||
except Exception:
|
|
||||||
pass
|
|
||||||
except Exception:
|
|
||||||
try:
|
|
||||||
await ws.send(json.dumps({"error": "Send failed"}))
|
|
||||||
except Exception:
|
|
||||||
pass
|
|
||||||
else:
|
|
||||||
break
|
|
||||||
finally:
|
|
||||||
await unregister_device_status_ws(ws)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Touch Device singleton early so db/device.json exists before first UDP hello.
|
|
||||||
Device()
|
|
||||||
await _send_bridge_wifi_channel(settings, sender)
|
|
||||||
_prime_wifi_outbound_driver_connections()
|
|
||||||
|
|
||||||
udp_holder = {"closing": False, "shutting_down": False}
|
|
||||||
loop = asyncio.get_running_loop()
|
|
||||||
server_tasks: list[asyncio.Task] = []
|
|
||||||
|
|
||||||
def _graceful_shutdown(*_args):
|
|
||||||
if udp_holder.get("shutting_down"):
|
|
||||||
raise SystemExit(0)
|
|
||||||
udp_holder["shutting_down"] = True
|
|
||||||
print("[server] shutting down...")
|
|
||||||
udp_holder["closing"] = True
|
|
||||||
try:
|
|
||||||
audio_detector.stop()
|
|
||||||
except Exception:
|
|
||||||
pass
|
|
||||||
try:
|
|
||||||
from util import sequence_playback as seq_pb
|
|
||||||
|
|
||||||
seq_pb.stop()
|
|
||||||
for attr in ("_pending_beat_task", "_sim_beat_task"):
|
|
||||||
t = getattr(seq_pb, attr, None)
|
|
||||||
if t is not None and not t.done():
|
|
||||||
t.cancel()
|
|
||||||
except Exception:
|
|
||||||
pass
|
|
||||||
u = udp_holder.get("sock")
|
|
||||||
if u is not None:
|
|
||||||
try:
|
|
||||||
u.close()
|
|
||||||
except OSError:
|
|
||||||
pass
|
|
||||||
tcp_client_registry.cancel_all_driver_tasks()
|
|
||||||
if getattr(app, "server", None) is not None:
|
|
||||||
try:
|
|
||||||
app.shutdown()
|
|
||||||
except Exception:
|
|
||||||
pass
|
|
||||||
for t in server_tasks:
|
|
||||||
if not t.done():
|
|
||||||
t.cancel()
|
|
||||||
|
|
||||||
shutdown_handlers_registered = False
|
|
||||||
try:
|
|
||||||
try:
|
|
||||||
for sig in (signal.SIGINT, signal.SIGTERM):
|
|
||||||
loop.add_signal_handler(sig, _graceful_shutdown)
|
|
||||||
shutdown_handlers_registered = True
|
|
||||||
except (NotImplementedError, RuntimeError):
|
|
||||||
pass
|
|
||||||
|
|
||||||
# Await HTTP + UDP discovery; bind failures (e.g. port 80 in use) surface here.
|
|
||||||
try:
|
|
||||||
server_tasks[:] = [
|
|
||||||
asyncio.create_task(
|
|
||||||
app.start_server(host="0.0.0.0", port=port), name="http"
|
|
||||||
),
|
|
||||||
asyncio.create_task(
|
|
||||||
_run_udp_discovery_server(udp_holder), name="udp"
|
|
||||||
),
|
|
||||||
]
|
|
||||||
await asyncio.gather(*server_tasks)
|
|
||||||
except asyncio.CancelledError:
|
|
||||||
pass
|
|
||||||
except OSError as e:
|
|
||||||
if e.errno == errno.EADDRINUSE:
|
|
||||||
print(
|
|
||||||
f"[server] bind failed (address already in use): {e!s}\n"
|
|
||||||
f"[server] HTTP is configured for port {port} (env PORT). "
|
|
||||||
f"Stop the other process or use a free port, e.g. PORT=8080 pipenv run run"
|
|
||||||
)
|
|
||||||
raise
|
|
||||||
finally:
|
|
||||||
try:
|
|
||||||
audio_detector.stop()
|
|
||||||
except Exception:
|
|
||||||
pass
|
|
||||||
srv = getattr(app, "server", None)
|
|
||||||
if srv is not None:
|
|
||||||
try:
|
|
||||||
srv.close()
|
|
||||||
await srv.wait_closed()
|
|
||||||
except Exception:
|
|
||||||
pass
|
|
||||||
try:
|
|
||||||
app.server = None
|
|
||||||
except Exception:
|
|
||||||
pass
|
|
||||||
udp_holder["closing"] = True
|
|
||||||
for t in list(server_tasks):
|
|
||||||
if not t.done():
|
|
||||||
t.cancel()
|
|
||||||
if server_tasks:
|
|
||||||
await asyncio.gather(*server_tasks, return_exceptions=True)
|
|
||||||
pending = [
|
|
||||||
t
|
|
||||||
for t in asyncio.all_tasks(loop)
|
|
||||||
if t is not asyncio.current_task() and not t.done()
|
|
||||||
]
|
|
||||||
for t in pending:
|
|
||||||
t.cancel()
|
|
||||||
if pending:
|
|
||||||
await asyncio.gather(*pending, return_exceptions=True)
|
|
||||||
if shutdown_handlers_registered:
|
|
||||||
for sig in (signal.SIGINT, signal.SIGTERM):
|
|
||||||
try:
|
|
||||||
loop.remove_signal_handler(sig)
|
|
||||||
except (NotImplementedError, OSError, ValueError):
|
|
||||||
pass
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
|
||||||
import os
|
|
||||||
|
|
||||||
port = int(os.environ.get("PORT", 80))
|
|
||||||
try:
|
|
||||||
asyncio.run(main(port=port))
|
|
||||||
except KeyboardInterrupt:
|
|
||||||
print("[server] interrupted")
|
|
||||||
84
src/microdot_asgi.py
Normal file
@@ -0,0 +1,84 @@
|
|||||||
|
"""ASGI bridge for existing Microdot route handlers."""
|
||||||
|
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
from typing import Any
|
||||||
|
|
||||||
|
from microdot.microdot import Microdot, NoCaseDict, Request, Response
|
||||||
|
|
||||||
|
|
||||||
|
class MicrodotASGI:
|
||||||
|
"""Dispatch HTTP requests to a :class:`Microdot` application."""
|
||||||
|
|
||||||
|
def __init__(self, microdot_app: Microdot):
|
||||||
|
self.app = microdot_app
|
||||||
|
|
||||||
|
async def __call__(self, scope: dict, receive: Any, send: Any) -> None:
|
||||||
|
if scope.get("type") != "http":
|
||||||
|
return
|
||||||
|
|
||||||
|
body = b""
|
||||||
|
while True:
|
||||||
|
message = await receive()
|
||||||
|
if message["type"] != "http.request":
|
||||||
|
continue
|
||||||
|
body += message.get("body", b"")
|
||||||
|
if not message.get("more_body"):
|
||||||
|
break
|
||||||
|
|
||||||
|
headers = NoCaseDict()
|
||||||
|
for key, value in scope.get("headers", ()):
|
||||||
|
headers[key.decode("latin-1")] = value.decode("latin-1")
|
||||||
|
|
||||||
|
path = scope.get("path", "/") or "/"
|
||||||
|
query = scope.get("query_string", b"").decode("latin-1")
|
||||||
|
url = path + (f"?{query}" if query else "")
|
||||||
|
|
||||||
|
client = scope.get("client") or ("127.0.0.1", 0)
|
||||||
|
req = Request(
|
||||||
|
self.app,
|
||||||
|
client,
|
||||||
|
scope.get("method", "GET"),
|
||||||
|
url,
|
||||||
|
"1.1",
|
||||||
|
headers,
|
||||||
|
body=body,
|
||||||
|
)
|
||||||
|
|
||||||
|
res = await self.app.dispatch_request(req)
|
||||||
|
if res is Response.already_handled:
|
||||||
|
return
|
||||||
|
await _send_microdot_response(res, send)
|
||||||
|
|
||||||
|
|
||||||
|
async def _send_microdot_response(res: Response, send: Any) -> None:
|
||||||
|
res.complete()
|
||||||
|
headers: list[tuple[bytes, bytes]] = []
|
||||||
|
for header, value in res.headers.items():
|
||||||
|
values = value if isinstance(value, list) else [value]
|
||||||
|
for item in values:
|
||||||
|
headers.append(
|
||||||
|
(header.lower().encode("latin-1"), str(item).encode("latin-1"))
|
||||||
|
)
|
||||||
|
|
||||||
|
body = res.body
|
||||||
|
if isinstance(body, str):
|
||||||
|
payload = body.encode()
|
||||||
|
elif isinstance(body, bytes):
|
||||||
|
payload = body
|
||||||
|
else:
|
||||||
|
parts: list[bytes] = []
|
||||||
|
async for chunk in res.body_iter():
|
||||||
|
if isinstance(chunk, str):
|
||||||
|
chunk = chunk.encode()
|
||||||
|
parts.append(chunk)
|
||||||
|
payload = b"".join(parts)
|
||||||
|
|
||||||
|
await send(
|
||||||
|
{
|
||||||
|
"type": "http.response.start",
|
||||||
|
"status": res.status_code,
|
||||||
|
"headers": headers,
|
||||||
|
}
|
||||||
|
)
|
||||||
|
await send({"type": "http.response.body", "body": payload})
|
||||||
199
src/models/bridge_serial_client.py
Normal file
@@ -0,0 +1,199 @@
|
|||||||
|
"""Persistent USB/serial client to the ESP-NOW bridge."""
|
||||||
|
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
import asyncio
|
||||||
|
import json
|
||||||
|
from typing import Awaitable, Callable, Optional, Union
|
||||||
|
|
||||||
|
import serial
|
||||||
|
import serial_asyncio
|
||||||
|
|
||||||
|
from util.bridge_serial_frame import feed_serial_buffer, pack_serial_frame
|
||||||
|
from util.espnow_wire import parse_ws_frame
|
||||||
|
|
||||||
|
UplinkHandler = Callable[[bytes, bytes], Awaitable[None]]
|
||||||
|
|
||||||
|
|
||||||
|
class BridgeSerialClient:
|
||||||
|
def __init__(
|
||||||
|
self,
|
||||||
|
port: str,
|
||||||
|
*,
|
||||||
|
baudrate: int = 921600,
|
||||||
|
reconnect_delay_s: float = 2.0,
|
||||||
|
):
|
||||||
|
self._port = str(port or "").strip()
|
||||||
|
self._baudrate = int(baudrate)
|
||||||
|
self._reconnect_delay_s = reconnect_delay_s
|
||||||
|
self._reader: Optional[asyncio.StreamReader] = None
|
||||||
|
self._writer: Optional[asyncio.StreamWriter] = None
|
||||||
|
self._send_lock = asyncio.Lock()
|
||||||
|
self._uplink_handler: Optional[UplinkHandler] = None
|
||||||
|
self._task: Optional[asyncio.Task] = None
|
||||||
|
self._read_task: Optional[asyncio.Task] = None
|
||||||
|
self._connected = asyncio.Event()
|
||||||
|
self._disconnect_event = asyncio.Event()
|
||||||
|
self._stop = False
|
||||||
|
self._read_buf = bytearray()
|
||||||
|
self._bad_frame_count = 0
|
||||||
|
|
||||||
|
def set_uplink_handler(self, handler: Optional[UplinkHandler]) -> None:
|
||||||
|
self._uplink_handler = handler
|
||||||
|
|
||||||
|
def _signal_disconnect(self) -> None:
|
||||||
|
self._connected.clear()
|
||||||
|
self._disconnect_event.set()
|
||||||
|
|
||||||
|
async def _close_serial(self) -> None:
|
||||||
|
reader = self._reader
|
||||||
|
writer = self._writer
|
||||||
|
self._reader = None
|
||||||
|
self._writer = None
|
||||||
|
if writer is not None:
|
||||||
|
try:
|
||||||
|
writer.close()
|
||||||
|
await writer.wait_closed()
|
||||||
|
except Exception:
|
||||||
|
pass
|
||||||
|
|
||||||
|
async def _read_loop(self) -> None:
|
||||||
|
try:
|
||||||
|
while not self._disconnect_event.is_set() and not self._stop:
|
||||||
|
reader = self._reader
|
||||||
|
if reader is None:
|
||||||
|
break
|
||||||
|
try:
|
||||||
|
chunk = await reader.read(4096)
|
||||||
|
except (serial.SerialException, OSError, asyncio.IncompleteReadError) as e:
|
||||||
|
print(f"[bridge-serial] read error: {e!r}")
|
||||||
|
break
|
||||||
|
if not chunk:
|
||||||
|
await asyncio.sleep(0.01)
|
||||||
|
continue
|
||||||
|
frames = feed_serial_buffer(self._read_buf, chunk)
|
||||||
|
handler = self._uplink_handler
|
||||||
|
if handler is None:
|
||||||
|
continue
|
||||||
|
for frame in frames:
|
||||||
|
try:
|
||||||
|
peer, pkt, _bcast = parse_ws_frame(frame)
|
||||||
|
except ValueError:
|
||||||
|
self._bad_frame_count += 1
|
||||||
|
if self._bad_frame_count <= 3:
|
||||||
|
print(
|
||||||
|
f"[bridge-serial] ignored frame ({len(frame)} B), "
|
||||||
|
f"expected ws uplink header"
|
||||||
|
)
|
||||||
|
continue
|
||||||
|
self._bad_frame_count = 0
|
||||||
|
await handler(peer, pkt)
|
||||||
|
except asyncio.CancelledError:
|
||||||
|
raise
|
||||||
|
finally:
|
||||||
|
self._signal_disconnect()
|
||||||
|
|
||||||
|
async def run_forever(self) -> None:
|
||||||
|
while not self._stop:
|
||||||
|
try:
|
||||||
|
await self._connect_once()
|
||||||
|
except asyncio.CancelledError:
|
||||||
|
raise
|
||||||
|
except Exception as e:
|
||||||
|
print(f"[bridge-serial] connection error: {e!r}")
|
||||||
|
self._signal_disconnect()
|
||||||
|
self._disconnect_event.clear()
|
||||||
|
await self._close_serial()
|
||||||
|
if self._stop:
|
||||||
|
break
|
||||||
|
print("[bridge-serial] disconnected, reconnecting...")
|
||||||
|
await asyncio.sleep(self._reconnect_delay_s)
|
||||||
|
|
||||||
|
async def _connect_once(self) -> None:
|
||||||
|
if not self._port:
|
||||||
|
raise serial.SerialException("serial port not configured")
|
||||||
|
print(f"[bridge-serial] opening {self._port!r} @ {self._baudrate}")
|
||||||
|
self._read_buf.clear()
|
||||||
|
self._disconnect_event.clear()
|
||||||
|
reader, writer = await serial_asyncio.open_serial_connection(
|
||||||
|
url=self._port,
|
||||||
|
baudrate=self._baudrate,
|
||||||
|
exclusive=True,
|
||||||
|
)
|
||||||
|
self._reader = reader
|
||||||
|
self._writer = writer
|
||||||
|
self._connected.set()
|
||||||
|
self._read_task = asyncio.create_task(self._read_loop())
|
||||||
|
print("[bridge-serial] connected")
|
||||||
|
try:
|
||||||
|
await self._disconnect_event.wait()
|
||||||
|
finally:
|
||||||
|
read_task = self._read_task
|
||||||
|
self._read_task = None
|
||||||
|
if read_task is not None:
|
||||||
|
read_task.cancel()
|
||||||
|
try:
|
||||||
|
await read_task
|
||||||
|
except asyncio.CancelledError:
|
||||||
|
pass
|
||||||
|
await self._close_serial()
|
||||||
|
|
||||||
|
async def wait_connected(self, timeout: float = 30.0) -> bool:
|
||||||
|
try:
|
||||||
|
await asyncio.wait_for(self._connected.wait(), timeout=timeout)
|
||||||
|
writer = self._writer
|
||||||
|
return writer is not None and not writer.is_closing()
|
||||||
|
except asyncio.TimeoutError:
|
||||||
|
return False
|
||||||
|
|
||||||
|
async def send_packet(self, packet: Union[bytes, str, dict]) -> bool:
|
||||||
|
if isinstance(packet, dict):
|
||||||
|
packet = json.dumps(packet, separators=(",", ":"))
|
||||||
|
if isinstance(packet, str):
|
||||||
|
packet = packet.encode("utf-8")
|
||||||
|
if not await self.wait_connected(timeout=30.0):
|
||||||
|
return False
|
||||||
|
writer = self._writer
|
||||||
|
if writer is None or writer.is_closing():
|
||||||
|
return False
|
||||||
|
frame = pack_serial_frame(bytes(packet))
|
||||||
|
async with self._send_lock:
|
||||||
|
try:
|
||||||
|
writer = self._writer
|
||||||
|
if writer is None or writer.is_closing():
|
||||||
|
return False
|
||||||
|
writer.write(frame)
|
||||||
|
await writer.drain()
|
||||||
|
return True
|
||||||
|
except (serial.SerialException, OSError, ConnectionError) as e:
|
||||||
|
print(f"[bridge-serial] send failed: {e!r}")
|
||||||
|
self._signal_disconnect()
|
||||||
|
return False
|
||||||
|
|
||||||
|
def start(self) -> asyncio.Task:
|
||||||
|
self._stop = False
|
||||||
|
if self._task is None or self._task.done():
|
||||||
|
self._task = asyncio.create_task(self.run_forever())
|
||||||
|
return self._task
|
||||||
|
|
||||||
|
def stop(self) -> None:
|
||||||
|
self._stop = True
|
||||||
|
self._signal_disconnect()
|
||||||
|
task = self._task
|
||||||
|
if task is not None and not task.done():
|
||||||
|
task.cancel()
|
||||||
|
|
||||||
|
|
||||||
|
_client: Optional[BridgeSerialClient] = None
|
||||||
|
|
||||||
|
|
||||||
|
def get_bridge_serial_client() -> Optional[BridgeSerialClient]:
|
||||||
|
return _client
|
||||||
|
|
||||||
|
|
||||||
|
def init_bridge_serial_client(port: str, *, baudrate: int = 921600) -> BridgeSerialClient:
|
||||||
|
global _client
|
||||||
|
if _client is not None:
|
||||||
|
_client.stop()
|
||||||
|
_client = BridgeSerialClient(port, baudrate=baudrate)
|
||||||
|
return _client
|
||||||
170
src/models/bridge_ws_client.py
Normal file
@@ -0,0 +1,170 @@
|
|||||||
|
"""Persistent WebSocket client to the ESP-NOW bridge."""
|
||||||
|
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
import asyncio
|
||||||
|
import json
|
||||||
|
from typing import Awaitable, Callable, Optional, Union
|
||||||
|
|
||||||
|
import websockets
|
||||||
|
from websockets.exceptions import ConnectionClosed
|
||||||
|
|
||||||
|
from settings import WIFI_CHANNEL_DEFAULT
|
||||||
|
from util.espnow_wire import parse_ws_frame
|
||||||
|
|
||||||
|
UplinkHandler = Callable[[bytes, bytes], Awaitable[None]]
|
||||||
|
|
||||||
|
|
||||||
|
class BridgeWsClient:
|
||||||
|
def __init__(
|
||||||
|
self, url: str, *, wifi_channel: int = WIFI_CHANNEL_DEFAULT, reconnect_delay_s: float = 2.0
|
||||||
|
):
|
||||||
|
self._url = url.strip()
|
||||||
|
self._wifi_channel = wifi_channel
|
||||||
|
self._reconnect_delay_s = reconnect_delay_s
|
||||||
|
self._ws: Optional[websockets.WebSocketClientProtocol] = None
|
||||||
|
self._send_lock = asyncio.Lock()
|
||||||
|
self._uplink_handler: Optional[UplinkHandler] = None
|
||||||
|
self._task: Optional[asyncio.Task] = None
|
||||||
|
self._connected = asyncio.Event()
|
||||||
|
self._disconnect_event = asyncio.Event()
|
||||||
|
self._stop = False
|
||||||
|
|
||||||
|
def set_uplink_handler(self, handler: Optional[UplinkHandler]) -> None:
|
||||||
|
self._uplink_handler = handler
|
||||||
|
|
||||||
|
def _signal_disconnect(self) -> None:
|
||||||
|
self._connected.clear()
|
||||||
|
self._disconnect_event.set()
|
||||||
|
|
||||||
|
async def _close_ws(self) -> None:
|
||||||
|
ws = self._ws
|
||||||
|
self._ws = None
|
||||||
|
if ws is not None:
|
||||||
|
try:
|
||||||
|
await ws.close()
|
||||||
|
except Exception:
|
||||||
|
pass
|
||||||
|
|
||||||
|
async def run_forever(self) -> None:
|
||||||
|
while not self._stop:
|
||||||
|
try:
|
||||||
|
await self._connect_once()
|
||||||
|
except asyncio.CancelledError:
|
||||||
|
raise
|
||||||
|
except Exception as e:
|
||||||
|
print(f"[bridge] connection error: {e!r}")
|
||||||
|
self._signal_disconnect()
|
||||||
|
self._disconnect_event.clear()
|
||||||
|
await self._close_ws()
|
||||||
|
if self._stop:
|
||||||
|
break
|
||||||
|
print("[bridge] disconnected, reconnecting...")
|
||||||
|
await asyncio.sleep(self._reconnect_delay_s)
|
||||||
|
|
||||||
|
async def _reader_loop(self) -> None:
|
||||||
|
ws = self._ws
|
||||||
|
if ws is None:
|
||||||
|
return
|
||||||
|
try:
|
||||||
|
async for message in ws:
|
||||||
|
if self._uplink_handler is None:
|
||||||
|
continue
|
||||||
|
if isinstance(message, str):
|
||||||
|
message = message.encode("utf-8")
|
||||||
|
if not message:
|
||||||
|
continue
|
||||||
|
try:
|
||||||
|
peer, pkt, _bcast = parse_ws_frame(message)
|
||||||
|
except ValueError:
|
||||||
|
continue
|
||||||
|
await self._uplink_handler(peer, pkt)
|
||||||
|
except ConnectionClosed:
|
||||||
|
pass
|
||||||
|
finally:
|
||||||
|
self._signal_disconnect()
|
||||||
|
|
||||||
|
async def _connect_once(self) -> None:
|
||||||
|
print(f"[bridge] connecting to {self._url} (channel {self._wifi_channel} on bridge)")
|
||||||
|
async with websockets.connect(self._url, ping_interval=20, ping_timeout=20) as ws:
|
||||||
|
self._ws = ws
|
||||||
|
self._connected.set()
|
||||||
|
self._disconnect_event.clear()
|
||||||
|
print("[bridge] connected")
|
||||||
|
reader = asyncio.create_task(self._reader_loop())
|
||||||
|
try:
|
||||||
|
while not self._disconnect_event.is_set():
|
||||||
|
await asyncio.sleep(0.5)
|
||||||
|
finally:
|
||||||
|
reader.cancel()
|
||||||
|
try:
|
||||||
|
await reader
|
||||||
|
except asyncio.CancelledError:
|
||||||
|
pass
|
||||||
|
except Exception:
|
||||||
|
pass
|
||||||
|
|
||||||
|
async def wait_connected(self, timeout: float = 30.0) -> bool:
|
||||||
|
try:
|
||||||
|
await asyncio.wait_for(self._connected.wait(), timeout=timeout)
|
||||||
|
return True
|
||||||
|
except asyncio.TimeoutError:
|
||||||
|
return False
|
||||||
|
|
||||||
|
async def send_packet(self, packet: Union[bytes, str, dict]) -> bool:
|
||||||
|
if isinstance(packet, dict):
|
||||||
|
packet = json.dumps(packet, separators=(",", ":"))
|
||||||
|
if isinstance(packet, str):
|
||||||
|
packet = packet.encode("utf-8")
|
||||||
|
if not await self.wait_connected(timeout=30.0):
|
||||||
|
return False
|
||||||
|
ws = self._ws
|
||||||
|
if ws is None:
|
||||||
|
return False
|
||||||
|
async with self._send_lock:
|
||||||
|
try:
|
||||||
|
await ws.send(packet)
|
||||||
|
return True
|
||||||
|
except (ConnectionClosed, OSError) as e:
|
||||||
|
print(f"[bridge] send failed: {e!r}")
|
||||||
|
self._signal_disconnect()
|
||||||
|
await self._close_ws()
|
||||||
|
return False
|
||||||
|
|
||||||
|
async def send_espnow(
|
||||||
|
self,
|
||||||
|
packet: bytes,
|
||||||
|
*,
|
||||||
|
peer_mac: Optional[bytes] = None,
|
||||||
|
broadcast: bool = False,
|
||||||
|
) -> bool:
|
||||||
|
del peer_mac, broadcast
|
||||||
|
return await self.send_packet(packet)
|
||||||
|
|
||||||
|
def start(self) -> asyncio.Task:
|
||||||
|
self._stop = False
|
||||||
|
if self._task is None or self._task.done():
|
||||||
|
self._task = asyncio.create_task(self.run_forever())
|
||||||
|
return self._task
|
||||||
|
|
||||||
|
def stop(self) -> None:
|
||||||
|
self._stop = True
|
||||||
|
self._signal_disconnect()
|
||||||
|
task = self._task
|
||||||
|
if task is not None and not task.done():
|
||||||
|
task.cancel()
|
||||||
|
|
||||||
|
|
||||||
|
_client: Optional[BridgeWsClient] = None
|
||||||
|
|
||||||
|
|
||||||
|
def get_bridge_client() -> Optional[BridgeWsClient]:
|
||||||
|
return _client
|
||||||
|
|
||||||
|
|
||||||
|
def init_bridge_client(url: str, *, wifi_channel: int = WIFI_CHANNEL_DEFAULT) -> BridgeWsClient:
|
||||||
|
global _client
|
||||||
|
if _client is not None:
|
||||||
|
_client.stop()
|
||||||
|
_client = BridgeWsClient(url, wifi_channel=wifi_channel)
|
||||||
|
return _client
|
||||||
@@ -38,29 +38,6 @@ def normalize_mac(mac):
|
|||||||
return None
|
return None
|
||||||
|
|
||||||
|
|
||||||
def resolve_device_mac_for_select_routing(devices, name_key):
|
|
||||||
"""
|
|
||||||
Map a v1 ``select`` map key to device storage id (MAC).
|
|
||||||
|
|
||||||
Matches the registry **name**, or ``led-<12hex>`` as a MAC hint (default driver
|
|
||||||
name form) so routing still works after the device is renamed in the registry.
|
|
||||||
"""
|
|
||||||
k = str(name_key or "").strip()
|
|
||||||
if not k:
|
|
||||||
return None
|
|
||||||
for did in devices.list():
|
|
||||||
doc = devices.read(did) or {}
|
|
||||||
if str(doc.get("name") or "").strip() == k:
|
|
||||||
m = normalize_mac(did)
|
|
||||||
if m:
|
|
||||||
return m
|
|
||||||
if k.startswith("led-"):
|
|
||||||
m = normalize_mac(k[4:])
|
|
||||||
if m and devices.read(m):
|
|
||||||
return m
|
|
||||||
return None
|
|
||||||
|
|
||||||
|
|
||||||
def derive_device_mac(mac=None, address=None, transport="espnow"):
|
def derive_device_mac(mac=None, address=None, transport="espnow"):
|
||||||
"""
|
"""
|
||||||
Resolve the device MAC used as storage id.
|
Resolve the device MAC used as storage id.
|
||||||
@@ -256,6 +233,68 @@ class Device(Model):
|
|||||||
def list(self):
|
def list(self):
|
||||||
return list(self.keys())
|
return list(self.keys())
|
||||||
|
|
||||||
|
def upsert_espnow_announced(
|
||||||
|
self,
|
||||||
|
mac,
|
||||||
|
device_name,
|
||||||
|
*,
|
||||||
|
device_type="led",
|
||||||
|
num_leds=None,
|
||||||
|
color_order=None,
|
||||||
|
startup_mode=None,
|
||||||
|
brightness=None,
|
||||||
|
):
|
||||||
|
"""
|
||||||
|
Register or update an ESP-NOW device from a binary ANNOUNCE.
|
||||||
|
|
||||||
|
Returns ``(mac_hex | None, persisted)``.
|
||||||
|
"""
|
||||||
|
mac_hex = normalize_mac(mac)
|
||||||
|
if not mac_hex:
|
||||||
|
return None, False
|
||||||
|
name = (device_name or "").strip()
|
||||||
|
if not name:
|
||||||
|
return None, False
|
||||||
|
resolved_type = validate_device_type(device_type)
|
||||||
|
meta = {}
|
||||||
|
if num_leds is not None:
|
||||||
|
meta["num_leds"] = int(num_leds)
|
||||||
|
if color_order is not None:
|
||||||
|
meta["color_order"] = str(color_order)
|
||||||
|
if startup_mode is not None:
|
||||||
|
meta["startup_mode"] = str(startup_mode)
|
||||||
|
if brightness is not None:
|
||||||
|
meta["brightness"] = int(brightness)
|
||||||
|
|
||||||
|
if mac_hex in self:
|
||||||
|
prev = self[mac_hex]
|
||||||
|
merged = dict(prev)
|
||||||
|
merged["name"] = name
|
||||||
|
merged["type"] = resolved_type
|
||||||
|
merged["transport"] = "espnow"
|
||||||
|
merged["address"] = mac_hex
|
||||||
|
merged["id"] = mac_hex
|
||||||
|
merged.update({k: v for k, v in meta.items() if v is not None})
|
||||||
|
if merged == prev:
|
||||||
|
return mac_hex, False
|
||||||
|
self[mac_hex] = merged
|
||||||
|
self.save()
|
||||||
|
return mac_hex, True
|
||||||
|
|
||||||
|
row = {
|
||||||
|
"id": mac_hex,
|
||||||
|
"name": name,
|
||||||
|
"type": resolved_type,
|
||||||
|
"transport": "espnow",
|
||||||
|
"address": mac_hex,
|
||||||
|
"default_pattern": None,
|
||||||
|
"zones": [],
|
||||||
|
}
|
||||||
|
row.update({k: v for k, v in meta.items() if v is not None})
|
||||||
|
self[mac_hex] = row
|
||||||
|
self.save()
|
||||||
|
return mac_hex, True
|
||||||
|
|
||||||
def upsert_wifi_tcp_client(self, device_name, peer_ip, mac, device_type=None):
|
def upsert_wifi_tcp_client(self, device_name, peer_ip, mac, device_type=None):
|
||||||
"""
|
"""
|
||||||
Register or update a Wi-Fi client by **MAC** (storage id). Updates **name**,
|
Register or update a Wi-Fi client by **MAC** (storage id). Updates **name**,
|
||||||
|
|||||||
@@ -54,6 +54,9 @@ class Group(Model):
|
|||||||
if "output_brightness" not in doc:
|
if "output_brightness" not in doc:
|
||||||
doc["output_brightness"] = 255
|
doc["output_brightness"] = 255
|
||||||
changed = True
|
changed = True
|
||||||
|
if "bridge_id" not in doc:
|
||||||
|
doc["bridge_id"] = None
|
||||||
|
changed = True
|
||||||
return changed
|
return changed
|
||||||
|
|
||||||
def create(self, name=""):
|
def create(self, name=""):
|
||||||
@@ -66,6 +69,7 @@ class Group(Model):
|
|||||||
"wifi_color_order": None,
|
"wifi_color_order": None,
|
||||||
"wifi_startup_mode": None,
|
"wifi_startup_mode": None,
|
||||||
"output_brightness": 255,
|
"output_brightness": 255,
|
||||||
|
"bridge_id": None,
|
||||||
"pattern": "on",
|
"pattern": "on",
|
||||||
"colors": ["000000", "FF0000"],
|
"colors": ["000000", "FF0000"],
|
||||||
"brightness": 100,
|
"brightness": 100,
|
||||||
|
|||||||
@@ -1,90 +1,171 @@
|
|||||||
import asyncio
|
"""Transport to LED drivers via ESP-NOW bridge WebSocket or USB serial."""
|
||||||
|
|
||||||
import json
|
import json
|
||||||
|
from typing import Any, Dict, List, Optional, Union
|
||||||
|
|
||||||
|
from models.bridge_serial_client import get_bridge_serial_client
|
||||||
|
from models.bridge_ws_client import get_bridge_client
|
||||||
|
from util.bridge_envelope import (
|
||||||
|
BROADCAST_HEX,
|
||||||
|
BROADCAST_MAC,
|
||||||
|
build_devices_envelope,
|
||||||
|
format_mac_key,
|
||||||
|
is_broadcast_mac,
|
||||||
|
normalize_mac_key,
|
||||||
|
)
|
||||||
|
from util.espnow_wire import WIRE_MAGIC
|
||||||
|
|
||||||
|
|
||||||
# Default: broadcast (6 bytes). Pi always sends 6-byte address + payload to ESP32.
|
class NullBridge:
|
||||||
BROADCAST_MAC = bytes.fromhex("ffffffffffff")
|
"""No bridge configured."""
|
||||||
|
|
||||||
|
async def send(self, data, addr=None):
|
||||||
|
return False
|
||||||
|
|
||||||
|
|
||||||
def _encode_payload(data):
|
class BridgeWsTransport:
|
||||||
if isinstance(data, str):
|
"""Send v1 JSON or devices envelope via bridge WebSocket."""
|
||||||
return data.encode()
|
|
||||||
|
async def send(self, data: Union[bytes, str, Dict[str, Any]], addr=None) -> bool:
|
||||||
|
client = get_bridge_client()
|
||||||
|
if client is None:
|
||||||
|
return False
|
||||||
|
|
||||||
if isinstance(data, dict):
|
if isinstance(data, dict):
|
||||||
return json.dumps(data).encode()
|
if data.get("v") == "1" and ("devices" in data or "dv" in data):
|
||||||
return data
|
from util.v1_wire import compact_envelope
|
||||||
|
|
||||||
|
return await client.send_packet(compact_envelope(data))
|
||||||
|
packet = json.dumps(data, separators=(",", ":")).encode("utf-8")
|
||||||
|
elif isinstance(data, str):
|
||||||
|
packet = data.encode("utf-8")
|
||||||
|
elif isinstance(data, (bytes, bytearray)):
|
||||||
|
packet = bytes(data)
|
||||||
|
else:
|
||||||
|
return False
|
||||||
|
|
||||||
def _parse_mac(addr):
|
if not packet:
|
||||||
"""Convert 12-char hex string or 6-byte bytes to 6-byte MAC."""
|
return False
|
||||||
if addr is None or addr == b"":
|
|
||||||
return BROADCAST_MAC
|
|
||||||
if isinstance(addr, bytes) and len(addr) == 6:
|
|
||||||
return addr
|
|
||||||
if isinstance(addr, str) and len(addr) == 12:
|
|
||||||
return bytes.fromhex(addr)
|
|
||||||
return BROADCAST_MAC
|
|
||||||
|
|
||||||
|
if packet[0] == WIRE_MAGIC:
|
||||||
|
return await client.send_packet(packet)
|
||||||
|
|
||||||
async def _to_thread(func, *args):
|
if packet[0:1] != b"{":
|
||||||
to_thread = getattr(asyncio, "to_thread", None)
|
return False
|
||||||
if to_thread:
|
|
||||||
return await to_thread(func, *args)
|
|
||||||
loop = asyncio.get_event_loop()
|
|
||||||
return await loop.run_in_executor(None, func, *args)
|
|
||||||
|
|
||||||
|
mac_key = _addr_to_envelope_key(addr)
|
||||||
|
if mac_key is None:
|
||||||
|
return await client.send_packet(packet)
|
||||||
|
|
||||||
class NullSender:
|
|
||||||
"""Used when no ESP-NOW UART bridge is configured or the port cannot be opened."""
|
|
||||||
|
|
||||||
async def send(self, data, addr=None):
|
|
||||||
return True
|
|
||||||
|
|
||||||
|
|
||||||
class SerialSender:
|
|
||||||
def __init__(self, port, baudrate, default_addr=None):
|
|
||||||
import serial
|
|
||||||
|
|
||||||
self._serial = serial.Serial(port, baudrate=baudrate, timeout=1)
|
|
||||||
self._default_addr = _parse_mac(default_addr)
|
|
||||||
self._write_lock = asyncio.Lock()
|
|
||||||
|
|
||||||
async def send(self, data, addr=None):
|
|
||||||
mac = _parse_mac(addr) if addr is not None else self._default_addr
|
|
||||||
payload = _encode_payload(data)
|
|
||||||
async with self._write_lock:
|
|
||||||
await _to_thread(self._serial.write, mac + payload)
|
|
||||||
return True
|
|
||||||
|
|
||||||
|
|
||||||
_current_sender = None
|
|
||||||
|
|
||||||
|
|
||||||
def set_sender(sender):
|
|
||||||
global _current_sender
|
|
||||||
_current_sender = sender
|
|
||||||
|
|
||||||
|
|
||||||
def get_current_sender():
|
|
||||||
return _current_sender
|
|
||||||
|
|
||||||
|
|
||||||
def get_sender(settings):
|
|
||||||
# Serial ESP-NOW bridge is opt-in (serial_enabled true); default off for dev / Wi-Fi-only.
|
|
||||||
if not settings.get("serial_enabled"):
|
|
||||||
print("[startup] serial bridge disabled (set serial_enabled true in settings.json to enable)")
|
|
||||||
return NullSender()
|
|
||||||
port = settings.get("serial_port", "/dev/ttyS0")
|
|
||||||
raw_port = str(port).strip() if port is not None else ""
|
|
||||||
if not raw_port or raw_port.lower() in ("none", "off"):
|
|
||||||
print("[startup] serial bridge disabled (empty serial_port)")
|
|
||||||
return NullSender()
|
|
||||||
baudrate = settings.get("serial_baudrate", 912000)
|
|
||||||
default_addr = settings.get("serial_destination_mac", "ffffffffffff")
|
|
||||||
try:
|
try:
|
||||||
return SerialSender(raw_port, baudrate, default_addr=default_addr)
|
body = json.loads(packet.decode("utf-8"))
|
||||||
except Exception as e:
|
except (UnicodeError, ValueError, TypeError):
|
||||||
|
return False
|
||||||
|
if not isinstance(body, dict) or body.get("v") != "1":
|
||||||
|
return False
|
||||||
|
|
||||||
|
envelope = build_devices_envelope({mac_key: body})
|
||||||
|
return await client.send_packet(envelope)
|
||||||
|
|
||||||
|
async def send_envelope(self, envelope: Dict[str, Any]) -> bool:
|
||||||
|
client = get_bridge_client()
|
||||||
|
if client is None:
|
||||||
|
return False
|
||||||
|
return await client.send_packet(envelope)
|
||||||
|
|
||||||
|
|
||||||
|
class BridgeSerialTransport:
|
||||||
|
"""Send v1 JSON or devices envelope via bridge USB/serial."""
|
||||||
|
|
||||||
|
async def send(self, data: Union[bytes, str, Dict[str, Any]], addr=None) -> bool:
|
||||||
|
client = get_bridge_serial_client()
|
||||||
|
if client is None:
|
||||||
|
return False
|
||||||
|
|
||||||
|
if isinstance(data, dict):
|
||||||
|
if data.get("v") == "1" and ("devices" in data or "dv" in data):
|
||||||
|
from util.v1_wire import compact_envelope
|
||||||
|
|
||||||
|
return await client.send_packet(compact_envelope(data))
|
||||||
|
packet = json.dumps(data, separators=(",", ":")).encode("utf-8")
|
||||||
|
elif isinstance(data, str):
|
||||||
|
packet = data.encode("utf-8")
|
||||||
|
elif isinstance(data, (bytes, bytearray)):
|
||||||
|
packet = bytes(data)
|
||||||
|
else:
|
||||||
|
return False
|
||||||
|
|
||||||
|
if not packet:
|
||||||
|
return False
|
||||||
|
|
||||||
|
if packet[0] == WIRE_MAGIC:
|
||||||
|
return await client.send_packet(packet)
|
||||||
|
|
||||||
|
if packet[0:1] != b"{":
|
||||||
|
return False
|
||||||
|
|
||||||
|
mac_key = _addr_to_envelope_key(addr)
|
||||||
|
if mac_key is None:
|
||||||
|
return await client.send_packet(packet)
|
||||||
|
|
||||||
|
try:
|
||||||
|
body = json.loads(packet.decode("utf-8"))
|
||||||
|
except (UnicodeError, ValueError, TypeError):
|
||||||
|
return False
|
||||||
|
if not isinstance(body, dict) or body.get("v") != "1":
|
||||||
|
return False
|
||||||
|
|
||||||
|
envelope = build_devices_envelope({mac_key: body})
|
||||||
|
return await client.send_packet(envelope)
|
||||||
|
|
||||||
|
async def send_envelope(self, envelope: Dict[str, Any]) -> bool:
|
||||||
|
client = get_bridge_serial_client()
|
||||||
|
if client is None:
|
||||||
|
return False
|
||||||
|
return await client.send_packet(envelope)
|
||||||
|
|
||||||
|
|
||||||
|
def _addr_to_envelope_key(addr) -> Optional[str]:
|
||||||
|
if addr is None:
|
||||||
|
return BROADCAST_MAC
|
||||||
|
s = str(addr).strip().lower()
|
||||||
|
if is_broadcast_mac(s):
|
||||||
|
return BROADCAST_MAC
|
||||||
|
h = normalize_mac_key(s)
|
||||||
|
if h:
|
||||||
|
try:
|
||||||
|
return format_mac_key(h)
|
||||||
|
except ValueError:
|
||||||
|
return None
|
||||||
|
return None
|
||||||
|
|
||||||
|
|
||||||
|
_current_bridge = None
|
||||||
|
|
||||||
|
|
||||||
|
def set_bridge(bridge):
|
||||||
|
global _current_bridge
|
||||||
|
_current_bridge = bridge
|
||||||
|
|
||||||
|
|
||||||
|
def get_current_bridge():
|
||||||
|
return _current_bridge
|
||||||
|
|
||||||
|
|
||||||
|
def get_bridge(settings):
|
||||||
|
mode = str(settings.get("bridge_transport") or "wifi").strip().lower()
|
||||||
|
if mode == "wifi":
|
||||||
|
url = str(settings.get("bridge_ws_url") or "").strip()
|
||||||
|
if not url:
|
||||||
|
print("[startup] bridge Wi‑Fi disabled (set bridge_ws_url in settings.json)")
|
||||||
|
return NullBridge()
|
||||||
|
print(f"[startup] ESP-NOW via bridge WebSocket {url!r}")
|
||||||
|
return BridgeWsTransport()
|
||||||
|
port = str(settings.get("bridge_serial_port") or "").strip()
|
||||||
|
if not port:
|
||||||
print(
|
print(
|
||||||
f"[startup] serial open failed ({raw_port!r}): {e}; "
|
"[startup] bridge serial disabled (set bridge_serial_port in settings.json)"
|
||||||
"continuing without ESP-NOW bridge (Wi-Fi drivers unchanged)"
|
|
||||||
)
|
)
|
||||||
return NullSender()
|
return NullBridge()
|
||||||
|
print(f"[startup] ESP-NOW via bridge USB serial {port!r}")
|
||||||
|
return BridgeSerialTransport()
|
||||||
|
|||||||
@@ -183,9 +183,9 @@ async def send_json_line_to_ip(ip: str, json_str: str) -> bool:
|
|||||||
|
|
||||||
|
|
||||||
async def _recv_forward_loop(ip: str, ws) -> None:
|
async def _recv_forward_loop(ip: str, ws) -> None:
|
||||||
from models.transport import get_current_sender
|
from models.transport import get_current_bridge
|
||||||
|
|
||||||
sender = get_current_sender()
|
bridge = get_current_bridge()
|
||||||
async for message in ws:
|
async for message in ws:
|
||||||
if isinstance(message, bytes):
|
if isinstance(message, bytes):
|
||||||
try:
|
try:
|
||||||
@@ -199,13 +199,13 @@ async def _recv_forward_loop(ip: str, ws) -> None:
|
|||||||
if not text:
|
if not text:
|
||||||
continue
|
continue
|
||||||
print(f"[WS] recv {ip}: {text}")
|
print(f"[WS] recv {ip}: {text}")
|
||||||
if not sender:
|
if not bridge:
|
||||||
continue
|
continue
|
||||||
try:
|
try:
|
||||||
parsed = json.loads(text)
|
parsed = json.loads(text)
|
||||||
except json.JSONDecodeError:
|
except json.JSONDecodeError:
|
||||||
try:
|
try:
|
||||||
await sender.send(text)
|
await bridge.send(text)
|
||||||
except Exception:
|
except Exception:
|
||||||
pass
|
pass
|
||||||
continue
|
continue
|
||||||
@@ -213,12 +213,12 @@ async def _recv_forward_loop(ip: str, ws) -> None:
|
|||||||
addr = parsed.pop("to", None)
|
addr = parsed.pop("to", None)
|
||||||
payload = json.dumps(parsed) if parsed else "{}"
|
payload = json.dumps(parsed) if parsed else "{}"
|
||||||
try:
|
try:
|
||||||
await sender.send(payload, addr=addr)
|
await bridge.send(payload, addr=addr)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
print(f"[WS] forward to bridge failed: {e}")
|
print(f"[WS] forward to bridge failed: {e}")
|
||||||
else:
|
else:
|
||||||
try:
|
try:
|
||||||
await sender.send(text)
|
await bridge.send(text)
|
||||||
except Exception:
|
except Exception:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|||||||
@@ -21,8 +21,8 @@ def _maybe_migrate_tab_json_to_zone():
|
|||||||
class Zone(Model):
|
class Zone(Model):
|
||||||
"""Preset layout row (stored in ``db/zone.json``); legacy storage was ``tab.json`` / Tab.
|
"""Preset layout row (stored in ``db/zone.json``); legacy storage was ``tab.json`` / Tab.
|
||||||
|
|
||||||
Optional ``content_kind`` on a row: ``\"presets\"`` (preset tiles only) or ``\"sequences\"``
|
Optional legacy ``content_kind`` (``\"presets\"`` / ``\"sequences\"``) is kept for older data;
|
||||||
(sequence tiles only). Legacy rows without ``content_kind`` are inferred on load.
|
zones may hold both preset tiles and ``sequence_ids``.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
@@ -95,13 +95,8 @@ class Zone(Model):
|
|||||||
return "presets"
|
return "presets"
|
||||||
|
|
||||||
def _enforce_content_kind_invariants(self, doc):
|
def _enforce_content_kind_invariants(self, doc):
|
||||||
"""Presets-only zones hold no sequences; sequences-only hold no preset tiles."""
|
"""No-op: presets and sequences may coexist on one zone."""
|
||||||
kind = self._normalized_content_kind(doc)
|
_ = doc
|
||||||
if kind == "presets":
|
|
||||||
doc["sequence_ids"] = []
|
|
||||||
elif kind == "sequences":
|
|
||||||
doc["presets"] = []
|
|
||||||
doc["presets_flat"] = []
|
|
||||||
|
|
||||||
def create(self, name="", names=None, presets=None, group_ids=None, content_kind=None):
|
def create(self, name="", names=None, presets=None, group_ids=None, content_kind=None):
|
||||||
next_id = self.get_next_id()
|
next_id = self.get_next_id()
|
||||||
@@ -135,13 +130,7 @@ class Zone(Model):
|
|||||||
if id_str not in self:
|
if id_str not in self:
|
||||||
return False
|
return False
|
||||||
patch = dict(data) if isinstance(data, dict) else {}
|
patch = dict(data) if isinstance(data, dict) else {}
|
||||||
doc = self[id_str]
|
|
||||||
locked_kind = self._normalized_content_kind(doc) or self._infer_content_kind(doc)
|
|
||||||
if "content_kind" in patch:
|
|
||||||
patch["content_kind"] = locked_kind
|
|
||||||
self[id_str].update(patch)
|
self[id_str].update(patch)
|
||||||
if "content_kind" in patch:
|
|
||||||
self._enforce_content_kind_invariants(self[id_str])
|
|
||||||
self.save()
|
self.save()
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|||||||
@@ -2,6 +2,8 @@ import json
|
|||||||
import os
|
import os
|
||||||
import binascii
|
import binascii
|
||||||
|
|
||||||
|
WIFI_CHANNEL_DEFAULT = 5
|
||||||
|
|
||||||
|
|
||||||
def _settings_path():
|
def _settings_path():
|
||||||
"""Path to settings.json in project root (writable without root)."""
|
"""Path to settings.json in project root (writable without root)."""
|
||||||
@@ -51,32 +53,20 @@ class Settings(dict):
|
|||||||
self.save()
|
self.save()
|
||||||
# ESP-NOW STA channel (2.4 GHz) for LED drivers / bridge alignment; 1–11
|
# ESP-NOW STA channel (2.4 GHz) for LED drivers / bridge alignment; 1–11
|
||||||
if 'wifi_channel' not in self:
|
if 'wifi_channel' not in self:
|
||||||
self['wifi_channel'] = 6
|
self['wifi_channel'] = WIFI_CHANNEL_DEFAULT
|
||||||
# Wi-Fi LED drivers: controller opens WebSocket to device (firmware serves /ws)
|
# WebSocket URL of ESP-NOW bridge (Pi is client), e.g. ws://192.168.4.1/ws
|
||||||
if 'wifi_driver_ws_port' not in self:
|
if 'bridge_ws_url' not in self:
|
||||||
self['wifi_driver_ws_port'] = 80
|
self['bridge_ws_url'] = ''
|
||||||
if 'wifi_driver_ws_path' not in self:
|
if 'wifi_interface' not in self:
|
||||||
self['wifi_driver_ws_path'] = '/ws'
|
self['wifi_interface'] = ''
|
||||||
# Legacy (unused): periodic UDP nudges removed; connect only on driver hello.
|
if 'bridges' not in self:
|
||||||
if 'wifi_driver_hello_interval_s' not in self:
|
self['bridges'] = []
|
||||||
self['wifi_driver_hello_interval_s'] = 0
|
if 'bridge_transport' not in self:
|
||||||
if 'wifi_driver_connect_retry_window_s' not in self:
|
self['bridge_transport'] = 'serial'
|
||||||
self['wifi_driver_connect_retry_window_s'] = 120.0
|
if 'bridge_serial_port' not in self:
|
||||||
# Spread outbound dials 0..N s by device IP so six+ drivers do not all hit the AP at once.
|
self['bridge_serial_port'] = ''
|
||||||
if 'wifi_driver_connect_stagger_max_s' not in self:
|
if 'bridge_serial_baudrate' not in self:
|
||||||
self['wifi_driver_connect_stagger_max_s'] = 2.5
|
self['bridge_serial_baudrate'] = 115200
|
||||||
# TCP/WebSocket open timeout per attempt (seconds).
|
|
||||||
if 'wifi_driver_ws_open_timeout' not in self:
|
|
||||||
self['wifi_driver_ws_open_timeout'] = 45.0
|
|
||||||
# Pause between outbound WebSocket dial attempts (seconds).
|
|
||||||
if 'wifi_driver_connect_retry_interval_s' not in self:
|
|
||||||
self['wifi_driver_connect_retry_interval_s'] = 2.0
|
|
||||||
# Outbound WebSocket dial attempts per driver UDP hello (then wait for next hello).
|
|
||||||
if 'wifi_driver_initial_connect_attempts' not in self:
|
|
||||||
self['wifi_driver_initial_connect_attempts'] = 4
|
|
||||||
# UART to ESP32 ESP-NOW bridge; default off (Wi-Fi drivers need no serial).
|
|
||||||
if 'serial_enabled' not in self:
|
|
||||||
self['serial_enabled'] = False
|
|
||||||
# Zone UI global brightness (0–255); shared across browsers/devices.
|
# Zone UI global brightness (0–255); shared across browsers/devices.
|
||||||
if 'global_brightness' not in self:
|
if 'global_brightness' not in self:
|
||||||
self['global_brightness'] = 255
|
self['global_brightness'] = 255
|
||||||
@@ -88,12 +78,16 @@ class Settings(dict):
|
|||||||
# Beat flash alignment delay (ms); applied by all UI clients polling audio status.
|
# Beat flash alignment delay (ms); applied by all UI clients polling audio status.
|
||||||
if 'audio_beat_phase_ms' not in self:
|
if 'audio_beat_phase_ms' not in self:
|
||||||
self['audio_beat_phase_ms'] = 0
|
self['audio_beat_phase_ms'] = 0
|
||||||
|
# Input gain for beat detection (percent, 0–200).
|
||||||
|
if 'audio_input_volume' not in self:
|
||||||
|
self['audio_input_volume'] = 100
|
||||||
|
|
||||||
def save(self):
|
def save(self):
|
||||||
try:
|
try:
|
||||||
j = json.dumps(self)
|
j = json.dumps(self, indent=2, sort_keys=True)
|
||||||
with open(self.SETTINGS_FILE, 'w') as file:
|
with open(self.SETTINGS_FILE, 'w') as file:
|
||||||
file.write(j)
|
file.write(j)
|
||||||
|
file.write("\n")
|
||||||
if not getattr(self, "_quiet", False):
|
if not getattr(self, "_quiet", False):
|
||||||
print("Settings saved successfully.")
|
print("Settings saved successfully.")
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
|
|||||||
@@ -872,7 +872,7 @@ class LightingController {
|
|||||||
this.selectTab(this.state.zone_order[0]);
|
this.selectTab(this.state.zone_order[0]);
|
||||||
} else {
|
} else {
|
||||||
this.currentTab = null;
|
this.currentTab = null;
|
||||||
document.getElementById('zone-content').innerHTML = '<p>No tabs available. Create a new zone to get started.</p>';
|
document.getElementById('zone-content').innerHTML = '<p>No zones available. Create a new zone to get started.</p>';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
@@ -1010,7 +1010,7 @@ class LightingController {
|
|||||||
this.state.lights = {};
|
this.state.lights = {};
|
||||||
this.state.zone_order = [];
|
this.state.zone_order = [];
|
||||||
this.renderTabs();
|
this.renderTabs();
|
||||||
document.getElementById('zone-content').innerHTML = '<p>No tabs available. Create a new zone to get started.</p>';
|
document.getElementById('zone-content').innerHTML = '<p>No zones available. Create a new zone to get started.</p>';
|
||||||
this.updateCurrentProfileDisplay();
|
this.updateCurrentProfileDisplay();
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
let pollTimer = null;
|
let pollTimer = null;
|
||||||
let audioDetectorRunning = false;
|
let audioDetectorRunning = false;
|
||||||
let lastBeatSeq = 0;
|
let lastBeatSeq = 0;
|
||||||
let lastLoggedSequenceBeatFractions = "";
|
|
||||||
/** Prior poll had server zone sequence playback active (`status.sequence.active === true`). */
|
/** Prior poll had server zone sequence playback active (`status.sequence.active === true`). */
|
||||||
let prevZoneSequencePlaybackActive = false;
|
let prevZoneSequencePlaybackActive = false;
|
||||||
/**
|
/**
|
||||||
@@ -10,10 +9,11 @@
|
|||||||
* next beat bumps `beat_seq` (avoids the stuck final cumulative value vs sequence readout).
|
* next beat bumps `beat_seq` (avoids the stuck final cumulative value vs sequence readout).
|
||||||
*/
|
*/
|
||||||
let headerBeatStickyIdleAfterSeq = false;
|
let headerBeatStickyIdleAfterSeq = false;
|
||||||
/** Suppresses duplicate `console.log` when the same `beat_seq` + server `beat_readout` repeats. */
|
|
||||||
let lastBeatConsoleKey = "";
|
|
||||||
/** @type {Set<ReturnType<typeof setTimeout>>} */
|
/** @type {Set<ReturnType<typeof setTimeout>>} */
|
||||||
const pendingBeatPhaseTimers = new Set();
|
const pendingBeatPhaseTimers = new Set();
|
||||||
|
let cachedBeatPhaseMs = 0;
|
||||||
|
/** @type {{ device: string|number|null, device_override: string, device_select: string }} */
|
||||||
|
let cachedAudioRun = { device: null, device_override: "", device_select: "" };
|
||||||
|
|
||||||
function el(id) {
|
function el(id) {
|
||||||
return document.getElementById(id);
|
return document.getElementById(id);
|
||||||
@@ -28,40 +28,11 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* On each new audio `beat_seq`, log server `beat_readout` once (deduped when poll repeats the
|
|
||||||
* same `beat_seq` + line).
|
|
||||||
* @param {Record<string, unknown>} status
|
|
||||||
*/
|
|
||||||
function logServerBeatConsoleOnPollEdge(status) {
|
|
||||||
const beatSeq = Number((status && status.beat_seq) || 0);
|
|
||||||
const line = String((status && status.beat_readout) || "").trim();
|
|
||||||
const key = `${beatSeq}\t${line}`;
|
|
||||||
if (key !== lastBeatConsoleKey) {
|
|
||||||
lastBeatConsoleKey = key;
|
|
||||||
if (!line) return;
|
|
||||||
const seq = /** @type {Record<string, unknown>|undefined} */ (status && status.sequence);
|
|
||||||
const seqBeats = !!seq && !!seq.active;
|
|
||||||
let out = line;
|
|
||||||
if (seqBeats) {
|
|
||||||
const nLanes = Number(seq && seq.num_lanes);
|
|
||||||
const lanesNote =
|
|
||||||
Number.isFinite(nLanes) && nLanes > 1
|
|
||||||
? `lane 1 of ${nLanes} (readout is for this lane only)`
|
|
||||||
: "lane 1";
|
|
||||||
out = `${line} — ${lanesNote}`;
|
|
||||||
}
|
|
||||||
console.log(out);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function updateBpmDisplay(bpm) {
|
function updateBpmDisplay(bpm) {
|
||||||
const node = el("audio-bpm-value");
|
const text = Number.isFinite(bpm) ? bpm.toFixed(1) : "--";
|
||||||
if (!node) return;
|
for (const id of ["audio-bpm-value", "audio-top-bpm-value"]) {
|
||||||
node.textContent = Number.isFinite(bpm) ? bpm.toFixed(1) : "--";
|
const node = el(id);
|
||||||
const topNode = el("audio-top-bpm-value");
|
if (node) node.textContent = text;
|
||||||
if (topNode) {
|
|
||||||
topNode.textContent = Number.isFinite(bpm) ? bpm.toFixed(1) : "--";
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -73,38 +44,6 @@
|
|||||||
return !!(seq && seq.active);
|
return !!(seq && seq.active);
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Build sequence beat fractions for debug logging (browser console only). */
|
|
||||||
function formatSequenceBeatFractionsForLog(status) {
|
|
||||||
const seq = /** @type {Record<string, unknown>|undefined} */ (status && status.sequence);
|
|
||||||
if (!seq || !seq.active) return null;
|
|
||||||
|
|
||||||
const laneBeatAt = Number(seq.lane0_beat_in_step);
|
|
||||||
const laneBeatsPerStep = Number(seq.lane0_beats_per_step);
|
|
||||||
if (
|
|
||||||
!Number.isFinite(laneBeatAt) ||
|
|
||||||
laneBeatAt <= 0 ||
|
|
||||||
!Number.isFinite(laneBeatsPerStep) ||
|
|
||||||
laneBeatsPerStep <= 0
|
|
||||||
) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
const presetFraction = `${Math.floor(laneBeatAt)}/${Math.floor(laneBeatsPerStep)}`;
|
|
||||||
|
|
||||||
const sequenceBeatAt = Number(seq.sequence_beat_at);
|
|
||||||
const sequenceBeatsPerPass = Number(seq.sequence_beats_per_pass);
|
|
||||||
if (
|
|
||||||
!Number.isFinite(sequenceBeatAt) ||
|
|
||||||
sequenceBeatAt <= 0 ||
|
|
||||||
!Number.isFinite(sequenceBeatsPerPass) ||
|
|
||||||
sequenceBeatsPerPass <= 0
|
|
||||||
) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
const sequenceFraction = `${Math.floor(sequenceBeatAt)}/${Math.floor(sequenceBeatsPerPass)}`;
|
|
||||||
|
|
||||||
return `${presetFraction} ${sequenceFraction}`;
|
|
||||||
}
|
|
||||||
|
|
||||||
function updateHitTypeDisplay(hitType, confidence) {
|
function updateHitTypeDisplay(hitType, confidence) {
|
||||||
const node = el("audio-hit-type-value");
|
const node = el("audio-hit-type-value");
|
||||||
if (!node) return;
|
if (!node) return;
|
||||||
@@ -136,11 +75,9 @@
|
|||||||
top.classList.toggle("audio-running", !!on);
|
top.classList.toggle("audio-running", !!on);
|
||||||
}
|
}
|
||||||
|
|
||||||
function setNavResetVisible(on) {
|
function setResetDetectorEnabled(on) {
|
||||||
for (const id of ["audio-nav-reset-btn", "audio-nav-reset-mobile"]) {
|
const btn = el("audio-reset-btn");
|
||||||
const node = el(id);
|
if (btn) btn.disabled = !on;
|
||||||
if (node) node.hidden = !on;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async function resetAudioTracking() {
|
async function resetAudioTracking() {
|
||||||
@@ -160,20 +97,21 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function updateSequenceSyncControls(zoneSeqActive) {
|
function beatSyncButtonTitle(zoneSeqActive) {
|
||||||
const topSync = el("audio-top-beat-sync");
|
if (!audioDetectorRunning) return "Start beat detection";
|
||||||
if (topSync) {
|
if (zoneSeqActive) return "Sync step to music (S)";
|
||||||
topSync.disabled = audioDetectorRunning && !zoneSeqActive;
|
return "Beat detection running";
|
||||||
topSync.title = !audioDetectorRunning
|
}
|
||||||
? "Start beat detection"
|
|
||||||
: zoneSeqActive
|
function updateSequenceSyncControls(zoneSeqActive) {
|
||||||
? "Sync step to music (S)"
|
const disabled = audioDetectorRunning && !zoneSeqActive;
|
||||||
: "Beat detection running";
|
const title = beatSyncButtonTitle(zoneSeqActive);
|
||||||
|
for (const id of ["audio-top-beat-sync", "audio-modal-beat-sync"]) {
|
||||||
|
const btn = el(id);
|
||||||
|
if (!btn) continue;
|
||||||
|
btn.disabled = disabled;
|
||||||
|
btn.title = title;
|
||||||
}
|
}
|
||||||
const modalBeat = el("audio-modal-beat-readout");
|
|
||||||
if (modalBeat) modalBeat.disabled = !zoneSeqActive;
|
|
||||||
const passBtn = el("audio-sync-pass-btn");
|
|
||||||
if (passBtn) passBtn.disabled = !zoneSeqActive;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async function handleTopBpmButtonClick() {
|
async function handleTopBpmButtonClick() {
|
||||||
@@ -212,17 +150,41 @@
|
|||||||
return tag === "input" || tag === "textarea" || tag === "select" || target.isContentEditable;
|
return tag === "input" || tag === "textarea" || tag === "select" || target.isContentEditable;
|
||||||
}
|
}
|
||||||
|
|
||||||
function flashBeat() {
|
function flashBeatSyncButton(btn) {
|
||||||
const node = el("audio-beat-flash");
|
if (!btn) return;
|
||||||
if (!node) return;
|
btn.classList.add("flash");
|
||||||
node.classList.add("active");
|
setTimeout(() => btn.classList.remove("flash"), 90);
|
||||||
setTimeout(() => node.classList.remove("active"), 80);
|
|
||||||
const syncBtn = el("audio-top-beat-sync");
|
|
||||||
const top = el("audio-top-indicator");
|
|
||||||
if (syncBtn && top && top.classList.contains("audio-running")) {
|
|
||||||
syncBtn.classList.add("flash");
|
|
||||||
setTimeout(() => syncBtn.classList.remove("flash"), 90);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function flashBeat() {
|
||||||
|
const top = el("audio-top-indicator");
|
||||||
|
const topSync = el("audio-top-beat-sync");
|
||||||
|
if (topSync && top && top.classList.contains("audio-running")) {
|
||||||
|
flashBeatSyncButton(topSync);
|
||||||
|
}
|
||||||
|
const modalSync = el("audio-modal-beat-sync");
|
||||||
|
if (modalSync && audioDetectorRunning) {
|
||||||
|
flashBeatSyncButton(modalSync);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function gainPercentToDb(pct) {
|
||||||
|
const gain = Math.max(0.001, pct / 100);
|
||||||
|
return 20 * Math.log10(gain);
|
||||||
|
}
|
||||||
|
|
||||||
|
function formatGainReadout(pct) {
|
||||||
|
const db = gainPercentToDb(pct);
|
||||||
|
const dbText = db >= 0 ? `+${db.toFixed(2)}` : db.toFixed(2);
|
||||||
|
return `${pct}% (${dbText} dB)`;
|
||||||
|
}
|
||||||
|
|
||||||
|
function updateInputLevelDisplay(level) {
|
||||||
|
const pct = Number.isFinite(level) ? Math.round(Math.min(1, Math.max(0, level)) * 100) : 0;
|
||||||
|
const bar = el("audio-input-level-bar");
|
||||||
|
const meter = el("audio-modal")?.querySelector(".audio-input-level-meter");
|
||||||
|
if (bar) bar.style.width = `${pct}%`;
|
||||||
|
if (meter) meter.setAttribute("aria-valuenow", String(pct));
|
||||||
}
|
}
|
||||||
|
|
||||||
function clearBeatPhaseTimers() {
|
function clearBeatPhaseTimers() {
|
||||||
@@ -231,24 +193,38 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
function getBeatPhaseDelayMs() {
|
function getBeatPhaseDelayMs() {
|
||||||
const inp = el("audio-beat-phase-ms");
|
return Math.min(500, Math.max(0, cachedBeatPhaseMs));
|
||||||
if (inp && String(inp.value).trim() !== "") {
|
|
||||||
const n = parseInt(String(inp.value).trim(), 10);
|
|
||||||
if (Number.isFinite(n)) return Math.min(500, Math.max(0, n));
|
|
||||||
}
|
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async function persistBeatPhaseMs() {
|
function getInputVolumePercent() {
|
||||||
const ms = getBeatPhaseDelayMs();
|
const inp = el("audio-input-volume");
|
||||||
|
if (!inp) return 100;
|
||||||
|
const n = parseInt(String(inp.value).trim(), 10);
|
||||||
|
if (!Number.isFinite(n)) return 100;
|
||||||
|
return Math.min(200, Math.max(0, n));
|
||||||
|
}
|
||||||
|
|
||||||
|
function updateInputVolumeReadout() {
|
||||||
|
const readout = el("audio-input-volume-readout");
|
||||||
|
const slider = el("audio-input-volume");
|
||||||
|
const pct = getInputVolumePercent();
|
||||||
|
if (readout) readout.textContent = formatGainReadout(pct);
|
||||||
|
if (slider) {
|
||||||
|
slider.style.setProperty("--audio-volume-pct", `${(pct / 200) * 100}%`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async function persistInputVolume() {
|
||||||
|
const vol = getInputVolumePercent();
|
||||||
|
updateInputVolumeReadout();
|
||||||
try {
|
try {
|
||||||
await fetch("/settings", {
|
await fetch("/settings", {
|
||||||
method: "PUT",
|
method: "PUT",
|
||||||
headers: { "Content-Type": "application/json", Accept: "application/json" },
|
headers: { "Content-Type": "application/json", Accept: "application/json" },
|
||||||
body: JSON.stringify({ audio_beat_phase_ms: ms }),
|
body: JSON.stringify({ audio_input_volume: vol }),
|
||||||
});
|
});
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.warn("beat phase ms save failed", e);
|
console.warn("input volume save failed", e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -277,7 +253,7 @@
|
|||||||
async function stopAudioOnly() {
|
async function stopAudioOnly() {
|
||||||
audioDetectorRunning = false;
|
audioDetectorRunning = false;
|
||||||
setTopBpmVisible(false);
|
setTopBpmVisible(false);
|
||||||
setNavResetVisible(false);
|
setResetDetectorEnabled(false);
|
||||||
clearBeatPhaseTimers();
|
clearBeatPhaseTimers();
|
||||||
if (pollTimer) {
|
if (pollTimer) {
|
||||||
clearInterval(pollTimer);
|
clearInterval(pollTimer);
|
||||||
@@ -286,8 +262,8 @@
|
|||||||
lastBeatSeq = 0;
|
lastBeatSeq = 0;
|
||||||
prevZoneSequencePlaybackActive = false;
|
prevZoneSequencePlaybackActive = false;
|
||||||
headerBeatStickyIdleAfterSeq = false;
|
headerBeatStickyIdleAfterSeq = false;
|
||||||
lastBeatConsoleKey = "";
|
|
||||||
updateBeatReadoutDisplays({});
|
updateBeatReadoutDisplays({});
|
||||||
|
updateInputLevelDisplay(0);
|
||||||
try {
|
try {
|
||||||
await fetch("/api/audio/stop", { method: "POST" });
|
await fetch("/api/audio/stop", { method: "POST" });
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
@@ -313,8 +289,9 @@
|
|||||||
updateBeatReadoutDisplays({});
|
updateBeatReadoutDisplays({});
|
||||||
audioDetectorRunning = !!status.running;
|
audioDetectorRunning = !!status.running;
|
||||||
updateBpmDisplay(null);
|
updateBpmDisplay(null);
|
||||||
|
updateInputLevelDisplay(0);
|
||||||
setTopBpmVisible(!!status.running);
|
setTopBpmVisible(!!status.running);
|
||||||
setNavResetVisible(!!status.running);
|
setResetDetectorEnabled(!!status.running);
|
||||||
if (!status.running && pollTimer) {
|
if (!status.running && pollTimer) {
|
||||||
clearInterval(pollTimer);
|
clearInterval(pollTimer);
|
||||||
pollTimer = null;
|
pollTimer = null;
|
||||||
@@ -324,11 +301,14 @@
|
|||||||
audioDetectorRunning = !!status.running;
|
audioDetectorRunning = !!status.running;
|
||||||
const zoneSeqActive = sequencePlaybackActiveFromStatus(status);
|
const zoneSeqActive = sequencePlaybackActiveFromStatus(status);
|
||||||
setTopBpmVisible(!!status.running || zoneSeqActive);
|
setTopBpmVisible(!!status.running || zoneSeqActive);
|
||||||
setNavResetVisible(!!status.running);
|
setResetDetectorEnabled(!!status.running);
|
||||||
updateSequenceSyncControls(zoneSeqActive);
|
updateSequenceSyncControls(zoneSeqActive);
|
||||||
updateBpmDisplay(status.bpm);
|
updateBpmDisplay(status.bpm);
|
||||||
updateHitTypeDisplay(status.beat_type, Number(status.beat_type_confidence));
|
updateHitTypeDisplay(status.beat_type, Number(status.beat_type_confidence));
|
||||||
updateBarPhaseDisplay(status);
|
updateBarPhaseDisplay(status);
|
||||||
|
updateInputLevelDisplay(
|
||||||
|
status.running ? Number(status.input_level) : 0,
|
||||||
|
);
|
||||||
applyServerAudioUiFields(status);
|
applyServerAudioUiFields(status);
|
||||||
if (typeof window.applySequenceSwitchWaitFromServer === "function") {
|
if (typeof window.applySequenceSwitchWaitFromServer === "function") {
|
||||||
window.applySequenceSwitchWaitFromServer(status.sequence_switch_wait);
|
window.applySequenceSwitchWaitFromServer(status.sequence_switch_wait);
|
||||||
@@ -344,7 +324,6 @@
|
|||||||
prevZoneSequencePlaybackActive = zoneSeqActive;
|
prevZoneSequencePlaybackActive = zoneSeqActive;
|
||||||
if (startedSeq) {
|
if (startedSeq) {
|
||||||
headerBeatStickyIdleAfterSeq = false;
|
headerBeatStickyIdleAfterSeq = false;
|
||||||
lastLoggedSequenceBeatFractions = "";
|
|
||||||
}
|
}
|
||||||
if (endedSeq) {
|
if (endedSeq) {
|
||||||
headerBeatStickyIdleAfterSeq = true;
|
headerBeatStickyIdleAfterSeq = true;
|
||||||
@@ -354,38 +333,137 @@
|
|||||||
if (!zoneSeqActive && headerBeatStickyIdleAfterSeq) {
|
if (!zoneSeqActive && headerBeatStickyIdleAfterSeq) {
|
||||||
if (beatSeq > lastBeatSeq) {
|
if (beatSeq > lastBeatSeq) {
|
||||||
lastBeatSeq = beatSeq;
|
lastBeatSeq = beatSeq;
|
||||||
logServerBeatConsoleOnPollEdge(status);
|
|
||||||
scheduleBeatPhaseFire(beatSeq, getBeatPhaseDelayMs());
|
scheduleBeatPhaseFire(beatSeq, getBeatPhaseDelayMs());
|
||||||
headerBeatStickyIdleAfterSeq = false;
|
headerBeatStickyIdleAfterSeq = false;
|
||||||
}
|
}
|
||||||
} else if (beatSeq > lastBeatSeq) {
|
} else if (beatSeq > lastBeatSeq) {
|
||||||
lastBeatSeq = beatSeq;
|
lastBeatSeq = beatSeq;
|
||||||
logServerBeatConsoleOnPollEdge(status);
|
|
||||||
scheduleBeatPhaseFire(beatSeq, getBeatPhaseDelayMs());
|
scheduleBeatPhaseFire(beatSeq, getBeatPhaseDelayMs());
|
||||||
}
|
}
|
||||||
const beatFractions = formatSequenceBeatFractionsForLog(status);
|
|
||||||
if (beatFractions) {
|
|
||||||
if (beatFractions !== lastLoggedSequenceBeatFractions) {
|
|
||||||
lastLoggedSequenceBeatFractions = beatFractions;
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
lastLoggedSequenceBeatFractions = "";
|
|
||||||
}
|
|
||||||
updateBeatReadoutDisplays(status);
|
updateBeatReadoutDisplays(status);
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.warn("audio status poll failed", e);
|
console.warn("audio status poll failed", e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async function startAudio() {
|
/** Ignore server device sync briefly after the user picks from the dropdown. */
|
||||||
|
let deviceSelectLockUntil = 0;
|
||||||
|
/** Suppress change handler while rebuilding or programmatically setting the select. */
|
||||||
|
let suppressDeviceSelectEvents = false;
|
||||||
|
/** Last explicit UI choice (dropdown); not overwritten by server poll. */
|
||||||
|
let uiDeviceSelectId = "";
|
||||||
|
|
||||||
|
function lockDeviceSelect(ms = 10000) {
|
||||||
|
deviceSelectLockUntil = Date.now() + ms;
|
||||||
|
}
|
||||||
|
|
||||||
|
function preferredSavedDeviceId() {
|
||||||
|
return cachedAudioRun.device_select ? String(cachedAudioRun.device_select) : "";
|
||||||
|
}
|
||||||
|
|
||||||
|
function optionIdForSavedDevice(select, savedId) {
|
||||||
|
const saved = savedId == null ? "" : String(savedId);
|
||||||
|
if (!saved || !select) return "";
|
||||||
|
if (selectHasDeviceOptionId(select, saved)) return saved;
|
||||||
|
if (!/^-?\d+$/.test(saved)) return "";
|
||||||
|
for (const opt of select.options) {
|
||||||
|
if (String(opt.dataset.sdIndex ?? "") === saved) return opt.value;
|
||||||
|
}
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
|
||||||
|
function restoreDeviceSelectAfterRefresh(select, defaultId, restoreId = "") {
|
||||||
|
const picked = restoreId || getSelectedDeviceId();
|
||||||
|
if (picked && selectHasDeviceOptionId(select, picked)) {
|
||||||
|
setSelectedDeviceId(picked);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const saved = preferredSavedDeviceId();
|
||||||
|
const savedId = optionIdForSavedDevice(select, saved) || saved;
|
||||||
|
if (savedId && selectHasDeviceOptionId(select, savedId)) {
|
||||||
|
setSelectedDeviceId(savedId);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (defaultId && selectHasDeviceOptionId(select, defaultId)) {
|
||||||
|
setSelectedDeviceId(defaultId);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
setSelectedDeviceId("");
|
||||||
|
}
|
||||||
|
|
||||||
|
function getSelectedDeviceId() {
|
||||||
|
return String(el("audio-device-select")?.value ?? "");
|
||||||
|
}
|
||||||
|
|
||||||
|
function selectHasDeviceOptionId(select, deviceId) {
|
||||||
|
const id = deviceId == null ? "" : String(deviceId);
|
||||||
|
return [...select.options].some((opt) => opt.value === id);
|
||||||
|
}
|
||||||
|
|
||||||
|
function audioRunPreferredDeviceId(run) {
|
||||||
|
return run.device_select ? String(run.device_select) : "";
|
||||||
|
}
|
||||||
|
|
||||||
|
function setSelectedDeviceId(deviceId, { force = false } = {}) {
|
||||||
|
const id = deviceId == null ? "" : String(deviceId);
|
||||||
|
const select = el("audio-device-select");
|
||||||
|
if (!select) return false;
|
||||||
|
if (id !== "" && !selectHasDeviceOptionId(select, id)) {
|
||||||
|
if (!force) return false;
|
||||||
|
}
|
||||||
|
suppressDeviceSelectEvents = true;
|
||||||
|
try {
|
||||||
|
select.value = id;
|
||||||
|
uiDeviceSelectId = id;
|
||||||
|
} finally {
|
||||||
|
suppressDeviceSelectEvents = false;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
function readDeviceForm() {
|
||||||
|
return { override: "", selected: getSelectedDeviceId() };
|
||||||
|
}
|
||||||
|
|
||||||
|
async function persistDeviceSelection(deviceId) {
|
||||||
|
const selected = deviceId != null ? String(deviceId) : getSelectedDeviceId();
|
||||||
|
uiDeviceSelectId = selected;
|
||||||
|
cachedAudioRun.device_select = selected;
|
||||||
|
try {
|
||||||
|
const res = await fetch("/api/audio/device", {
|
||||||
|
method: "PUT",
|
||||||
|
headers: { "Content-Type": "application/json", Accept: "application/json" },
|
||||||
|
body: JSON.stringify({ device_select: selected, device_override: "" }),
|
||||||
|
});
|
||||||
|
const data = await res.json().catch(() => ({}));
|
||||||
|
if (data?.audio_run && typeof data.audio_run === "object") {
|
||||||
|
const saved = data.audio_run.device_select
|
||||||
|
? String(data.audio_run.device_select)
|
||||||
|
: "";
|
||||||
|
if (saved === selected) {
|
||||||
|
cachedAudioRun.device_select = saved;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
console.warn("device selection save failed", e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async function startAudio(deviceId) {
|
||||||
|
const selected =
|
||||||
|
deviceId != null && deviceId !== undefined
|
||||||
|
? String(deviceId)
|
||||||
|
: uiDeviceSelectId || getSelectedDeviceId();
|
||||||
|
lockDeviceSelect();
|
||||||
|
uiDeviceSelectId = selected;
|
||||||
|
cachedAudioRun.device_select = selected;
|
||||||
await stopAudioOnly();
|
await stopAudioOnly();
|
||||||
const override = (el("audio-device-override")?.value || "").trim();
|
await persistDeviceSelection(selected);
|
||||||
const selected = el("audio-device-select")?.value || "";
|
const rawDevice = selected;
|
||||||
const rawDevice = override !== "" ? override : selected;
|
|
||||||
const numeric = rawDevice !== "" && /^-?\d+$/.test(rawDevice) ? Number(rawDevice) : rawDevice;
|
const numeric = rawDevice !== "" && /^-?\d+$/.test(rawDevice) ? Number(rawDevice) : rawDevice;
|
||||||
const body = {
|
const body = {
|
||||||
device: rawDevice === "" ? null : numeric,
|
device: rawDevice === "" ? null : numeric,
|
||||||
device_override: override,
|
device_override: "",
|
||||||
device_select: selected,
|
device_select: selected,
|
||||||
};
|
};
|
||||||
const res = await fetch("/api/audio/start", {
|
const res = await fetch("/api/audio/start", {
|
||||||
@@ -397,6 +475,8 @@
|
|||||||
const data = await res.json().catch(() => ({}));
|
const data = await res.json().catch(() => ({}));
|
||||||
throw new Error(data.error || "Failed to start audio detector");
|
throw new Error(data.error || "Failed to start audio detector");
|
||||||
}
|
}
|
||||||
|
cachedAudioRun.device_select = selected;
|
||||||
|
setSelectedDeviceId(selected);
|
||||||
updateBpmDisplay(null);
|
updateBpmDisplay(null);
|
||||||
updateHitTypeDisplay("unknown", NaN);
|
updateHitTypeDisplay("unknown", NaN);
|
||||||
pollTimer = setInterval(pollStatus, 250);
|
pollTimer = setInterval(pollStatus, 250);
|
||||||
@@ -405,36 +485,36 @@
|
|||||||
|
|
||||||
async function refreshDevices() {
|
async function refreshDevices() {
|
||||||
const select = el("audio-device-select");
|
const select = el("audio-device-select");
|
||||||
const debug = el("audio-devices-debug");
|
|
||||||
if (!select) return;
|
if (!select) return;
|
||||||
const current = select.value;
|
|
||||||
const res = await fetch("/api/audio/devices");
|
const res = await fetch("/api/audio/devices");
|
||||||
const data = await res.json();
|
const data = await res.json();
|
||||||
|
// Re-read after fetch so a pick during the request is not overwritten by a stale value.
|
||||||
|
const restoreId = getSelectedDeviceId();
|
||||||
const inputs = Array.isArray(data?.devices) ? data.devices.slice() : [];
|
const inputs = Array.isArray(data?.devices) ? data.devices.slice() : [];
|
||||||
if (debug) {
|
select.innerHTML = "";
|
||||||
debug.value = JSON.stringify(data?.diagnostics || data, null, 2);
|
const defaultOpt = document.createElement("option");
|
||||||
}
|
defaultOpt.value = "";
|
||||||
inputs.sort((a, b) => {
|
defaultOpt.textContent = "System default input";
|
||||||
const am = String(a?.name || "").toLowerCase().includes("monitor");
|
select.appendChild(defaultOpt);
|
||||||
const bm = String(b?.name || "").toLowerCase().includes("monitor");
|
|
||||||
if (am !== bm) return am ? -1 : 1;
|
|
||||||
return Number(a?.id || 0) - Number(b?.id || 0);
|
|
||||||
});
|
|
||||||
select.innerHTML = '<option value="">System default input</option>';
|
|
||||||
let defaultId = "";
|
let defaultId = "";
|
||||||
inputs.forEach((d, idx) => {
|
inputs.forEach((d, idx) => {
|
||||||
const option = document.createElement("option");
|
const opt = document.createElement("option");
|
||||||
option.value = String(d.id);
|
opt.value = String(d.id);
|
||||||
option.textContent = d.label || d.name || `Input ${idx + 1}`;
|
const text = d.display_name || d.name || `Input ${idx + 1}`;
|
||||||
if (d.is_default) {
|
opt.textContent = text;
|
||||||
defaultId = String(d.id);
|
const title = d.label || d.name || "";
|
||||||
|
if (title && title !== text) opt.title = title;
|
||||||
|
if (d.sounddevice_index != null && d.sounddevice_index !== "") {
|
||||||
|
opt.dataset.sdIndex = String(d.sounddevice_index);
|
||||||
}
|
}
|
||||||
select.appendChild(option);
|
select.appendChild(opt);
|
||||||
|
if (d.is_default) defaultId = String(d.id);
|
||||||
});
|
});
|
||||||
if (current) {
|
suppressDeviceSelectEvents = true;
|
||||||
select.value = current;
|
try {
|
||||||
} else if (defaultId) {
|
restoreDeviceSelectAfterRefresh(select, defaultId, restoreId);
|
||||||
select.value = defaultId;
|
} finally {
|
||||||
|
suppressDeviceSelectEvents = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -444,7 +524,7 @@
|
|||||||
const closeBtn = el("audio-close-btn");
|
const closeBtn = el("audio-close-btn");
|
||||||
const startBtn = el("audio-start-btn");
|
const startBtn = el("audio-start-btn");
|
||||||
const stopBtn = el("audio-stop-btn");
|
const stopBtn = el("audio-stop-btn");
|
||||||
const navResetBtn = el("audio-nav-reset-btn");
|
const resetBtn = el("audio-reset-btn");
|
||||||
const refreshBtn = el("audio-refresh-btn");
|
const refreshBtn = el("audio-refresh-btn");
|
||||||
if (!modal || !openBtn) return;
|
if (!modal || !openBtn) return;
|
||||||
|
|
||||||
@@ -455,6 +535,8 @@
|
|||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.warn("audio device refresh failed", e);
|
console.warn("audio device refresh failed", e);
|
||||||
}
|
}
|
||||||
|
await loadServerAudioUiFields();
|
||||||
|
setResetDetectorEnabled(audioDetectorRunning);
|
||||||
});
|
});
|
||||||
if (closeBtn) {
|
if (closeBtn) {
|
||||||
closeBtn.addEventListener("click", () => {
|
closeBtn.addEventListener("click", () => {
|
||||||
@@ -463,9 +545,9 @@
|
|||||||
}
|
}
|
||||||
if (startBtn) {
|
if (startBtn) {
|
||||||
startBtn.addEventListener("click", async () => {
|
startBtn.addEventListener("click", async () => {
|
||||||
|
const picked = getSelectedDeviceId();
|
||||||
try {
|
try {
|
||||||
await startAudio();
|
await startAudio(picked);
|
||||||
await refreshDevices();
|
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.error("audio start failed", e);
|
console.error("audio start failed", e);
|
||||||
alert("Failed to start audio input. Check mic permissions.");
|
alert("Failed to start audio input. Check mic permissions.");
|
||||||
@@ -477,8 +559,8 @@
|
|||||||
await stopAudio();
|
await stopAudio();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
if (navResetBtn) {
|
if (resetBtn) {
|
||||||
navResetBtn.addEventListener("click", () => resetAudioTracking());
|
resetBtn.addEventListener("click", () => resetAudioTracking());
|
||||||
}
|
}
|
||||||
if (refreshBtn) {
|
if (refreshBtn) {
|
||||||
refreshBtn.addEventListener("click", async () => {
|
refreshBtn.addEventListener("click", async () => {
|
||||||
@@ -489,35 +571,38 @@
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
const deviceSelect = el("audio-device-select");
|
||||||
const phaseInp = el("audio-beat-phase-ms");
|
if (deviceSelect) {
|
||||||
if (phaseInp) {
|
deviceSelect.addEventListener("change", async () => {
|
||||||
phaseInp.addEventListener("change", () => {
|
if (suppressDeviceSelectEvents) return;
|
||||||
void persistBeatPhaseMs();
|
const picked = getSelectedDeviceId();
|
||||||
});
|
uiDeviceSelectId = picked;
|
||||||
phaseInp.addEventListener("input", () => {
|
lockDeviceSelect();
|
||||||
void persistBeatPhaseMs();
|
cachedAudioRun.device_select = picked;
|
||||||
|
await persistDeviceSelection(picked);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
const volInp = el("audio-input-volume");
|
||||||
const bindSync = (node, mode) => {
|
if (volInp) {
|
||||||
if (!node) return;
|
volInp.addEventListener("input", () => {
|
||||||
node.addEventListener("click", async () => {
|
updateInputVolumeReadout();
|
||||||
try {
|
void persistInputVolume();
|
||||||
await syncSequenceBeatPhase(mode);
|
|
||||||
} catch (e) {
|
|
||||||
console.warn("sequence beat sync failed", e);
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
};
|
volInp.addEventListener("change", () => {
|
||||||
const topBpm = el("audio-top-beat-sync");
|
updateInputVolumeReadout();
|
||||||
if (topBpm) {
|
void persistInputVolume();
|
||||||
topBpm.addEventListener("click", () => {
|
});
|
||||||
|
updateInputVolumeReadout();
|
||||||
|
}
|
||||||
|
|
||||||
|
for (const id of ["audio-top-beat-sync", "audio-modal-beat-sync"]) {
|
||||||
|
const btn = el(id);
|
||||||
|
if (btn) {
|
||||||
|
btn.addEventListener("click", () => {
|
||||||
void handleTopBpmButtonClick();
|
void handleTopBpmButtonClick();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
bindSync(el("audio-modal-beat-readout"), "step");
|
}
|
||||||
bindSync(el("audio-sync-pass-btn"), "pass");
|
|
||||||
|
|
||||||
document.addEventListener("keydown", (ev) => {
|
document.addEventListener("keydown", (ev) => {
|
||||||
if (ev.defaultPrevented || ev.repeat || isTypingTarget(ev.target)) return;
|
if (ev.defaultPrevented || ev.repeat || isTypingTarget(ev.target)) return;
|
||||||
@@ -548,39 +633,50 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Apply server-owned audio UI fields from status (device form, beat phase delay). */
|
/** Apply server-owned audio UI fields from status (volume; device dropdown is user-owned). */
|
||||||
function applyServerAudioUiFields(status) {
|
function applyServerAudioUiFields(status) {
|
||||||
if (!status || typeof status !== "object") return;
|
if (!status || typeof status !== "object") return;
|
||||||
const run = status.audio_run;
|
const run = status.audio_run;
|
||||||
if (run && typeof run === "object") {
|
if (run && typeof run === "object") {
|
||||||
const ov = el("audio-device-override");
|
cachedAudioRun = {
|
||||||
const sel = el("audio-device-select");
|
device: run.device ?? null,
|
||||||
if (ov && run.device_override != null) ov.value = String(run.device_override);
|
device_override: run.device_override != null ? String(run.device_override) : "",
|
||||||
if (sel && run.device_select) sel.value = String(run.device_select);
|
device_select: run.device_select ? String(run.device_select) : "",
|
||||||
|
};
|
||||||
}
|
}
|
||||||
const phaseInp = el("audio-beat-phase-ms");
|
if (status.beat_phase_ms != null) {
|
||||||
if (
|
|
||||||
phaseInp &&
|
|
||||||
status.beat_phase_ms != null &&
|
|
||||||
document.activeElement !== phaseInp
|
|
||||||
) {
|
|
||||||
const ms = parseInt(String(status.beat_phase_ms), 10);
|
const ms = parseInt(String(status.beat_phase_ms), 10);
|
||||||
if (Number.isFinite(ms)) {
|
if (Number.isFinite(ms)) {
|
||||||
phaseInp.value = String(Math.min(500, Math.max(0, ms)));
|
cachedBeatPhaseMs = Math.min(500, Math.max(0, ms));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
const volInp = el("audio-input-volume");
|
||||||
|
if (
|
||||||
|
volInp &&
|
||||||
|
status.input_volume != null &&
|
||||||
|
document.activeElement !== volInp
|
||||||
|
) {
|
||||||
|
const vol = parseInt(String(status.input_volume), 10);
|
||||||
|
if (Number.isFinite(vol)) {
|
||||||
|
volInp.value = String(Math.min(200, Math.max(0, vol)));
|
||||||
|
updateInputVolumeReadout();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async function loadServerAudioUiFields() {
|
async function loadServerAudioUiFields() {
|
||||||
try {
|
|
||||||
await refreshDevices();
|
|
||||||
} catch (e) {
|
|
||||||
console.warn("audio device list refresh failed", e);
|
|
||||||
}
|
|
||||||
try {
|
try {
|
||||||
const res = await fetch("/api/audio/status", { cache: "no-store" });
|
const res = await fetch("/api/audio/status", { cache: "no-store" });
|
||||||
const data = await res.json();
|
const data = await res.json();
|
||||||
applyServerAudioUiFields(data?.status || {});
|
const status = data?.status || {};
|
||||||
|
applyServerAudioUiFields(status);
|
||||||
|
const select = el("audio-device-select");
|
||||||
|
const saved = audioRunPreferredDeviceId(status.audio_run || {});
|
||||||
|
if (select && saved && selectHasDeviceOptionId(select, saved)) {
|
||||||
|
uiDeviceSelectId = saved;
|
||||||
|
setSelectedDeviceId(saved);
|
||||||
|
}
|
||||||
|
updateInputLevelDisplay(status.running ? Number(status.input_level) : 0);
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.warn("audio status load failed", e);
|
console.warn("audio status load failed", e);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,25 +1,43 @@
|
|||||||
/* Polls server build id; full reload when watchfiles restarts Python (new process = new id). */
|
/* Reload when uvicorn restarts (build-id) or static/template files change (client-rev). */
|
||||||
(function () {
|
(function () {
|
||||||
var prev = null;
|
var prevBuild = null;
|
||||||
function tick() {
|
var prevRev = null;
|
||||||
fetch('/__dev/build-id', { cache: 'no-store', credentials: 'same-origin' })
|
|
||||||
|
function fetchText(url) {
|
||||||
|
return fetch(url, { cache: 'no-store', credentials: 'same-origin' })
|
||||||
.then(function (r) {
|
.then(function (r) {
|
||||||
return r.ok ? r.text() : '';
|
return r.ok ? r.text() : '';
|
||||||
})
|
})
|
||||||
.then(function (id) {
|
.catch(function () {
|
||||||
id = (id || '').trim();
|
return '';
|
||||||
if (!id) return;
|
});
|
||||||
if (prev === null) {
|
}
|
||||||
prev = id;
|
|
||||||
|
function tick() {
|
||||||
|
Promise.all([
|
||||||
|
fetchText('/__dev/build-id'),
|
||||||
|
fetchText('/__dev/client-rev'),
|
||||||
|
]).then(function (parts) {
|
||||||
|
var buildId = (parts[0] || '').trim();
|
||||||
|
var clientRev = (parts[1] || '').trim();
|
||||||
|
if (!buildId && !clientRev) return;
|
||||||
|
|
||||||
|
if (prevBuild === null && prevRev === null) {
|
||||||
|
prevBuild = buildId;
|
||||||
|
prevRev = clientRev;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (id !== prev) {
|
|
||||||
prev = id;
|
var buildChanged = buildId && buildId !== prevBuild;
|
||||||
|
var revChanged = clientRev && clientRev !== prevRev;
|
||||||
|
if (buildChanged || revChanged) {
|
||||||
|
if (buildId) prevBuild = buildId;
|
||||||
|
if (clientRev) prevRev = clientRev;
|
||||||
window.location.reload();
|
window.location.reload();
|
||||||
}
|
}
|
||||||
})
|
});
|
||||||
.catch(function () {});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
setInterval(tick, 750);
|
setInterval(tick, 750);
|
||||||
tick();
|
tick();
|
||||||
})();
|
})();
|
||||||
|
|||||||
@@ -18,6 +18,15 @@ const DEVICES_MODAL_POLL_MS = 1000;
|
|||||||
|
|
||||||
let devicesModalLiveTimer = null;
|
let devicesModalLiveTimer = null;
|
||||||
|
|
||||||
|
/** Last ESP-NOW ping result per MAC (hex, no separators). Cleared only when a new ping marks offline. */
|
||||||
|
const espnowPingStatusByMac = new Map();
|
||||||
|
|
||||||
|
/** Aggregate ping dot state (Devices / Settings ping buttons). */
|
||||||
|
let lastEspnowPingAggregate = {
|
||||||
|
state: 'unknown',
|
||||||
|
title: 'Not pinged yet',
|
||||||
|
};
|
||||||
|
|
||||||
function stopDevicesModalLiveRefresh() {
|
function stopDevicesModalLiveRefresh() {
|
||||||
if (devicesModalLiveTimer != null) {
|
if (devicesModalLiveTimer != null) {
|
||||||
clearInterval(devicesModalLiveTimer);
|
clearInterval(devicesModalLiveTimer);
|
||||||
@@ -53,11 +62,196 @@ function startDevicesModalLiveRefresh() {
|
|||||||
}, DEVICES_MODAL_POLL_MS);
|
}, DEVICES_MODAL_POLL_MS);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const DEVICE_DOT_CLASSES = [
|
||||||
|
'device-status-dot--online',
|
||||||
|
'device-status-dot--offline',
|
||||||
|
'device-status-dot--unknown',
|
||||||
|
'device-status-dot--pinging',
|
||||||
|
];
|
||||||
|
|
||||||
|
function normalizeDeviceMacKey(mac) {
|
||||||
|
return String(mac || '')
|
||||||
|
.trim()
|
||||||
|
.toLowerCase()
|
||||||
|
.replace(/[:-]/g, '');
|
||||||
|
}
|
||||||
|
|
||||||
|
function normalizeMacInput(raw) {
|
||||||
|
return String(raw || '')
|
||||||
|
.trim()
|
||||||
|
.toLowerCase()
|
||||||
|
.replace(/[:-]/g, '');
|
||||||
|
}
|
||||||
|
|
||||||
|
function findPingResponse(responses, deviceId) {
|
||||||
|
if (!responses || typeof responses !== 'object') return null;
|
||||||
|
const want = normalizeDeviceMacKey(deviceId);
|
||||||
|
for (const [mac, info] of Object.entries(responses)) {
|
||||||
|
if (normalizeDeviceMacKey(mac) === want) return info;
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
function setDeviceStatusDot(dot, state, title) {
|
||||||
|
if (!dot) return;
|
||||||
|
dot.classList.remove(...DEVICE_DOT_CLASSES);
|
||||||
|
if (state === 'online') dot.classList.add('device-status-dot--online');
|
||||||
|
else if (state === 'offline') dot.classList.add('device-status-dot--offline');
|
||||||
|
else if (state === 'pinging') dot.classList.add('device-status-dot--pinging');
|
||||||
|
else dot.classList.add('device-status-dot--unknown');
|
||||||
|
dot.title = title;
|
||||||
|
dot.setAttribute('aria-label', title);
|
||||||
|
}
|
||||||
|
|
||||||
|
function updatePingStatusDot(dotEl, state, title) {
|
||||||
|
if (!dotEl) return;
|
||||||
|
dotEl.classList.remove(...DEVICE_DOT_CLASSES);
|
||||||
|
if (state === 'online') dotEl.classList.add('device-status-dot--online');
|
||||||
|
else if (state === 'offline') dotEl.classList.add('device-status-dot--offline');
|
||||||
|
else if (state === 'pinging') dotEl.classList.add('device-status-dot--pinging');
|
||||||
|
else dotEl.classList.add('device-status-dot--unknown');
|
||||||
|
dotEl.title = title;
|
||||||
|
dotEl.setAttribute('aria-label', title);
|
||||||
|
}
|
||||||
|
|
||||||
|
function rememberEspnowPingAggregate(state, title) {
|
||||||
|
lastEspnowPingAggregate = { state, title };
|
||||||
|
}
|
||||||
|
|
||||||
|
function applyEspnowPingAggregateToDots() {
|
||||||
|
for (const id of ['devices-ping-dot']) {
|
||||||
|
updatePingStatusDot(document.getElementById(id), lastEspnowPingAggregate.state, lastEspnowPingAggregate.title);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async function runUpdateGroups(btn) {
|
||||||
|
const statusEl = document.getElementById('devices-groups-status');
|
||||||
|
const prevLabel = btn ? btn.textContent : '';
|
||||||
|
if (btn) {
|
||||||
|
btn.disabled = true;
|
||||||
|
btn.textContent = 'Updating…';
|
||||||
|
}
|
||||||
|
if (statusEl) statusEl.textContent = 'Sending group membership…';
|
||||||
|
try {
|
||||||
|
const res = await fetch('/devices/groups', {
|
||||||
|
method: 'POST',
|
||||||
|
headers: { Accept: 'application/json' },
|
||||||
|
});
|
||||||
|
const data = await res.json().catch(() => ({}));
|
||||||
|
if (!res.ok || !data.ok) {
|
||||||
|
const err = data.error || 'Update groups failed';
|
||||||
|
if (statusEl) statusEl.textContent = err;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const sent = Number(data.sent) || 0;
|
||||||
|
const failed = Number(data.failed) || 0;
|
||||||
|
if (statusEl) {
|
||||||
|
statusEl.textContent =
|
||||||
|
failed > 0
|
||||||
|
? `Sent to ${sent} driver${sent === 1 ? '' : 's'}, ${failed} failed`
|
||||||
|
: `Sent to ${sent} driver${sent === 1 ? '' : 's'}`;
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
if (statusEl) statusEl.textContent = error.message;
|
||||||
|
} finally {
|
||||||
|
if (btn) {
|
||||||
|
btn.disabled = false;
|
||||||
|
btn.textContent = prevLabel;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async function runEspnowPing({ btn, dot, statusEl } = {}) {
|
||||||
|
const prevLabel = btn ? btn.textContent : '';
|
||||||
|
if (btn) {
|
||||||
|
btn.disabled = true;
|
||||||
|
btn.textContent = 'Pinging…';
|
||||||
|
}
|
||||||
|
updatePingStatusDot(dot, 'pinging', 'Ping in progress…');
|
||||||
|
if (statusEl) statusEl.textContent = 'Waiting for replies (3 s)…';
|
||||||
|
applyEspnowPingToDeviceRows(null, 'pinging');
|
||||||
|
try {
|
||||||
|
const res = await fetch('/devices/ping', {
|
||||||
|
method: 'POST',
|
||||||
|
headers: { 'Content-Type': 'application/json', Accept: 'application/json' },
|
||||||
|
body: JSON.stringify({ timeout_s: 3 }),
|
||||||
|
});
|
||||||
|
const data = await res.json().catch(() => ({}));
|
||||||
|
if (!res.ok || !data.ok) {
|
||||||
|
const err = data.error || 'Ping failed';
|
||||||
|
rememberEspnowPingAggregate('offline', err);
|
||||||
|
updatePingStatusDot(dot, 'offline', err);
|
||||||
|
applyEspnowPingAggregateToDots();
|
||||||
|
if (statusEl) statusEl.textContent = err;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const count = Object.keys(data.responses || {}).length;
|
||||||
|
const registered = Number(data.registered) || 0;
|
||||||
|
const aggState = count > 0 ? 'online' : 'offline';
|
||||||
|
const aggTitle =
|
||||||
|
count > 0
|
||||||
|
? `${count} driver${count === 1 ? '' : 's'} replied`
|
||||||
|
: 'No drivers replied';
|
||||||
|
rememberEspnowPingAggregate(aggState, aggTitle);
|
||||||
|
updatePingStatusDot(dot, aggState, aggTitle);
|
||||||
|
applyEspnowPingAggregateToDots();
|
||||||
|
if (statusEl) {
|
||||||
|
let msg = `${count} response${count === 1 ? '' : 's'}`;
|
||||||
|
if (registered > 0) {
|
||||||
|
msg += ` · ${registered} new in list`;
|
||||||
|
}
|
||||||
|
statusEl.textContent = msg;
|
||||||
|
}
|
||||||
|
await refreshDevicesListQuiet();
|
||||||
|
applyEspnowPingToDeviceRows(data.responses, 'done');
|
||||||
|
} catch (error) {
|
||||||
|
const msg = `Error: ${error.message}`;
|
||||||
|
rememberEspnowPingAggregate('offline', msg);
|
||||||
|
updatePingStatusDot(dot, 'offline', msg);
|
||||||
|
applyEspnowPingAggregateToDots();
|
||||||
|
if (statusEl) statusEl.textContent = error.message;
|
||||||
|
} finally {
|
||||||
|
if (btn) {
|
||||||
|
btn.disabled = false;
|
||||||
|
btn.textContent = prevLabel;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function applyEspnowPingToDeviceRows(responses, phase) {
|
||||||
|
const container = document.getElementById('devices-list-modal');
|
||||||
|
if (!container) return;
|
||||||
|
container.querySelectorAll('.profiles-row[data-device-transport="espnow"]').forEach((row) => {
|
||||||
|
const dot = row.querySelector('.device-status-dot');
|
||||||
|
if (!dot) return;
|
||||||
|
if (phase === 'pinging') {
|
||||||
|
setDeviceStatusDot(dot, 'pinging', 'Ping in progress…');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const macKey = normalizeDeviceMacKey(row.dataset.deviceId);
|
||||||
|
const info = findPingResponse(responses, row.dataset.deviceId);
|
||||||
|
if (info) {
|
||||||
|
const rtt = info.rtt_ms != null ? `${info.rtt_ms} ms` : 'ok';
|
||||||
|
const title = `Ping reply (${rtt})`;
|
||||||
|
setDeviceStatusDot(dot, 'online', title);
|
||||||
|
espnowPingStatusByMac.set(macKey, { state: 'online', title });
|
||||||
|
} else {
|
||||||
|
const title = 'No ping reply';
|
||||||
|
setDeviceStatusDot(dot, 'offline', title);
|
||||||
|
espnowPingStatusByMac.set(macKey, { state: 'offline', title });
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function espnowPingStatusForMac(devId) {
|
||||||
|
return espnowPingStatusByMac.get(normalizeDeviceMacKey(devId)) || null;
|
||||||
|
}
|
||||||
|
|
||||||
function updateWifiRowDot(row, connected) {
|
function updateWifiRowDot(row, connected) {
|
||||||
const dot = row.querySelector('.device-status-dot');
|
const dot = row.querySelector('.device-status-dot');
|
||||||
if (!dot) return;
|
if (!dot) return;
|
||||||
if ((row.dataset.deviceTransport || '') !== 'wifi') return;
|
if ((row.dataset.deviceTransport || '') !== 'wifi') return;
|
||||||
dot.classList.remove('device-status-dot--online', 'device-status-dot--offline', 'device-status-dot--unknown');
|
dot.classList.remove(...DEVICE_DOT_CLASSES);
|
||||||
if (connected) {
|
if (connected) {
|
||||||
dot.classList.add('device-status-dot--online');
|
dot.classList.add('device-status-dot--online');
|
||||||
dot.title = 'Connected (Wi-Fi TCP session)';
|
dot.title = 'Connected (Wi-Fi TCP session)';
|
||||||
@@ -243,6 +437,69 @@ async function loadDevicesModal() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async function createDeviceFromModal() {
|
||||||
|
const nameEl = document.getElementById('devices-add-name');
|
||||||
|
const trEl = document.getElementById('devices-add-transport');
|
||||||
|
const macEl = document.getElementById('devices-add-mac');
|
||||||
|
const addrEl = document.getElementById('devices-add-address');
|
||||||
|
const statusEl = document.getElementById('devices-add-status');
|
||||||
|
const btn = document.getElementById('devices-add-btn');
|
||||||
|
const name = (nameEl && nameEl.value.trim()) || '';
|
||||||
|
const transport = (trEl && trEl.value) || 'espnow';
|
||||||
|
const mac = normalizeMacInput(macEl && macEl.value);
|
||||||
|
const address = (addrEl && addrEl.value.trim()) || '';
|
||||||
|
|
||||||
|
if (!name) {
|
||||||
|
if (statusEl) statusEl.textContent = 'Name is required';
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (mac.length !== 12) {
|
||||||
|
if (statusEl) statusEl.textContent = 'MAC must be 12 hex characters';
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (transport === 'wifi' && !address) {
|
||||||
|
if (statusEl) statusEl.textContent = 'Address is required for Wi-Fi devices';
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (btn) {
|
||||||
|
btn.disabled = true;
|
||||||
|
btn.textContent = 'Adding…';
|
||||||
|
}
|
||||||
|
if (statusEl) statusEl.textContent = 'Creating device…';
|
||||||
|
try {
|
||||||
|
const payload = {
|
||||||
|
name,
|
||||||
|
transport,
|
||||||
|
type: 'led',
|
||||||
|
mac,
|
||||||
|
address: transport === 'wifi' ? address : mac,
|
||||||
|
};
|
||||||
|
const res = await fetch('/devices', {
|
||||||
|
method: 'POST',
|
||||||
|
headers: { 'Content-Type': 'application/json', Accept: 'application/json' },
|
||||||
|
body: JSON.stringify(payload),
|
||||||
|
});
|
||||||
|
const data = await res.json().catch(() => ({}));
|
||||||
|
if (!res.ok) {
|
||||||
|
if (statusEl) statusEl.textContent = data.error || 'Create failed';
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (statusEl) statusEl.textContent = 'Device added';
|
||||||
|
if (nameEl) nameEl.value = '';
|
||||||
|
if (macEl) macEl.value = '';
|
||||||
|
if (addrEl) addrEl.value = '';
|
||||||
|
await loadDevicesModal();
|
||||||
|
} catch (e) {
|
||||||
|
if (statusEl) statusEl.textContent = e.message || 'Create failed';
|
||||||
|
} finally {
|
||||||
|
if (btn) {
|
||||||
|
btn.disabled = false;
|
||||||
|
btn.textContent = 'Add device';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
function renderDevicesList(devices) {
|
function renderDevicesList(devices) {
|
||||||
const container = document.getElementById('devices-list-modal');
|
const container = document.getElementById('devices-list-modal');
|
||||||
if (!container) return;
|
if (!container) return;
|
||||||
@@ -277,17 +534,16 @@ function renderDevicesList(devices) {
|
|||||||
dot.setAttribute('role', 'img');
|
dot.setAttribute('role', 'img');
|
||||||
const live = dev && Object.prototype.hasOwnProperty.call(dev, 'connected') ? dev.connected : null;
|
const live = dev && Object.prototype.hasOwnProperty.call(dev, 'connected') ? dev.connected : null;
|
||||||
if (live === true) {
|
if (live === true) {
|
||||||
dot.classList.add('device-status-dot--online');
|
setDeviceStatusDot(dot, 'online', 'Connected (Wi-Fi TCP session)');
|
||||||
dot.title = 'Connected (Wi-Fi TCP session)';
|
|
||||||
dot.setAttribute('aria-label', dot.title);
|
|
||||||
} else if (live === false) {
|
} else if (live === false) {
|
||||||
dot.classList.add('device-status-dot--offline');
|
setDeviceStatusDot(dot, 'offline', 'Not connected (no Wi-Fi TCP session)');
|
||||||
dot.title = 'Not connected (no Wi-Fi TCP session)';
|
|
||||||
dot.setAttribute('aria-label', dot.title);
|
|
||||||
} else {
|
} else {
|
||||||
dot.classList.add('device-status-dot--unknown');
|
const pingCached = espnowPingStatusForMac(devId);
|
||||||
dot.title = 'ESP-NOW — TCP status does not apply';
|
if (pingCached) {
|
||||||
dot.setAttribute('aria-label', dot.title);
|
setDeviceStatusDot(dot, pingCached.state, pingCached.title);
|
||||||
|
} else {
|
||||||
|
setDeviceStatusDot(dot, 'unknown', 'ESP-NOW — ping or identify to test reachability');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const label = document.createElement('span');
|
const label = document.createElement('span');
|
||||||
@@ -564,6 +820,9 @@ document.addEventListener('DOMContentLoaded', () => {
|
|||||||
const editForm = document.getElementById('edit-device-form');
|
const editForm = document.getElementById('edit-device-form');
|
||||||
const editCloseBtn = document.getElementById('edit-device-close-btn');
|
const editCloseBtn = document.getElementById('edit-device-close-btn');
|
||||||
const editDeviceModal = document.getElementById('edit-device-modal');
|
const editDeviceModal = document.getElementById('edit-device-modal');
|
||||||
|
const addTransport = document.getElementById('devices-add-transport');
|
||||||
|
const addAddress = document.getElementById('devices-add-address');
|
||||||
|
const addBtn = document.getElementById('devices-add-btn');
|
||||||
|
|
||||||
if (devicesBtn && devicesModal) {
|
if (devicesBtn && devicesModal) {
|
||||||
devicesBtn.addEventListener('click', () => {
|
devicesBtn.addEventListener('click', () => {
|
||||||
@@ -571,6 +830,7 @@ document.addEventListener('DOMContentLoaded', () => {
|
|||||||
if (typeof window.getEspnowSocket === 'function') {
|
if (typeof window.getEspnowSocket === 'function') {
|
||||||
window.getEspnowSocket();
|
window.getEspnowSocket();
|
||||||
}
|
}
|
||||||
|
applyEspnowPingAggregateToDots();
|
||||||
loadDevicesModal();
|
loadDevicesModal();
|
||||||
startDevicesModalLiveRefresh();
|
startDevicesModalLiveRefresh();
|
||||||
});
|
});
|
||||||
@@ -581,6 +841,33 @@ document.addEventListener('DOMContentLoaded', () => {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (addTransport && addAddress) {
|
||||||
|
const syncAddAddress = () => {
|
||||||
|
addAddress.hidden = addTransport.value !== 'wifi';
|
||||||
|
};
|
||||||
|
addTransport.addEventListener('change', syncAddAddress);
|
||||||
|
syncAddAddress();
|
||||||
|
}
|
||||||
|
if (addBtn) {
|
||||||
|
addBtn.addEventListener('click', () => createDeviceFromModal());
|
||||||
|
}
|
||||||
|
|
||||||
|
const devicesPingBtn = document.getElementById('devices-ping-btn');
|
||||||
|
if (devicesPingBtn) {
|
||||||
|
devicesPingBtn.addEventListener('click', () => {
|
||||||
|
runEspnowPing({
|
||||||
|
btn: devicesPingBtn,
|
||||||
|
dot: document.getElementById('devices-ping-dot'),
|
||||||
|
statusEl: document.getElementById('devices-ping-status'),
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
const devicesUpdateGroupsBtn = document.getElementById('devices-update-groups-btn');
|
||||||
|
if (devicesUpdateGroupsBtn) {
|
||||||
|
devicesUpdateGroupsBtn.addEventListener('click', () => runUpdateGroups(devicesUpdateGroupsBtn));
|
||||||
|
}
|
||||||
|
|
||||||
const devicesModalEl = document.getElementById('devices-modal');
|
const devicesModalEl = document.getElementById('devices-modal');
|
||||||
if (devicesModalEl) {
|
if (devicesModalEl) {
|
||||||
new MutationObserver(() => {
|
new MutationObserver(() => {
|
||||||
@@ -651,10 +938,17 @@ document.addEventListener('DOMContentLoaded', () => {
|
|||||||
});
|
});
|
||||||
if (!pushRes.ok) return;
|
if (!pushRes.ok) return;
|
||||||
}
|
}
|
||||||
editDeviceModal.classList.remove('active');
|
await loadDevicesModal();
|
||||||
|
refreshEditDeviceDebug();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
if (editCloseBtn) {
|
if (editCloseBtn) {
|
||||||
editCloseBtn.addEventListener('click', () => editDeviceModal && editDeviceModal.classList.remove('active'));
|
editCloseBtn.addEventListener('click', () => editDeviceModal && editDeviceModal.classList.remove('active'));
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
if (typeof window !== 'undefined') {
|
||||||
|
window.applyEspnowPingToDeviceRows = applyEspnowPingToDeviceRows;
|
||||||
|
window.runEspnowPing = runEspnowPing;
|
||||||
|
window.applyEspnowPingAggregateToDots = applyEspnowPingAggregateToDots;
|
||||||
|
}
|
||||||
|
|||||||
@@ -45,7 +45,14 @@ async function fetchDevicesMapForGroups() {
|
|||||||
|
|
||||||
function renderGroupDevicesEditor(containerEl, macRows, devicesMap) {
|
function renderGroupDevicesEditor(containerEl, macRows, devicesMap) {
|
||||||
if (!containerEl) return;
|
if (!containerEl) return;
|
||||||
|
const panel =
|
||||||
|
typeof window.prepareZoneDevicesPanel === 'function'
|
||||||
|
? window.prepareZoneDevicesPanel(containerEl)
|
||||||
|
: null;
|
||||||
|
const listEl = panel ? panel.listEl : containerEl;
|
||||||
|
if (!panel) {
|
||||||
containerEl.innerHTML = '';
|
containerEl.innerHTML = '';
|
||||||
|
}
|
||||||
const entries = Object.entries(devicesMap || {}).sort(([a], [b]) => a.localeCompare(b));
|
const entries = Object.entries(devicesMap || {}).sort(([a], [b]) => a.localeCompare(b));
|
||||||
|
|
||||||
macRows.forEach((row, idx) => {
|
macRows.forEach((row, idx) => {
|
||||||
@@ -72,36 +79,44 @@ function renderGroupDevicesEditor(containerEl, macRows, devicesMap) {
|
|||||||
});
|
});
|
||||||
div.appendChild(label);
|
div.appendChild(label);
|
||||||
div.appendChild(rm);
|
div.appendChild(rm);
|
||||||
containerEl.appendChild(div);
|
listEl.appendChild(div);
|
||||||
});
|
});
|
||||||
|
|
||||||
const macsInRows = new Set(macRows.map((r) => r.mac).filter(Boolean));
|
const macsInRows = new Set(macRows.map((r) => r.mac).filter(Boolean));
|
||||||
const addWrap = document.createElement('div');
|
const addWrap = document.createElement('div');
|
||||||
addWrap.className = 'zone-devices-add profiles-actions';
|
addWrap.className = 'zone-devices-add profiles-actions';
|
||||||
const sel = document.createElement('select');
|
const picker =
|
||||||
sel.className = 'zone-device-add-select';
|
typeof window.createSearchableAddPicker === 'function'
|
||||||
sel.appendChild(new Option('Add device…', ''));
|
? window.createSearchableAddPicker({
|
||||||
entries.forEach(([mac, d]) => {
|
entries,
|
||||||
if (macsInRows.has(mac)) return;
|
excludeIds: macsInRows,
|
||||||
|
labelFor: (mac, d) => {
|
||||||
const labelName = d && d.name ? String(d.name).trim() : '';
|
const labelName = d && d.name ? String(d.name).trim() : '';
|
||||||
const optLabel = labelName ? `${labelName} — ${mac}` : mac;
|
return labelName ? `${labelName} — ${mac}` : mac;
|
||||||
sel.appendChild(new Option(optLabel, mac));
|
},
|
||||||
});
|
searchTextFor: (mac, d) => {
|
||||||
const addBtn = document.createElement('button');
|
const labelName = d && d.name ? String(d.name).trim() : '';
|
||||||
addBtn.type = 'button';
|
return `${labelName} ${mac}`;
|
||||||
addBtn.className = 'btn btn-primary btn-small';
|
},
|
||||||
addBtn.textContent = 'Add';
|
onPick: (mac, d) => {
|
||||||
addBtn.addEventListener('click', () => {
|
|
||||||
const mac = sel.value;
|
|
||||||
if (!mac || !devicesMap[mac]) return;
|
if (!mac || !devicesMap[mac]) return;
|
||||||
const n = String((devicesMap[mac].name || '').trim() || mac);
|
const n = String((d.name || '').trim() || mac);
|
||||||
macRows.push({ mac, label: n });
|
macRows.push({ mac, label: n });
|
||||||
sel.value = '';
|
|
||||||
renderGroupDevicesEditor(containerEl, macRows, devicesMap);
|
renderGroupDevicesEditor(containerEl, macRows, devicesMap);
|
||||||
});
|
},
|
||||||
addWrap.appendChild(sel);
|
placeholder: 'Search devices to add…',
|
||||||
addWrap.appendChild(addBtn);
|
emptyMessage: 'No devices match your search.',
|
||||||
|
noItemsMessage: 'All devices are already in this group.',
|
||||||
|
})
|
||||||
|
: null;
|
||||||
|
if (picker) {
|
||||||
|
addWrap.appendChild(picker);
|
||||||
|
}
|
||||||
|
if (panel) {
|
||||||
|
panel.addSlot.appendChild(addWrap);
|
||||||
|
} else {
|
||||||
containerEl.appendChild(addWrap);
|
containerEl.appendChild(addWrap);
|
||||||
|
}
|
||||||
refreshEditGroupDebug();
|
refreshEditGroupDebug();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -119,15 +134,17 @@ function collectGroupEditPayload() {
|
|||||||
const nl = document.getElementById('edit-group-wifi-num-leds');
|
const nl = document.getElementById('edit-group-wifi-num-leds');
|
||||||
const co = document.getElementById('edit-group-wifi-color-order');
|
const co = document.getElementById('edit-group-wifi-color-order');
|
||||||
const ws = document.getElementById('edit-group-wifi-startup-mode');
|
const ws = document.getElementById('edit-group-wifi-startup-mode');
|
||||||
|
if (dn || nl || co || ws) {
|
||||||
if (dn && dn.value.trim()) payload.wifi_driver_display_name = dn.value.trim();
|
if (dn && dn.value.trim()) payload.wifi_driver_display_name = dn.value.trim();
|
||||||
else payload.wifi_driver_display_name = null;
|
else if (dn) payload.wifi_driver_display_name = null;
|
||||||
if (nl && nl.value !== '') {
|
if (nl && nl.value !== '') {
|
||||||
const n = parseInt(nl.value, 10);
|
const n = parseInt(nl.value, 10);
|
||||||
if (!Number.isNaN(n) && n >= 1) payload.wifi_driver_num_leds = n;
|
if (!Number.isNaN(n) && n >= 1) payload.wifi_driver_num_leds = n;
|
||||||
else payload.wifi_driver_num_leds = null;
|
else payload.wifi_driver_num_leds = null;
|
||||||
} else payload.wifi_driver_num_leds = null;
|
} else if (nl) payload.wifi_driver_num_leds = null;
|
||||||
if (co && co.value) payload.wifi_color_order = co.value;
|
if (co && co.value) payload.wifi_color_order = co.value;
|
||||||
if (ws && ws.value) payload.wifi_startup_mode = ws.value;
|
if (ws && ws.value) payload.wifi_startup_mode = ws.value;
|
||||||
|
}
|
||||||
const gob = document.getElementById('edit-group-output-brightness');
|
const gob = document.getElementById('edit-group-output-brightness');
|
||||||
if (gob && gob.value !== '') {
|
if (gob && gob.value !== '') {
|
||||||
const nb = parseInt(gob.value, 10);
|
const nb = parseInt(gob.value, 10);
|
||||||
@@ -281,22 +298,27 @@ function renderGroupsList(groups) {
|
|||||||
ids.forEach((gid) => {
|
ids.forEach((gid) => {
|
||||||
const g = groups[gid];
|
const g = groups[gid];
|
||||||
const row = document.createElement('div');
|
const row = document.createElement('div');
|
||||||
row.className = 'profiles-row';
|
row.className = 'group-list-row';
|
||||||
row.style.display = 'flex';
|
|
||||||
row.style.alignItems = 'center';
|
|
||||||
row.style.gap = '0.5rem';
|
|
||||||
row.style.flexWrap = 'wrap';
|
|
||||||
|
|
||||||
const label = document.createElement('span');
|
const info = document.createElement('div');
|
||||||
|
info.className = 'group-list-row-info';
|
||||||
|
|
||||||
|
const label = document.createElement('div');
|
||||||
|
label.className = 'group-list-row-title';
|
||||||
const devs = Array.isArray(g.devices) ? g.devices : [];
|
const devs = Array.isArray(g.devices) ? g.devices : [];
|
||||||
label.textContent = `${g.name || gid} (${devs.length} device${devs.length === 1 ? '' : 's'})`;
|
label.textContent = `${g.name || gid} (${devs.length} device${devs.length === 1 ? '' : 's'})`;
|
||||||
|
|
||||||
const meta = document.createElement('div');
|
const meta = document.createElement('div');
|
||||||
meta.className = 'muted-text';
|
meta.className = 'group-list-row-meta muted-text';
|
||||||
meta.style.fontSize = '0.8em';
|
|
||||||
const rawPid = g.profile_id != null ? g.profile_id : g.profileId;
|
const rawPid = g.profile_id != null ? g.profile_id : g.profileId;
|
||||||
const scoped = rawPid != null && String(rawPid).trim() !== '';
|
const scoped = rawPid != null && String(rawPid).trim() !== '';
|
||||||
meta.textContent = scoped ? `This profile only (${rawPid})` : 'Shared across profiles';
|
meta.textContent = scoped ? `This profile only (${rawPid})` : 'Shared across profiles';
|
||||||
|
|
||||||
|
info.appendChild(label);
|
||||||
|
info.appendChild(meta);
|
||||||
|
|
||||||
|
const actions = document.createElement('div');
|
||||||
|
actions.className = 'group-list-row-actions';
|
||||||
const editBtn = document.createElement('button');
|
const editBtn = document.createElement('button');
|
||||||
editBtn.className = 'btn btn-secondary btn-small';
|
editBtn.className = 'btn btn-secondary btn-small';
|
||||||
editBtn.textContent = 'Edit';
|
editBtn.textContent = 'Edit';
|
||||||
@@ -320,12 +342,6 @@ function renderGroupsList(groups) {
|
|||||||
alert(data.error || 'Apply brightness failed');
|
alert(data.error || 'Apply brightness failed');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const n = typeof data.sent === 'number' ? data.sent : 0;
|
|
||||||
alert(
|
|
||||||
n
|
|
||||||
? `Sent brightness to ${n} driver(s).`
|
|
||||||
: 'No Wi‑Fi drivers received brightness (check connections).',
|
|
||||||
);
|
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
console.error(err);
|
console.error(err);
|
||||||
alert('Apply brightness failed');
|
alert('Apply brightness failed');
|
||||||
@@ -350,12 +366,6 @@ function renderGroupsList(groups) {
|
|||||||
alert(data.error || 'Apply failed');
|
alert(data.error || 'Apply failed');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const n = typeof data.sent === 'number' ? data.sent : 0;
|
|
||||||
alert(
|
|
||||||
n
|
|
||||||
? `Sent defaults to ${n} driver(s).`
|
|
||||||
: 'No Wi‑Fi drivers received the config (check defaults and connections).',
|
|
||||||
);
|
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
console.error(err);
|
console.error(err);
|
||||||
alert('Apply failed');
|
alert('Apply failed');
|
||||||
@@ -393,17 +403,13 @@ function renderGroupsList(groups) {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
const left = document.createElement('div');
|
actions.appendChild(editBtn);
|
||||||
left.style.flex = '1';
|
actions.appendChild(brightBtn);
|
||||||
left.style.minWidth = '0';
|
actions.appendChild(applyBtn);
|
||||||
left.appendChild(label);
|
actions.appendChild(identifyBtn);
|
||||||
left.appendChild(meta);
|
actions.appendChild(delBtn);
|
||||||
row.appendChild(left);
|
row.appendChild(info);
|
||||||
row.appendChild(editBtn);
|
row.appendChild(actions);
|
||||||
row.appendChild(brightBtn);
|
|
||||||
row.appendChild(applyBtn);
|
|
||||||
row.appendChild(identifyBtn);
|
|
||||||
row.appendChild(delBtn);
|
|
||||||
container.appendChild(row);
|
container.appendChild(row);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@@ -421,15 +427,10 @@ async function identifyGroupById(gid) {
|
|||||||
alert(data.error || 'Identify failed');
|
alert(data.error || 'Identify failed');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const n = typeof data.sent === 'number' ? data.sent : 0;
|
|
||||||
const errs = Array.isArray(data.errors) ? data.errors : [];
|
const errs = Array.isArray(data.errors) ? data.errors : [];
|
||||||
const failed = errs.filter((e) => e && e.error).length;
|
if (errs.some((e) => e && e.error)) {
|
||||||
let msg = n ? `Identify sent to ${n} device(s).` : 'No devices received identify.';
|
|
||||||
if (failed) {
|
|
||||||
msg += ` ${failed} failed — see console for details.`;
|
|
||||||
console.warn('Group identify errors', errs);
|
console.warn('Group identify errors', errs);
|
||||||
}
|
}
|
||||||
alert(msg);
|
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.error(e);
|
console.error(e);
|
||||||
alert('Identify failed');
|
alert('Identify failed');
|
||||||
@@ -546,8 +547,8 @@ document.addEventListener('DOMContentLoaded', () => {
|
|||||||
} catch (_) {
|
} catch (_) {
|
||||||
/* ignore push errors after save */
|
/* ignore push errors after save */
|
||||||
}
|
}
|
||||||
if (editModal) editModal.classList.remove('active');
|
|
||||||
await loadGroupsModal();
|
await loadGroupsModal();
|
||||||
|
refreshEditGroupDebug();
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
console.error(err);
|
console.error(err);
|
||||||
alert('Save failed');
|
alert('Save failed');
|
||||||
|
|||||||
@@ -7,9 +7,11 @@ document.addEventListener('DOMContentLoaded', () => {
|
|||||||
const mainMenuDropdown = document.getElementById('main-menu-dropdown');
|
const mainMenuDropdown = document.getElementById('main-menu-dropdown');
|
||||||
|
|
||||||
if (helpBtn && helpModal) {
|
if (helpBtn && helpModal) {
|
||||||
helpBtn.addEventListener('click', () => {
|
const openHelp = () => {
|
||||||
helpModal.classList.add('active');
|
helpModal.classList.add('active');
|
||||||
});
|
switchHelpTab('overview');
|
||||||
|
};
|
||||||
|
helpBtn.addEventListener('click', openHelp);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (helpCloseBtn && helpModal) {
|
if (helpCloseBtn && helpModal) {
|
||||||
@@ -18,10 +20,37 @@ document.addEventListener('DOMContentLoaded', () => {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const helpTabButtons = document.querySelectorAll('[data-help-tab]');
|
||||||
|
const helpTabPanels = document.querySelectorAll('[data-help-panel]');
|
||||||
|
|
||||||
|
function switchHelpTab(tabId) {
|
||||||
|
if (!tabId) tabId = 'overview';
|
||||||
|
for (const btn of helpTabButtons) {
|
||||||
|
const on = btn.getAttribute('data-help-tab') === tabId;
|
||||||
|
btn.classList.toggle('active', on);
|
||||||
|
btn.setAttribute('aria-selected', on ? 'true' : 'false');
|
||||||
|
}
|
||||||
|
for (const panel of helpTabPanels) {
|
||||||
|
const on = panel.getAttribute('data-help-panel') === tabId;
|
||||||
|
panel.classList.toggle('active', on);
|
||||||
|
panel.hidden = !on;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
for (const btn of helpTabButtons) {
|
||||||
|
btn.addEventListener('click', () => {
|
||||||
|
switchHelpTab(btn.getAttribute('data-help-tab'));
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
// Mobile main menu: forward clicks to existing header buttons
|
// Mobile main menu: forward clicks to existing header buttons
|
||||||
if (mainMenuBtn && mainMenuDropdown) {
|
if (mainMenuBtn && mainMenuDropdown) {
|
||||||
mainMenuBtn.addEventListener('click', () => {
|
mainMenuBtn.addEventListener('click', () => {
|
||||||
mainMenuDropdown.classList.toggle('open');
|
mainMenuDropdown.classList.toggle('open');
|
||||||
|
const zonesMenuDropdown = document.getElementById('zones-menu-dropdown');
|
||||||
|
const zonesMenuBtn = document.getElementById('zones-menu-btn');
|
||||||
|
if (zonesMenuDropdown) zonesMenuDropdown.classList.remove('open');
|
||||||
|
if (zonesMenuBtn) zonesMenuBtn.setAttribute('aria-expanded', 'false');
|
||||||
});
|
});
|
||||||
|
|
||||||
mainMenuDropdown.addEventListener('click', (event) => {
|
mainMenuDropdown.addEventListener('click', (event) => {
|
||||||
@@ -41,157 +70,534 @@ document.addEventListener('DOMContentLoaded', () => {
|
|||||||
const settingsButton = document.getElementById('settings-btn');
|
const settingsButton = document.getElementById('settings-btn');
|
||||||
const settingsModal = document.getElementById('settings-modal');
|
const settingsModal = document.getElementById('settings-modal');
|
||||||
const settingsCloseButton = document.getElementById('settings-close-btn');
|
const settingsCloseButton = document.getElementById('settings-close-btn');
|
||||||
|
const settingsTabButtons = document.querySelectorAll('[data-settings-tab]');
|
||||||
|
const settingsTabPanels = document.querySelectorAll('[data-settings-panel]');
|
||||||
|
const ledToolIframe = document.getElementById('led-tool-iframe');
|
||||||
|
let settingsActiveTab = 'bridge';
|
||||||
|
|
||||||
const showSettingsMessage = (text, type = 'success') => {
|
function loadLedToolIframe() {
|
||||||
const messageEl = document.getElementById('settings-message');
|
if (!ledToolIframe) return;
|
||||||
if (!messageEl) return;
|
const blank = !ledToolIframe.src || ledToolIframe.src === 'about:blank';
|
||||||
messageEl.textContent = text;
|
if (blank) {
|
||||||
messageEl.className = `message ${type} show`;
|
ledToolIframe.src = '/led-tool/editor';
|
||||||
setTimeout(() => {
|
}
|
||||||
messageEl.classList.remove('show');
|
}
|
||||||
}, 5000);
|
|
||||||
|
function unloadLedToolIframe() {
|
||||||
|
if (ledToolIframe) {
|
||||||
|
ledToolIframe.src = 'about:blank';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function switchSettingsTab(tabId) {
|
||||||
|
if (!tabId) tabId = 'bridge';
|
||||||
|
settingsActiveTab = tabId;
|
||||||
|
for (const btn of settingsTabButtons) {
|
||||||
|
const on = btn.getAttribute('data-settings-tab') === tabId;
|
||||||
|
btn.classList.toggle('active', on);
|
||||||
|
btn.setAttribute('aria-selected', on ? 'true' : 'false');
|
||||||
|
}
|
||||||
|
for (const panel of settingsTabPanels) {
|
||||||
|
const on = panel.getAttribute('data-settings-panel') === tabId;
|
||||||
|
panel.classList.toggle('active', on);
|
||||||
|
panel.hidden = !on;
|
||||||
|
}
|
||||||
|
if (settingsModal) {
|
||||||
|
settingsModal.classList.toggle('settings-modal--led-tool', tabId === 'led-tool');
|
||||||
|
}
|
||||||
|
if (tabId === 'led-tool') {
|
||||||
|
loadLedToolIframe();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
for (const btn of settingsTabButtons) {
|
||||||
|
btn.addEventListener('click', () => {
|
||||||
|
switchSettingsTab(btn.getAttribute('data-settings-tab'));
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
window.openSettingsModal = (tabId) => {
|
||||||
|
if (!settingsModal) return;
|
||||||
|
if (tabId) {
|
||||||
|
switchSettingsTab(tabId);
|
||||||
|
} else {
|
||||||
|
switchSettingsTab(settingsActiveTab);
|
||||||
|
}
|
||||||
|
settingsModal.classList.add('active');
|
||||||
|
if (!tabId || tabId === 'bridge') {
|
||||||
|
loadBridgeSettings();
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
async function loadDeviceSettings() {
|
const bridgeWsStatus = document.getElementById('bridge-ws-status');
|
||||||
try {
|
const bridgeConnectionDetails = document.getElementById('bridge-connection-details');
|
||||||
const response = await fetch('/settings');
|
const bridgeProfilesList = document.getElementById('bridge-profiles-list');
|
||||||
const data = await response.json();
|
let lastBridgeSettings = null;
|
||||||
const nameInput = document.getElementById('device-name-input');
|
const bridgeSerialPortSelect = document.getElementById('bridge-serial-port');
|
||||||
if (nameInput && data && typeof data === 'object') {
|
const bridgeSerialBaudInput = document.getElementById('bridge-serial-baud');
|
||||||
nameInput.value = data.device_name || 'led-controller';
|
const bridgeSerialConnectBtn = document.getElementById('bridge-serial-connect-btn');
|
||||||
|
const bridgeSerialSaveProfileBtn = document.getElementById('bridge-serial-save-profile-btn');
|
||||||
|
const bridgeSerialRefreshBtn = document.getElementById('bridge-serial-refresh-btn');
|
||||||
|
const bridgeWifiInterfaceSelect = document.getElementById('bridge-wifi-interface');
|
||||||
|
const bridgeWifiRefreshInterfacesBtn = document.getElementById('bridge-wifi-refresh-interfaces-btn');
|
||||||
|
const bridgeWifiSsidSelect = document.getElementById('bridge-wifi-ssid');
|
||||||
|
const bridgeWifiSsidManual = document.getElementById('bridge-wifi-ssid-manual');
|
||||||
|
const bridgeWifiPassword = document.getElementById('bridge-wifi-password');
|
||||||
|
const bridgeWifiConnectBtn = document.getElementById('bridge-wifi-connect-btn');
|
||||||
|
const bridgeWifiSaveProfileBtn = document.getElementById('bridge-wifi-save-profile-btn');
|
||||||
|
const bridgeWifiScanBtn = document.getElementById('bridge-wifi-scan-btn');
|
||||||
|
const bridgeWifiApIp = document.getElementById('bridge-wifi-ap-ip');
|
||||||
|
const bridgeWifiWsPort = document.getElementById('bridge-wifi-ws-port');
|
||||||
|
|
||||||
|
function setBridgeWsStatus(text, isError = false) {
|
||||||
|
if (!bridgeWsStatus) return;
|
||||||
|
bridgeWsStatus.textContent = text || '';
|
||||||
|
bridgeWsStatus.style.color = isError ? '#f44336' : '';
|
||||||
}
|
}
|
||||||
const chInput = document.getElementById('wifi-channel-input');
|
|
||||||
if (chInput && data && typeof data === 'object') {
|
function connLabel(ok) {
|
||||||
const ch = data.wifi_channel;
|
return ok ? 'connected' : 'not connected';
|
||||||
chInput.value =
|
|
||||||
ch !== undefined && ch !== null && ch !== '' ? String(ch) : '6';
|
|
||||||
}
|
}
|
||||||
} catch (error) {
|
|
||||||
console.error('Error loading device settings:', error);
|
function bridgeStatusLine(data) {
|
||||||
|
if (!data) return '';
|
||||||
|
const mode = data.bridge_transport === 'serial' ? 'USB serial' : 'Wi‑Fi';
|
||||||
|
const active = data.active_bridge_id
|
||||||
|
? (data.bridges || []).find((b) => b.id === data.active_bridge_id)
|
||||||
|
: null;
|
||||||
|
const activeBit = active ? ` — active profile: ${active.label}` : '';
|
||||||
|
if (data.bridge_transport === 'wifi' && data.bridge_ws_url) {
|
||||||
|
return `${mode}: ${data.bridge_ws_url} (${connLabel(data.bridge_connected)})${activeBit}`;
|
||||||
|
}
|
||||||
|
if (data.bridge_serial_port) {
|
||||||
|
return `${mode}: ${data.bridge_serial_port} (${connLabel(data.bridge_connected)})${activeBit}`;
|
||||||
|
}
|
||||||
|
return `Bridge ${mode} (${connLabel(data.bridge_connected)})${activeBit}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
function renderBridgeConnectionDetails(data) {
|
||||||
|
if (!bridgeConnectionDetails) return;
|
||||||
|
bridgeConnectionDetails.innerHTML = '';
|
||||||
|
if (!data) return;
|
||||||
|
const rows = [
|
||||||
|
['Transport in use', data.bridge_transport === 'serial' ? 'USB serial' : 'Wi‑Fi'],
|
||||||
|
[
|
||||||
|
'Wi‑Fi WebSocket',
|
||||||
|
data.bridge_ws_url
|
||||||
|
? `${data.bridge_ws_url} (${connLabel(data.bridge_wifi_connected)})`
|
||||||
|
: connLabel(false),
|
||||||
|
],
|
||||||
|
[
|
||||||
|
'USB serial',
|
||||||
|
data.bridge_serial_port
|
||||||
|
? `${data.bridge_serial_port} (${connLabel(data.bridge_serial_connected)})`
|
||||||
|
: connLabel(false),
|
||||||
|
],
|
||||||
|
];
|
||||||
|
const active = (data.bridges || []).find((b) => b.id === data.active_bridge_id);
|
||||||
|
if (active) {
|
||||||
|
const detail =
|
||||||
|
active.transport === 'wifi'
|
||||||
|
? `Wi‑Fi ${active.ssid}`
|
||||||
|
: `USB ${active.serial_port}`;
|
||||||
|
rows.push(['Active saved profile', `${active.label} (${detail})`]);
|
||||||
|
} else if (data.bridge_connected) {
|
||||||
|
rows.push(['Active saved profile', '— (connected, no matching saved profile)']);
|
||||||
|
}
|
||||||
|
for (const [k, v] of rows) {
|
||||||
|
const li = document.createElement('li');
|
||||||
|
li.textContent = `${k}: ${v}`;
|
||||||
|
bridgeConnectionDetails.appendChild(li);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async function loadAPStatus() {
|
function resolvedBridgeSsid() {
|
||||||
|
const manual = bridgeWifiSsidManual?.value?.trim();
|
||||||
|
if (manual) return manual;
|
||||||
|
return bridgeWifiSsidSelect?.value?.trim() || '';
|
||||||
|
}
|
||||||
|
|
||||||
|
async function loadBridgeSettings() {
|
||||||
try {
|
try {
|
||||||
const response = await fetch('/settings/wifi/ap');
|
const bridgesRes = await fetch('/settings/wifi/bridges');
|
||||||
const config = await response.json();
|
const bridgesData = await bridgesRes.json().catch(() => ({}));
|
||||||
const statusEl = document.getElementById('ap-status');
|
lastBridgeSettings = bridgesData;
|
||||||
if (!statusEl) return;
|
if (bridgeSerialBaudInput && bridgesData.bridge_serial_baudrate) {
|
||||||
if (config.active) {
|
bridgeSerialBaudInput.value = String(bridgesData.bridge_serial_baudrate);
|
||||||
statusEl.innerHTML = `
|
}
|
||||||
<h4>AP Status: <span class="status-connected">Active</span></h4>
|
await loadSerialPorts(bridgesData.bridge_serial_port || '');
|
||||||
<p><strong>SSID:</strong> ${config.ssid || 'N/A'}</p>
|
await loadWifiInterfaces(bridgesData.wifi_interface || '');
|
||||||
<p><strong>Channel:</strong> ${config.channel || 'Auto'}</p>
|
renderBridgeConnectionDetails(bridgesData);
|
||||||
<p><strong>IP Address:</strong> ${config.ip || 'N/A'}</p>
|
setBridgeWsStatus(bridgeStatusLine(bridgesData));
|
||||||
`;
|
renderBridgeProfiles(bridgesData.bridges || [], bridgesData);
|
||||||
|
} catch (err) {
|
||||||
|
setBridgeWsStatus(err.message, true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async function loadWifiInterfaces(selectedDevice) {
|
||||||
|
if (!bridgeWifiInterfaceSelect) return;
|
||||||
|
try {
|
||||||
|
const res = await fetch('/settings/wifi/interfaces');
|
||||||
|
const data = await res.json().catch(() => ({}));
|
||||||
|
if (!res.ok || !data.ok) {
|
||||||
|
setBridgeWsStatus(data.error || 'Wi‑Fi interfaces unavailable', true);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const current = selectedDevice || bridgeWifiInterfaceSelect.value;
|
||||||
|
bridgeWifiInterfaceSelect.innerHTML = '<option value="">— select adapter —</option>';
|
||||||
|
for (const iface of data.interfaces || []) {
|
||||||
|
const opt = document.createElement('option');
|
||||||
|
opt.value = iface.device;
|
||||||
|
const bits = [iface.device];
|
||||||
|
if (iface.label && iface.label !== iface.device) bits.push(iface.label);
|
||||||
|
if (iface.state) bits.push(`(${iface.state})`);
|
||||||
|
opt.textContent = bits.join(' — ');
|
||||||
|
bridgeWifiInterfaceSelect.appendChild(opt);
|
||||||
|
}
|
||||||
|
if (current) bridgeWifiInterfaceSelect.value = current;
|
||||||
|
} catch (err) {
|
||||||
|
setBridgeWsStatus(err.message, true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async function scanBridgeWifi() {
|
||||||
|
const device = bridgeWifiInterfaceSelect?.value?.trim();
|
||||||
|
if (!device) {
|
||||||
|
setBridgeWsStatus('Select a Wi‑Fi adapter first', true);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
setBridgeWsStatus('Scanning…');
|
||||||
|
try {
|
||||||
|
const res = await fetch(
|
||||||
|
`/settings/wifi/scan?device=${encodeURIComponent(device)}`
|
||||||
|
);
|
||||||
|
const data = await res.json().catch(() => ({}));
|
||||||
|
if (!res.ok || !data.ok) {
|
||||||
|
setBridgeWsStatus(data.error || 'Scan failed', true);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (!bridgeWifiSsidSelect) return;
|
||||||
|
const prev = resolvedBridgeSsid();
|
||||||
|
bridgeWifiSsidSelect.innerHTML = '<option value="">— select network —</option>';
|
||||||
|
for (const net of data.networks || []) {
|
||||||
|
const opt = document.createElement('option');
|
||||||
|
opt.value = net.ssid;
|
||||||
|
opt.textContent = `${net.ssid} (${net.signal}%)`;
|
||||||
|
bridgeWifiSsidSelect.appendChild(opt);
|
||||||
|
}
|
||||||
|
if (prev) {
|
||||||
|
bridgeWifiSsidSelect.value = prev;
|
||||||
|
if (!bridgeWifiSsidSelect.value && bridgeWifiSsidManual) {
|
||||||
|
bridgeWifiSsidManual.value = prev;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
setBridgeWsStatus(`Found ${(data.networks || []).length} network(s)`);
|
||||||
|
} catch (err) {
|
||||||
|
setBridgeWsStatus(err.message, true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async function loadSerialPorts(selectedPort) {
|
||||||
|
if (!bridgeSerialPortSelect) return;
|
||||||
|
try {
|
||||||
|
const res = await fetch('/led-tool/ports');
|
||||||
|
const data = await res.json().catch(() => ({}));
|
||||||
|
const current = selectedPort || bridgeSerialPortSelect.value;
|
||||||
|
bridgeSerialPortSelect.innerHTML = '<option value="">— select port —</option>';
|
||||||
|
for (const p of data.ports || []) {
|
||||||
|
const opt = document.createElement('option');
|
||||||
|
opt.value = p.device;
|
||||||
|
opt.textContent = p.description ? `${p.device} — ${p.description}` : p.device;
|
||||||
|
bridgeSerialPortSelect.appendChild(opt);
|
||||||
|
}
|
||||||
|
if (current) bridgeSerialPortSelect.value = current;
|
||||||
|
} catch (err) {
|
||||||
|
setBridgeWsStatus(err.message, true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function profileStatusFor(p, data) {
|
||||||
|
const activeId = data.active_bridge_id || '';
|
||||||
|
const isActive = Boolean(activeId && p.id === activeId && data.bridge_connected);
|
||||||
|
if (isActive) {
|
||||||
|
return { text: 'Connected', className: 'settings-bridge-profile-status--connected' };
|
||||||
|
}
|
||||||
|
return { text: 'Not connected', className: 'settings-bridge-profile-status--idle' };
|
||||||
|
}
|
||||||
|
|
||||||
|
async function deleteBridgeProfile(id, label) {
|
||||||
|
const name = label || id;
|
||||||
|
if (!window.confirm(`Delete saved bridge profile “${name}”?`)) return;
|
||||||
|
setBridgeWsStatus('Deleting…');
|
||||||
|
try {
|
||||||
|
const res = await fetch(`/settings/wifi/bridges/${encodeURIComponent(id)}`, {
|
||||||
|
method: 'DELETE',
|
||||||
|
headers: { Accept: 'application/json' },
|
||||||
|
});
|
||||||
|
const data = await res.json().catch(() => ({}));
|
||||||
|
if (!res.ok || !data.ok) {
|
||||||
|
setBridgeWsStatus(data.error || 'Delete failed', true);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
setBridgeWsStatus(data.message || 'Profile deleted');
|
||||||
|
await loadBridgeSettings();
|
||||||
|
} catch (err) {
|
||||||
|
setBridgeWsStatus(err.message, true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function renderBridgeProfiles(profiles, bridgesData) {
|
||||||
|
if (!bridgeProfilesList) return;
|
||||||
|
bridgeProfilesList.innerHTML = '';
|
||||||
|
const data = bridgesData || lastBridgeSettings || {};
|
||||||
|
const activeId = data.active_bridge_id || '';
|
||||||
|
if (!profiles.length) {
|
||||||
|
bridgeProfilesList.innerHTML = '<li>No saved bridge profiles.</li>';
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
for (const p of profiles) {
|
||||||
|
const li = document.createElement('li');
|
||||||
|
const isActive = Boolean(activeId && p.id === activeId && data.bridge_connected);
|
||||||
|
li.className =
|
||||||
|
'settings-bridge-profile-row' + (isActive ? ' settings-bridge-profile-row--active' : '');
|
||||||
|
const main = document.createElement('div');
|
||||||
|
main.className = 'settings-bridge-profile-main';
|
||||||
|
const label = document.createElement('span');
|
||||||
|
label.className = 'settings-bridge-profile-label';
|
||||||
|
if (p.transport === 'wifi') {
|
||||||
|
label.textContent = `${p.label} — Wi‑Fi ${p.ssid}`;
|
||||||
} else {
|
} else {
|
||||||
statusEl.innerHTML = `
|
label.textContent = `${p.label} — USB ${p.serial_port}`;
|
||||||
<h4>AP Status: <span class="status-disconnected">Inactive</span></h4>
|
|
||||||
<p>Access Point is not currently active</p>
|
|
||||||
`;
|
|
||||||
}
|
}
|
||||||
if (config.saved_ssid) document.getElementById('ap-ssid').value = config.saved_ssid;
|
const status = document.createElement('span');
|
||||||
if (config.saved_channel) document.getElementById('ap-channel').value = config.saved_channel;
|
const st = profileStatusFor(p, data);
|
||||||
} catch (error) {
|
status.className = 'settings-bridge-profile-status ' + st.className;
|
||||||
console.error('Error loading AP status:', error);
|
status.textContent = st.text;
|
||||||
|
main.appendChild(label);
|
||||||
|
main.appendChild(status);
|
||||||
|
const actions = document.createElement('div');
|
||||||
|
actions.className = 'settings-bridge-profile-actions';
|
||||||
|
const connectBtn = document.createElement('button');
|
||||||
|
connectBtn.type = 'button';
|
||||||
|
connectBtn.className = 'btn btn-secondary btn-small';
|
||||||
|
connectBtn.textContent = 'Connect';
|
||||||
|
connectBtn.addEventListener('click', () => connectSavedBridge(p.id));
|
||||||
|
const deleteBtn = document.createElement('button');
|
||||||
|
deleteBtn.type = 'button';
|
||||||
|
deleteBtn.className = 'btn btn-secondary btn-small settings-bridge-profile-delete';
|
||||||
|
deleteBtn.textContent = 'Delete';
|
||||||
|
deleteBtn.addEventListener('click', () => deleteBridgeProfile(p.id, p.label));
|
||||||
|
actions.appendChild(connectBtn);
|
||||||
|
actions.appendChild(deleteBtn);
|
||||||
|
li.appendChild(main);
|
||||||
|
li.appendChild(actions);
|
||||||
|
bridgeProfilesList.appendChild(li);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async function connectSavedBridge(id) {
|
||||||
|
setBridgeWsStatus('Connecting…');
|
||||||
|
try {
|
||||||
|
const res = await fetch(`/settings/wifi/bridges/${encodeURIComponent(id)}/connect`, {
|
||||||
|
method: 'POST',
|
||||||
|
headers: { Accept: 'application/json' },
|
||||||
|
});
|
||||||
|
const data = await res.json().catch(() => ({}));
|
||||||
|
if (!res.ok || !data.ok) {
|
||||||
|
setBridgeWsStatus(data.error || 'Connect failed', true);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
setBridgeWsStatus(data.message ? `${data.message} — ${bridgeStatusLine(data)}` : bridgeStatusLine(data));
|
||||||
|
await loadBridgeSettings();
|
||||||
|
} catch (err) {
|
||||||
|
setBridgeWsStatus(err.message, true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async function connectBridgeWifi(saveProfile) {
|
||||||
|
const device = bridgeWifiInterfaceSelect?.value?.trim();
|
||||||
|
const ssid = resolvedBridgeSsid();
|
||||||
|
const password = bridgeWifiPassword?.value || '';
|
||||||
|
const apIp = bridgeWifiApIp?.value?.trim() || '192.168.4.1';
|
||||||
|
const wsPort = parseInt(bridgeWifiWsPort?.value, 10) || 80;
|
||||||
|
const label = document.getElementById('bridge-wifi-label')?.value?.trim() || ssid;
|
||||||
|
if (!device) {
|
||||||
|
setBridgeWsStatus('Select a Wi‑Fi adapter', true);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (!ssid) {
|
||||||
|
setBridgeWsStatus('Enter or select a bridge SSID', true);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
setBridgeWsStatus('Connecting…');
|
||||||
|
try {
|
||||||
|
const res = await fetch('/settings/wifi/connect', {
|
||||||
|
method: 'POST',
|
||||||
|
headers: { 'Content-Type': 'application/json', Accept: 'application/json' },
|
||||||
|
body: JSON.stringify({
|
||||||
|
device,
|
||||||
|
ssid,
|
||||||
|
password,
|
||||||
|
ap_ip: apIp,
|
||||||
|
ws_port: wsPort,
|
||||||
|
label,
|
||||||
|
save_profile: saveProfile,
|
||||||
|
}),
|
||||||
|
});
|
||||||
|
const data = await res.json().catch(() => ({}));
|
||||||
|
if (!res.ok || !data.ok) {
|
||||||
|
setBridgeWsStatus(data.error || 'Connect failed', true);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
setBridgeWsStatus(data.message ? `${data.message} — ${bridgeStatusLine(data)}` : bridgeStatusLine(data));
|
||||||
|
await loadBridgeSettings();
|
||||||
|
} catch (err) {
|
||||||
|
setBridgeWsStatus(err.message, true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async function connectBridgeSerial(saveProfile) {
|
||||||
|
const port = bridgeSerialPortSelect ? bridgeSerialPortSelect.value : '';
|
||||||
|
const baud = parseInt(bridgeSerialBaudInput?.value, 10) || 115200;
|
||||||
|
const label = document.getElementById('bridge-serial-label')?.value?.trim() || port;
|
||||||
|
if (!port) {
|
||||||
|
setBridgeWsStatus('Select a USB serial port', true);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
setBridgeWsStatus('Connecting…');
|
||||||
|
try {
|
||||||
|
const res = await fetch('/settings/wifi/serial/connect', {
|
||||||
|
method: 'POST',
|
||||||
|
headers: { 'Content-Type': 'application/json', Accept: 'application/json' },
|
||||||
|
body: JSON.stringify({ port, baudrate: baud, label, save_profile: saveProfile }),
|
||||||
|
});
|
||||||
|
const data = await res.json().catch(() => ({}));
|
||||||
|
if (!res.ok || !data.ok) {
|
||||||
|
setBridgeWsStatus(data.error || 'Connect failed', true);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
setBridgeWsStatus(data.message ? `${data.message} — ${bridgeStatusLine(data)}` : bridgeStatusLine(data));
|
||||||
|
await loadBridgeSettings();
|
||||||
|
} catch (err) {
|
||||||
|
setBridgeWsStatus(err.message, true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (bridgeSerialRefreshBtn) {
|
||||||
|
bridgeSerialRefreshBtn.addEventListener('click', () => loadSerialPorts());
|
||||||
|
}
|
||||||
|
|
||||||
|
if (bridgeSerialConnectBtn) {
|
||||||
|
bridgeSerialConnectBtn.addEventListener('click', () => connectBridgeSerial(true));
|
||||||
|
}
|
||||||
|
|
||||||
|
if (bridgeWifiRefreshInterfacesBtn) {
|
||||||
|
bridgeWifiRefreshInterfacesBtn.addEventListener('click', () => loadWifiInterfaces());
|
||||||
|
}
|
||||||
|
|
||||||
|
if (bridgeWifiScanBtn) {
|
||||||
|
bridgeWifiScanBtn.addEventListener('click', () => scanBridgeWifi());
|
||||||
|
}
|
||||||
|
|
||||||
|
if (bridgeWifiConnectBtn) {
|
||||||
|
bridgeWifiConnectBtn.addEventListener('click', () => connectBridgeWifi(true));
|
||||||
|
}
|
||||||
|
|
||||||
|
if (bridgeWifiSaveProfileBtn) {
|
||||||
|
bridgeWifiSaveProfileBtn.addEventListener('click', async () => {
|
||||||
|
const device = bridgeWifiInterfaceSelect?.value?.trim();
|
||||||
|
const ssid = resolvedBridgeSsid();
|
||||||
|
if (!ssid) {
|
||||||
|
setBridgeWsStatus('SSID required to save profile', true);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const password = bridgeWifiPassword?.value || '';
|
||||||
|
const apIp = bridgeWifiApIp?.value?.trim() || '192.168.4.1';
|
||||||
|
const wsPort = parseInt(bridgeWifiWsPort?.value, 10) || 80;
|
||||||
|
const label = document.getElementById('bridge-wifi-label')?.value?.trim() || ssid;
|
||||||
|
try {
|
||||||
|
const res = await fetch('/settings/wifi/bridges');
|
||||||
|
const data = await res.json().catch(() => ({}));
|
||||||
|
const bridges = Array.isArray(data.bridges) ? data.bridges : [];
|
||||||
|
bridges.push({
|
||||||
|
id: crypto.randomUUID ? crypto.randomUUID().slice(0, 12) : String(Date.now()),
|
||||||
|
label,
|
||||||
|
transport: 'wifi',
|
||||||
|
ssid,
|
||||||
|
password,
|
||||||
|
ap_ip: apIp,
|
||||||
|
ws_port: wsPort,
|
||||||
|
});
|
||||||
|
const putRes = await fetch('/settings/wifi/bridges', {
|
||||||
|
method: 'PUT',
|
||||||
|
headers: { 'Content-Type': 'application/json', Accept: 'application/json' },
|
||||||
|
body: JSON.stringify({ bridges, wifi_interface: device || data.wifi_interface }),
|
||||||
|
});
|
||||||
|
const putData = await putRes.json().catch(() => ({}));
|
||||||
|
if (!putRes.ok || !putData.ok) {
|
||||||
|
setBridgeWsStatus(putData.error || 'Save failed', true);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
setBridgeWsStatus('Wi‑Fi profile saved');
|
||||||
|
await loadBridgeSettings();
|
||||||
|
} catch (err) {
|
||||||
|
setBridgeWsStatus(err.message, true);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
if (bridgeSerialSaveProfileBtn) {
|
||||||
|
bridgeSerialSaveProfileBtn.addEventListener('click', async () => {
|
||||||
|
const port = bridgeSerialPortSelect ? bridgeSerialPortSelect.value : '';
|
||||||
|
if (!port) {
|
||||||
|
setBridgeWsStatus('Port required to save profile', true);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const baud = parseInt(bridgeSerialBaudInput?.value, 10) || 115200;
|
||||||
|
const label = document.getElementById('bridge-serial-label')?.value?.trim() || port;
|
||||||
|
try {
|
||||||
|
const res = await fetch('/settings/wifi/bridges');
|
||||||
|
const data = await res.json().catch(() => ({}));
|
||||||
|
const bridges = Array.isArray(data.bridges) ? data.bridges : [];
|
||||||
|
bridges.push({
|
||||||
|
id: crypto.randomUUID ? crypto.randomUUID().slice(0, 12) : String(Date.now()),
|
||||||
|
label,
|
||||||
|
transport: 'serial',
|
||||||
|
serial_port: port,
|
||||||
|
serial_baudrate: baud,
|
||||||
|
});
|
||||||
|
const putRes = await fetch('/settings/wifi/bridges', {
|
||||||
|
method: 'PUT',
|
||||||
|
headers: { 'Content-Type': 'application/json', Accept: 'application/json' },
|
||||||
|
body: JSON.stringify({ bridges }),
|
||||||
|
});
|
||||||
|
const putData = await putRes.json().catch(() => ({}));
|
||||||
|
if (!putRes.ok || !putData.ok) {
|
||||||
|
setBridgeWsStatus(putData.error || 'Save failed', true);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
setBridgeWsStatus('Serial profile saved');
|
||||||
|
await loadBridgeSettings();
|
||||||
|
} catch (err) {
|
||||||
|
setBridgeWsStatus(err.message, true);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
if (settingsButton && settingsModal) {
|
if (settingsButton && settingsModal) {
|
||||||
settingsButton.addEventListener('click', () => {
|
settingsButton.addEventListener('click', () => {
|
||||||
|
switchSettingsTab('bridge');
|
||||||
settingsModal.classList.add('active');
|
settingsModal.classList.add('active');
|
||||||
// Load current WiFi status/config when opening
|
loadBridgeSettings();
|
||||||
loadDeviceSettings();
|
|
||||||
loadAPStatus();
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
if (settingsCloseButton && settingsModal) {
|
if (settingsCloseButton && settingsModal) {
|
||||||
settingsCloseButton.addEventListener('click', () => {
|
settingsCloseButton.addEventListener('click', () => {
|
||||||
settingsModal.classList.remove('active');
|
settingsModal.classList.remove('active');
|
||||||
});
|
settingsModal.classList.remove('settings-modal--led-tool');
|
||||||
}
|
unloadLedToolIframe();
|
||||||
|
|
||||||
const deviceForm = document.getElementById('device-form');
|
|
||||||
if (deviceForm) {
|
|
||||||
deviceForm.addEventListener('submit', async (e) => {
|
|
||||||
e.preventDefault();
|
|
||||||
const nameInput = document.getElementById('device-name-input');
|
|
||||||
const deviceName = nameInput ? nameInput.value.trim() : '';
|
|
||||||
if (!deviceName) {
|
|
||||||
showSettingsMessage('Device name is required', 'error');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
const chRaw = document.getElementById('wifi-channel-input')
|
|
||||||
? document.getElementById('wifi-channel-input').value
|
|
||||||
: '6';
|
|
||||||
const wifiChannel = parseInt(chRaw, 10);
|
|
||||||
if (Number.isNaN(wifiChannel) || wifiChannel < 1 || wifiChannel > 11) {
|
|
||||||
showSettingsMessage('WiFi channel must be between 1 and 11', 'error');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
try {
|
|
||||||
const response = await fetch('/settings', {
|
|
||||||
method: 'PUT',
|
|
||||||
headers: { 'Content-Type': 'application/json' },
|
|
||||||
body: JSON.stringify({
|
|
||||||
device_name: deviceName,
|
|
||||||
wifi_channel: wifiChannel,
|
|
||||||
}),
|
|
||||||
});
|
|
||||||
const result = await response.json();
|
|
||||||
if (response.ok) {
|
|
||||||
showSettingsMessage(
|
|
||||||
'Device settings saved. They will apply on next restart where relevant.',
|
|
||||||
'success',
|
|
||||||
);
|
|
||||||
} else {
|
|
||||||
showSettingsMessage(`Error: ${result.error || 'Failed to save device name'}`, 'error');
|
|
||||||
}
|
|
||||||
} catch (error) {
|
|
||||||
showSettingsMessage(`Error: ${error.message}`, 'error');
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
const apForm = document.getElementById('ap-form');
|
|
||||||
if (apForm) {
|
|
||||||
apForm.addEventListener('submit', async (e) => {
|
|
||||||
e.preventDefault();
|
|
||||||
const formData = {
|
|
||||||
ssid: document.getElementById('ap-ssid').value,
|
|
||||||
password: document.getElementById('ap-password').value,
|
|
||||||
channel: document.getElementById('ap-channel').value || null,
|
|
||||||
};
|
|
||||||
|
|
||||||
if (formData.password && formData.password.length > 0 && formData.password.length < 8) {
|
|
||||||
showSettingsMessage('AP password must be at least 8 characters', 'error');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (formData.channel) {
|
|
||||||
formData.channel = parseInt(formData.channel, 10);
|
|
||||||
if (formData.channel < 1 || formData.channel > 11) {
|
|
||||||
showSettingsMessage('Channel must be between 1 and 11', 'error');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
const response = await fetch('/settings/wifi/ap', {
|
|
||||||
method: 'POST',
|
|
||||||
headers: { 'Content-Type': 'application/json' },
|
|
||||||
body: JSON.stringify(formData),
|
|
||||||
});
|
|
||||||
const result = await response.json();
|
|
||||||
if (response.ok) {
|
|
||||||
showSettingsMessage('Access Point configured successfully!', 'success');
|
|
||||||
setTimeout(loadAPStatus, 1000);
|
|
||||||
} else {
|
|
||||||
showSettingsMessage(`Error: ${result.error || 'Failed to configure AP'}`, 'error');
|
|
||||||
}
|
|
||||||
} catch (error) {
|
|
||||||
showSettingsMessage(`Error: ${error.message}`, 'error');
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|||||||
15
src/static/images/help/audio.svg
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 520 200" width="520" height="200">
|
||||||
|
<title>Audio beat detection</title>
|
||||||
|
<rect width="520" height="200" fill="#1e1e1e"/>
|
||||||
|
<rect x="40" y="16" width="440" height="168" rx="8" fill="#2a2a2a" stroke="#555" stroke-width="1"/>
|
||||||
|
<text x="60" y="44" fill="#fff" font-family="sans-serif" font-size="16" font-weight="600">Audio Beat Detection</text>
|
||||||
|
<text x="60" y="72" fill="#aaa" font-family="sans-serif" font-size="10">Input device</text>
|
||||||
|
<rect x="60" y="78" width="200" height="24" rx="3" fill="#1a1a1a" stroke="#444" stroke-width="1"/>
|
||||||
|
<text x="68" y="94" fill="#bbb" font-family="sans-serif" font-size="10">monitor of Built-in</text>
|
||||||
|
<rect x="60" y="112" width="120" height="36" rx="4" fill="#2a4a2a" stroke="#5a8f5a" stroke-width="2"/>
|
||||||
|
<text x="72" y="128" fill="#afa" font-family="sans-serif" font-size="10">BPM</text>
|
||||||
|
<text x="72" y="142" fill="#fff" font-family="sans-serif" font-size="14" font-weight="600">128</text>
|
||||||
|
<rect x="200" y="120" width="200" height="8" rx="4" fill="#444"/>
|
||||||
|
<rect x="200" y="120" width="140" height="8" rx="4" fill="#6a9ee2"/>
|
||||||
|
<text x="200" y="148" fill="#888" font-family="sans-serif" font-size="9">Volume - live level meter - tap S to sync sequence</text>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.2 KiB |
14
src/static/images/help/colour-palette.svg
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 480 140" width="480" height="140">
|
||||||
|
<title>Colour Palette modal (concept)</title>
|
||||||
|
<rect width="480" height="140" fill="#2a2a2a" stroke="#555" stroke-width="1" rx="6"/>
|
||||||
|
<text x="20" y="28" fill="#fff" font-family="sans-serif" font-size="15" font-weight="600">Colour Palette</text>
|
||||||
|
<text x="20" y="48" fill="#888" font-family="sans-serif" font-size="10">Profile: current profile name</text>
|
||||||
|
<rect x="20" y="58" width="44" height="44" rx="4" fill="#e53935" stroke="#333"/>
|
||||||
|
<rect x="72" y="58" width="44" height="44" rx="4" fill="#fdd835" stroke="#333"/>
|
||||||
|
<rect x="124" y="58" width="44" height="44" rx="4" fill="#43a047" stroke="#333"/>
|
||||||
|
<rect x="176" y="58" width="44" height="44" rx="4" fill="#1e88e5" stroke="#333"/>
|
||||||
|
<rect x="228" y="58" width="44" height="44" rx="4" fill="#8e24aa" stroke="#333"/>
|
||||||
|
<rect x="280" y="70" width="36" height="28" rx="3" fill="#1a1a1a" stroke="#666"/>
|
||||||
|
<text x="288" y="88" fill="#ccc" font-family="sans-serif" font-size="10">+</text>
|
||||||
|
<text x="20" y="122" fill="#aaa" font-family="sans-serif" font-size="10">Swatches belong to the profile; preset editor uses them via From Palette.</text>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.2 KiB |
18
src/static/images/help/devices.svg
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 520 200" width="520" height="200">
|
||||||
|
<title>Devices modal</title>
|
||||||
|
<rect width="520" height="200" fill="#1e1e1e"/>
|
||||||
|
<rect x="40" y="20" width="440" height="160" rx="8" fill="#2a2a2a" stroke="#555" stroke-width="1"/>
|
||||||
|
<text x="60" y="48" fill="#fff" font-family="sans-serif" font-size="16" font-weight="600">Devices</text>
|
||||||
|
<rect x="60" y="58" width="72" height="24" rx="3" fill="#3d3d3d" stroke="#555" stroke-width="1"/>
|
||||||
|
<text x="72" y="74" fill="#eee" font-family="sans-serif" font-size="10">Identify</text>
|
||||||
|
<rect x="140" y="58" width="96" height="24" rx="3" fill="#3d3d3d" stroke="#555" stroke-width="1"/>
|
||||||
|
<text x="150" y="74" fill="#eee" font-family="sans-serif" font-size="10">Update groups</text>
|
||||||
|
<text x="60" y="104" fill="#aaa" font-family="sans-serif" font-size="10">MAC</text>
|
||||||
|
<text x="200" y="104" fill="#aaa" font-family="sans-serif" font-size="10">Name</text>
|
||||||
|
<text x="60" y="128" fill="#ddd" font-family="monospace" font-size="11">AA:BB:CC:DD:EE:01</text>
|
||||||
|
<text x="200" y="128" fill="#ddd" font-family="sans-serif" font-size="11">lounge strip</text>
|
||||||
|
<text x="380" y="128" fill="#888" font-family="sans-serif" font-size="10">Edit</text>
|
||||||
|
<text x="60" y="156" fill="#ddd" font-family="monospace" font-size="11">AA:BB:CC:DD:EE:02</text>
|
||||||
|
<text x="200" y="156" fill="#ddd" font-family="sans-serif" font-size="11">ceiling</text>
|
||||||
|
<text x="60" y="176" fill="#888" font-family="sans-serif" font-size="10">ESP-NOW devices appear when they announce.</text>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.5 KiB |
17
src/static/images/help/groups.svg
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 520 220" width="520" height="220">
|
||||||
|
<title>Device groups modal</title>
|
||||||
|
<rect width="520" height="220" fill="#1e1e1e"/>
|
||||||
|
<rect x="40" y="16" width="440" height="188" rx="8" fill="#2a2a2a" stroke="#555" stroke-width="1"/>
|
||||||
|
<text x="60" y="44" fill="#fff" font-family="sans-serif" font-size="16" font-weight="600">Device groups</text>
|
||||||
|
<rect x="60" y="54" width="140" height="24" rx="3" fill="#1a1a1a" stroke="#444" stroke-width="1"/>
|
||||||
|
<text x="68" y="70" fill="#bbb" font-family="sans-serif" font-size="11">Group name</text>
|
||||||
|
<rect x="210" y="54" width="56" height="24" rx="3" fill="#4a4a6a" stroke="#7a7aaf" stroke-width="1"/>
|
||||||
|
<text x="224" y="70" fill="#eee" font-family="sans-serif" font-size="11">Create</text>
|
||||||
|
<text x="60" y="104" fill="#ccc" font-family="sans-serif" font-size="12">lounge lights</text>
|
||||||
|
<text x="300" y="104" fill="#888" font-family="sans-serif" font-size="10">3 devices - Edit</text>
|
||||||
|
<text x="60" y="132" fill="#ccc" font-family="sans-serif" font-size="12">dj booth</text>
|
||||||
|
<text x="300" y="132" fill="#888" font-family="sans-serif" font-size="10">2 devices - Edit</text>
|
||||||
|
<rect x="60" y="148" width="360" height="44" rx="4" fill="#252525" stroke="#444" stroke-width="1"/>
|
||||||
|
<text x="72" y="168" fill="#aaa" font-family="sans-serif" font-size="10">Search devices to add...</text>
|
||||||
|
<text x="72" y="184" fill="#888" font-family="sans-serif" font-size="9">Pick from list - Identify group</text>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.5 KiB |
24
src/static/images/help/header-toolbar.svg
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 820 108" width="820" height="108">
|
||||||
|
<title>Header: tab buttons and action bar</title>
|
||||||
|
<rect width="820" height="108" fill="#1a1a1a"/>
|
||||||
|
<rect x="0" y="106" width="820" height="2" fill="#4a4a4a"/>
|
||||||
|
<text x="16" y="28" fill="#888" font-family="sans-serif" font-size="11">Zones</text>
|
||||||
|
<rect x="16" y="40" width="72" height="36" rx="4" fill="#333" stroke="#666" stroke-width="1"/>
|
||||||
|
<text x="34" y="63" fill="#ccc" font-family="sans-serif" font-size="13">default</text>
|
||||||
|
<rect x="96" y="40" width="88" height="36" rx="4" fill="#2a4a7a" stroke="#5a8fd4" stroke-width="2"/>
|
||||||
|
<text x="108" y="63" fill="#fff" font-family="sans-serif" font-size="13">lounge</text>
|
||||||
|
<rect x="192" y="40" width="56" height="36" rx="4" fill="#333" stroke="#666" stroke-width="1"/>
|
||||||
|
<text x="204" y="63" fill="#ccc" font-family="sans-serif" font-size="13">dj</text>
|
||||||
|
<text x="380" y="28" fill="#888" font-family="sans-serif" font-size="11">Actions (Edit mode)</text>
|
||||||
|
<rect x="380" y="40" width="72" height="30" rx="3" fill="#3d3d3d" stroke="#555" stroke-width="1"/>
|
||||||
|
<text x="396" y="59" fill="#e0e0e0" font-family="sans-serif" font-size="11">Profiles</text>
|
||||||
|
<rect x="458" y="40" width="52" height="30" rx="3" fill="#3d3d3d" stroke="#555" stroke-width="1"/>
|
||||||
|
<text x="470" y="59" fill="#e0e0e0" font-family="sans-serif" font-size="11">Zones</text>
|
||||||
|
<rect x="516" y="40" width="64" height="30" rx="3" fill="#3d3d3d" stroke="#555" stroke-width="1"/>
|
||||||
|
<text x="524" y="59" fill="#e0e0e0" font-family="sans-serif" font-size="11">Presets</text>
|
||||||
|
<rect x="586" y="40" width="78" height="30" rx="3" fill="#3d3d3d" stroke="#555" stroke-width="1"/>
|
||||||
|
<text x="598" y="59" fill="#e0e0e0" font-family="sans-serif" font-size="11">Patterns</text>
|
||||||
|
<rect x="670" y="40" width="134" height="30" rx="3" fill="#4a4a6a" stroke="#7a7aaf" stroke-width="1"/>
|
||||||
|
<text x="688" y="59" fill="#e0e0e0" font-family="sans-serif" font-size="11">Run mode</text>
|
||||||
|
<text x="16" y="98" fill="#aaa" font-family="sans-serif" font-size="10">Active tab highlighted. Mode button shows the mode you switch to next.</text>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.1 KiB |
26
src/static/images/help/mobile-menu.svg
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 340" width="300" height="340" role="img" aria-labelledby="mobile-menu-title">
|
||||||
|
<title id="mobile-menu-title">Narrow screen: Menu aggregates header actions</title>
|
||||||
|
<rect width="300" height="340" fill="#2e2e2e"/>
|
||||||
|
<rect x="0" y="0" width="300" height="52" fill="#1a1a1a"/>
|
||||||
|
<rect x="12" y="12" width="56" height="28" rx="4" fill="#3d3d3d" stroke="#555" stroke-width="1"/>
|
||||||
|
<text x="22" y="30" fill="#eee" font-family="sans-serif" font-size="12">Menu</text>
|
||||||
|
<rect x="76" y="14" width="52" height="24" rx="4" fill="#333" stroke="#666" stroke-width="1"/>
|
||||||
|
<text x="86" y="30" fill="#ccc" font-family="sans-serif" font-size="11">tab</text>
|
||||||
|
<rect x="136" y="14" width="52" height="24" rx="4" fill="#2a4a7a" stroke="#5a8fd4" stroke-width="1"/>
|
||||||
|
<text x="142" y="30" fill="#fff" font-family="sans-serif" font-size="11">tab</text>
|
||||||
|
<rect x="12" y="60" width="276" height="168" rx="4" fill="#252525" stroke="#4a4a4a" stroke-width="1"/>
|
||||||
|
<text x="24" y="84" fill="#888" font-family="sans-serif" font-size="10">Dropdown (same actions as desktop header)</text>
|
||||||
|
<g font-family="sans-serif" font-size="12" fill="#e8e8e8">
|
||||||
|
<text x="24" y="108">Run mode</text>
|
||||||
|
<text x="24" y="132">Profiles</text>
|
||||||
|
<text x="24" y="156">Zones</text>
|
||||||
|
<text x="24" y="180">Presets</text>
|
||||||
|
<text x="24" y="204">Help</text>
|
||||||
|
</g>
|
||||||
|
<rect x="12" y="240" width="276" height="80" rx="6" fill="#222" stroke="#444" stroke-width="1"/>
|
||||||
|
<text x="24" y="268" fill="#aaa" font-family="sans-serif" font-size="10">Content area - presets as on desktop</text>
|
||||||
|
<rect x="24" y="278" width="80" height="32" rx="4" fill="#333" stroke="#555"/>
|
||||||
|
<text x="36" y="298" fill="#ddd" font-family="sans-serif" font-size="11">preset</text>
|
||||||
|
<rect x="112" y="278" width="80" height="32" rx="4" fill="#333" stroke="#555"/>
|
||||||
|
<text x="124" y="298" fill="#ddd" font-family="sans-serif" font-size="11">preset</text>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.9 KiB |
13
src/static/images/help/patterns.svg
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 520 180" width="520" height="180">
|
||||||
|
<title>Patterns list</title>
|
||||||
|
<rect width="520" height="180" fill="#1e1e1e"/>
|
||||||
|
<rect x="40" y="16" width="440" height="148" rx="8" fill="#2a2a2a" stroke="#555" stroke-width="1"/>
|
||||||
|
<text x="60" y="44" fill="#fff" font-family="sans-serif" font-size="16" font-weight="600">Patterns</text>
|
||||||
|
<text x="60" y="72" fill="#ccc" font-family="sans-serif" font-size="12">pulse</text>
|
||||||
|
<text x="300" y="72" fill="#888" font-family="sans-serif" font-size="10">delay 20-200 ms</text>
|
||||||
|
<text x="60" y="98" fill="#ccc" font-family="sans-serif" font-size="12">rainbow</text>
|
||||||
|
<text x="300" y="98" fill="#888" font-family="sans-serif" font-size="10">delay 10-80 ms</text>
|
||||||
|
<text x="60" y="124" fill="#ccc" font-family="sans-serif" font-size="12">sparkle</text>
|
||||||
|
<text x="300" y="124" fill="#888" font-family="sans-serif" font-size="10">delay 5-50 ms</text>
|
||||||
|
<text x="60" y="152" fill="#888" font-family="sans-serif" font-size="9">Choose a pattern in the preset editor - n1-n8 depend on pattern.</text>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.1 KiB |
31
src/static/images/help/preset-editor.svg
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 520 400" width="520" height="400">
|
||||||
|
<title>Preset editor modal (simplified)</title>
|
||||||
|
<rect width="520" height="400" fill="#1e1e1e"/>
|
||||||
|
<rect x="40" y="28" width="440" height="344" rx="8" fill="#2a2a2a" stroke="#555" stroke-width="1"/>
|
||||||
|
<text x="60" y="58" fill="#fff" font-family="DejaVu Sans,Liberation Sans,Arial,sans-serif" font-size="17" font-weight="600">Preset</text>
|
||||||
|
<text x="60" y="86" fill="#aaa" font-family="DejaVu Sans,Liberation Sans,Arial,sans-serif" font-size="11">Name</text>
|
||||||
|
<rect x="60" y="92" width="200" height="28" rx="3" fill="#1a1a1a" stroke="#444" stroke-width="1"/>
|
||||||
|
<text x="72" y="111" fill="#ddd" font-family="DejaVu Sans,Liberation Sans,Arial,sans-serif" font-size="12">evening glow</text>
|
||||||
|
<text x="280" y="86" fill="#aaa" font-family="DejaVu Sans,Liberation Sans,Arial,sans-serif" font-size="11">Pattern</text>
|
||||||
|
<rect x="280" y="92" width="160" height="28" rx="3" fill="#1a1a1a" stroke="#444" stroke-width="1"/>
|
||||||
|
<text x="292" y="111" fill="#ddd" font-family="DejaVu Sans,Liberation Sans,Arial,sans-serif" font-size="12">pulse</text>
|
||||||
|
<text x="60" y="148" fill="#aaa" font-family="DejaVu Sans,Liberation Sans,Arial,sans-serif" font-size="11">Colours</text>
|
||||||
|
<rect x="60" y="156" width="48" height="48" rx="4" fill="#7e57c2" stroke="#333" stroke-width="1"/>
|
||||||
|
<circle cx="66" cy="162" r="8" fill="#3f51b5" stroke="#fff" stroke-width="1"/>
|
||||||
|
<text x="63" y="166" fill="#fff" font-family="DejaVu Sans,Liberation Sans,Arial,sans-serif" font-size="7" font-weight="700">P</text>
|
||||||
|
<rect x="116" y="156" width="48" height="48" rx="4" fill="#26a69a" stroke="#333" stroke-width="1"/>
|
||||||
|
<text x="176" y="184" fill="#888" font-family="DejaVu Sans,Liberation Sans,Arial,sans-serif" font-size="10">P = palette-linked</text>
|
||||||
|
<text x="60" y="232" fill="#aaa" font-family="DejaVu Sans,Liberation Sans,Arial,sans-serif" font-size="11">Brightness, delay, n1-n8</text>
|
||||||
|
<rect x="60" y="238" width="120" height="24" rx="3" fill="#1a1a1a" stroke="#444" stroke-width="1"/>
|
||||||
|
<text x="68" y="254" fill="#888" font-family="DejaVu Sans,Liberation Sans,Arial,sans-serif" font-size="11">0-255</text>
|
||||||
|
<text x="60" y="290" fill="#aaa" font-family="DejaVu Sans,Liberation Sans,Arial,sans-serif" font-size="10">Actions</text>
|
||||||
|
<rect x="60" y="298" width="44" height="26" rx="3" fill="#444" stroke="#666" stroke-width="1"/>
|
||||||
|
<text x="72" y="315" fill="#eee" font-family="DejaVu Sans,Liberation Sans,Arial,sans-serif" font-size="11">Try</text>
|
||||||
|
<rect x="112" y="298" width="56" height="26" rx="3" fill="#444" stroke="#666" stroke-width="1"/>
|
||||||
|
<text x="120" y="315" fill="#eee" font-family="DejaVu Sans,Liberation Sans,Arial,sans-serif" font-size="11">Default</text>
|
||||||
|
<rect x="176" y="298" width="88" height="26" rx="3" fill="#3d5a80" stroke="#5a7ab8" stroke-width="1"/>
|
||||||
|
<text x="188" y="315" fill="#fff" font-family="DejaVu Sans,Liberation Sans,Arial,sans-serif" font-size="11">Save+Send</text>
|
||||||
|
<rect x="272" y="298" width="48" height="26" rx="3" fill="#444" stroke="#666" stroke-width="1"/>
|
||||||
|
<text x="284" y="315" fill="#eee" font-family="DejaVu Sans,Liberation Sans,Arial,sans-serif" font-size="11">Close</text>
|
||||||
|
<text x="60" y="352" fill="#888" font-family="DejaVu Sans,Liberation Sans,Arial,sans-serif" font-size="9">Try: preview without device save. Save+Send: store and push with save.</text>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 3.3 KiB |
15
src/static/images/help/profiles.svg
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 520 200" width="520" height="200">
|
||||||
|
<title>Profiles modal</title>
|
||||||
|
<rect width="520" height="200" fill="#1e1e1e"/>
|
||||||
|
<rect x="40" y="20" width="440" height="160" rx="8" fill="#2a2a2a" stroke="#555" stroke-width="1"/>
|
||||||
|
<text x="60" y="48" fill="#fff" font-family="sans-serif" font-size="16" font-weight="600">Profiles</text>
|
||||||
|
<rect x="60" y="62" width="48" height="26" rx="3" fill="#4a4a6a" stroke="#7a7aaf" stroke-width="1"/>
|
||||||
|
<text x="72" y="79" fill="#eee" font-family="sans-serif" font-size="11">Apply</text>
|
||||||
|
<rect x="116" y="62" width="52" height="26" rx="3" fill="#3d3d3d" stroke="#555" stroke-width="1"/>
|
||||||
|
<text x="126" y="79" fill="#eee" font-family="sans-serif" font-size="11">Create</text>
|
||||||
|
<text x="60" y="108" fill="#ccc" font-family="sans-serif" font-size="12">Garden party</text>
|
||||||
|
<text x="360" y="108" fill="#888" font-family="sans-serif" font-size="10">Clone / Delete</text>
|
||||||
|
<text x="60" y="136" fill="#ccc" font-family="sans-serif" font-size="12">House default</text>
|
||||||
|
<text x="360" y="136" fill="#6a9ee2" font-family="sans-serif" font-size="10">active</text>
|
||||||
|
<text x="60" y="168" fill="#888" font-family="sans-serif" font-size="10">Apply switches zones and presets for this profile.</text>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.3 KiB |
18
src/static/images/help/sequences.svg
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 520 200" width="520" height="200">
|
||||||
|
<title>Sequence editor</title>
|
||||||
|
<rect width="520" height="200" fill="#1e1e1e"/>
|
||||||
|
<rect x="40" y="16" width="440" height="168" rx="8" fill="#2a2a2a" stroke="#555" stroke-width="1"/>
|
||||||
|
<text x="60" y="44" fill="#fff" font-family="sans-serif" font-size="16" font-weight="600">Sequence</text>
|
||||||
|
<text x="60" y="68" fill="#aaa" font-family="sans-serif" font-size="10">Lane 1 - lounge lights</text>
|
||||||
|
<rect x="60" y="74" width="56" height="28" rx="3" fill="#4a3a6a" stroke="#7a6aaf" stroke-width="1"/>
|
||||||
|
<text x="72" y="92" fill="#eee" font-family="sans-serif" font-size="9">step 1</text>
|
||||||
|
<rect x="122" y="74" width="56" height="28" rx="3" fill="#3d3d3d" stroke="#555" stroke-width="1"/>
|
||||||
|
<text x="134" y="92" fill="#eee" font-family="sans-serif" font-size="9">step 2</text>
|
||||||
|
<rect x="184" y="74" width="56" height="28" rx="3" fill="#3d3d3d" stroke="#555" stroke-width="1"/>
|
||||||
|
<text x="196" y="92" fill="#eee" font-family="sans-serif" font-size="9">step 3</text>
|
||||||
|
<text x="60" y="124" fill="#aaa" font-family="sans-serif" font-size="10">Lane 2 - dj booth</text>
|
||||||
|
<rect x="60" y="130" width="56" height="28" rx="3" fill="#3d3d3d" stroke="#555" stroke-width="1"/>
|
||||||
|
<text x="72" y="148" fill="#eee" font-family="sans-serif" font-size="9">step 1</text>
|
||||||
|
<text x="300" y="44" fill="#888" font-family="sans-serif" font-size="9">Beat / Downbeat</text>
|
||||||
|
<text x="60" y="176" fill="#888" font-family="sans-serif" font-size="9">Add lanes - assign presets per step - attach in zone editor.</text>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
18
src/static/images/help/settings.svg
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 520 200" width="520" height="200">
|
||||||
|
<title>Settings modal</title>
|
||||||
|
<rect width="520" height="200" fill="#1e1e1e"/>
|
||||||
|
<rect x="40" y="16" width="440" height="168" rx="8" fill="#2a2a2a" stroke="#555" stroke-width="1"/>
|
||||||
|
<text x="60" y="44" fill="#fff" font-family="sans-serif" font-size="16" font-weight="600">Settings</text>
|
||||||
|
<rect x="60" y="52" width="56" height="24" rx="3" fill="#1a1a1a" stroke="#6a5acd" stroke-width="2"/>
|
||||||
|
<text x="72" y="68" fill="#fff" font-family="sans-serif" font-size="10">Bridge</text>
|
||||||
|
<rect x="122" y="52" width="64" height="24" rx="3" fill="#3d3d3d" stroke="#555" stroke-width="1"/>
|
||||||
|
<text x="132" y="68" fill="#ccc" font-family="sans-serif" font-size="10">LED Tool</text>
|
||||||
|
<text x="60" y="100" fill="#aaa" font-family="sans-serif" font-size="10">USB serial</text>
|
||||||
|
<rect x="60" y="106" width="160" height="22" rx="3" fill="#1a1a1a" stroke="#444" stroke-width="1"/>
|
||||||
|
<text x="68" y="121" fill="#bbb" font-family="sans-serif" font-size="9">/dev/ttyUSB0</text>
|
||||||
|
<text x="60" y="144" fill="#aaa" font-family="sans-serif" font-size="10">Wi-Fi</text>
|
||||||
|
<rect x="60" y="150" width="120" height="22" rx="3" fill="#1a1a1a" stroke="#444" stroke-width="1"/>
|
||||||
|
<text x="68" y="165" fill="#bbb" font-family="sans-serif" font-size="9">Bridge-AP</text>
|
||||||
|
<text x="240" y="121" fill="#6a9e6a" font-family="sans-serif" font-size="9">connected</text>
|
||||||
|
<text x="240" y="165" fill="#888" font-family="sans-serif" font-size="9">LED Tool: deploy - flash - serial setup</text>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.5 KiB |
35
src/static/images/help/tab-preset-strip.svg
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 220" width="800" height="220">
|
||||||
|
<title>Main area: brightness and preset tiles</title>
|
||||||
|
<defs>
|
||||||
|
<linearGradient id="rg1" x1="0%" y1="0%" x2="100%" y2="0%">
|
||||||
|
<stop offset="0%" style="stop-color:#ffd54f"/><stop offset="100%" style="stop-color:#fff8e1"/>
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient id="rg2" x1="0%" y1="0%" x2="100%" y2="0%">
|
||||||
|
<stop offset="0%" style="stop-color:#e53935"/><stop offset="33%" style="stop-color:#fdd835"/>
|
||||||
|
<stop offset="66%" style="stop-color:#43a047"/><stop offset="100%" style="stop-color:#1e88e5"/>
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient id="rg3" x1="0%" y1="0%" x2="100%" y2="0%">
|
||||||
|
<stop offset="0%" style="stop-color:#00897b"/><stop offset="100%" style="stop-color:#4db6ac"/>
|
||||||
|
</linearGradient>
|
||||||
|
</defs>
|
||||||
|
<rect width="800" height="220" fill="#2e2e2e"/>
|
||||||
|
<text x="20" y="32" fill="#fff" font-family="sans-serif" font-size="16" font-weight="600">lounge</text>
|
||||||
|
<text x="20" y="56" fill="#aaa" font-family="sans-serif" font-size="11">Brightness (global)</text>
|
||||||
|
<rect x="20" y="64" width="320" height="8" rx="4" fill="#444"/>
|
||||||
|
<rect x="20" y="64" width="200" height="8" rx="4" fill="#6a9ee2"/>
|
||||||
|
<circle cx="220" cy="68" r="10" fill="#ccc" stroke="#333" stroke-width="1"/>
|
||||||
|
<text x="360" y="74" fill="#888" font-family="sans-serif" font-size="11">drag to adjust</text>
|
||||||
|
<text x="20" y="108" fill="#aaa" font-family="sans-serif" font-size="11">Click tile body to select on tab devices</text>
|
||||||
|
<rect x="20" y="118" width="200" height="72" rx="6" fill="#252525" stroke="#555" stroke-width="1"/>
|
||||||
|
<rect x="28" y="128" width="184" height="36" rx="4" fill="url(#rg1)"/>
|
||||||
|
<text x="32" y="180" fill="#eee" font-family="sans-serif" font-size="13" font-weight="600">warm white</text>
|
||||||
|
<rect x="232" y="118" width="200" height="72" rx="6" fill="#252525" stroke="#6a9ee2" stroke-width="2"/>
|
||||||
|
<rect x="240" y="128" width="184" height="36" rx="4" fill="url(#rg2)"/>
|
||||||
|
<text x="244" y="180" fill="#eee" font-family="sans-serif" font-size="13" font-weight="600">rainbow</text>
|
||||||
|
<rect x="444" y="118" width="200" height="72" rx="6" fill="#252525" stroke="#555" stroke-width="1"/>
|
||||||
|
<rect x="452" y="128" width="184" height="36" rx="4" fill="url(#rg3)"/>
|
||||||
|
<text x="456" y="180" fill="#eee" font-family="sans-serif" font-size="13" font-weight="600">chase</text>
|
||||||
|
<rect x="656" y="130" width="56" height="48" rx="4" fill="#3d3d3d" stroke="#555" stroke-width="1"/>
|
||||||
|
<text x="670" y="158" fill="#ddd" font-family="sans-serif" font-size="11">Edit</text>
|
||||||
|
<text x="656" y="198" fill="#888" font-family="sans-serif" font-size="10">Edit mode: drag tiles to reorder</text>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.6 KiB |
18
src/static/images/help/zones.svg
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 520 240" width="520" height="240">
|
||||||
|
<title>Zones editor</title>
|
||||||
|
<rect width="520" height="240" fill="#1e1e1e"/>
|
||||||
|
<rect x="40" y="16" width="440" height="208" rx="8" fill="#2a2a2a" stroke="#555" stroke-width="1"/>
|
||||||
|
<text x="60" y="44" fill="#fff" font-family="sans-serif" font-size="16" font-weight="600">Edit zone</text>
|
||||||
|
<text x="60" y="72" fill="#aaa" font-family="sans-serif" font-size="10">Device groups on this zone</text>
|
||||||
|
<rect x="60" y="78" width="100" height="22" rx="3" fill="#333" stroke="#666" stroke-width="1"/>
|
||||||
|
<text x="72" y="93" fill="#ccc" font-family="sans-serif" font-size="10">lounge lights</text>
|
||||||
|
<text x="60" y="118" fill="#aaa" font-family="sans-serif" font-size="10">Presets on this zone</text>
|
||||||
|
<rect x="60" y="124" width="72" height="36" rx="4" fill="#3d3d3d" stroke="#666" stroke-width="1"/>
|
||||||
|
<text x="72" y="147" fill="#eee" font-family="sans-serif" font-size="10">warm</text>
|
||||||
|
<rect x="140" y="124" width="72" height="36" rx="4" fill="#3d3d3d" stroke="#666" stroke-width="1"/>
|
||||||
|
<text x="148" y="147" fill="#eee" font-family="sans-serif" font-size="10">pulse</text>
|
||||||
|
<text x="60" y="178" fill="#aaa" font-family="sans-serif" font-size="10">Sequences on this zone</text>
|
||||||
|
<rect x="60" y="184" width="120" height="28" rx="4" fill="#2a4a3a" stroke="#5a8f6a" stroke-width="1"/>
|
||||||
|
<text x="72" y="202" fill="#cfe" font-family="sans-serif" font-size="10">intro build</text>
|
||||||
|
<text x="60" y="228" fill="#888" font-family="sans-serif" font-size="9">Drag presets to reorder - presets and sequences can share a zone.</text>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -1,22 +0,0 @@
|
|||||||
document.addEventListener('DOMContentLoaded', () => {
|
|
||||||
const openBtn = document.getElementById('led-tool-btn');
|
|
||||||
const modal = document.getElementById('led-tool-modal');
|
|
||||||
const closeBtn = document.getElementById('led-tool-close-btn');
|
|
||||||
const iframe = document.getElementById('led-tool-iframe');
|
|
||||||
|
|
||||||
if (!openBtn || !modal || !iframe) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
openBtn.addEventListener('click', () => {
|
|
||||||
iframe.src = '/led-tool/editor';
|
|
||||||
modal.classList.add('active');
|
|
||||||
});
|
|
||||||
|
|
||||||
if (closeBtn) {
|
|
||||||
closeBtn.addEventListener('click', () => {
|
|
||||||
modal.classList.remove('active');
|
|
||||||
iframe.src = 'about:blank';
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
@@ -98,24 +98,8 @@ document.addEventListener('DOMContentLoaded', () => {
|
|||||||
: [];
|
: [];
|
||||||
};
|
};
|
||||||
|
|
||||||
const postDriverSequence = async (sequence, targetMacs, delayS = 0.05) => {
|
const postDriverSequence = (sequence, targetMacs, delayS, pushOptions) =>
|
||||||
const body = {
|
window.postDriverSequence(sequence, targetMacs, delayS, pushOptions);
|
||||||
sequence,
|
|
||||||
targets: Array.isArray(targetMacs) && targetMacs.length ? [...new Set(targetMacs)] : undefined,
|
|
||||||
delay_s: delayS,
|
|
||||||
};
|
|
||||||
const res = await fetch('/presets/push', {
|
|
||||||
method: 'POST',
|
|
||||||
headers: { 'Content-Type': 'application/json', Accept: 'application/json' },
|
|
||||||
credentials: 'same-origin',
|
|
||||||
body: JSON.stringify(body),
|
|
||||||
});
|
|
||||||
if (!res.ok) {
|
|
||||||
const err = await res.json().catch(() => ({}));
|
|
||||||
throw new Error((err && err.error) || res.statusText || 'Send failed');
|
|
||||||
}
|
|
||||||
return res.json().catch(() => ({}));
|
|
||||||
};
|
|
||||||
|
|
||||||
const nReadableStringFromMeta = (meta, key) => {
|
const nReadableStringFromMeta = (meta, key) => {
|
||||||
if (!meta || typeof meta !== 'object') {
|
if (!meta || typeof meta !== 'object') {
|
||||||
@@ -284,10 +268,6 @@ document.addEventListener('DOMContentLoaded', () => {
|
|||||||
throw new Error((data && data.error) || 'Create failed');
|
throw new Error((data && data.error) || 'Create failed');
|
||||||
}
|
}
|
||||||
alert(data.message || 'Pattern created.');
|
alert(data.message || 'Pattern created.');
|
||||||
resetCreateForm();
|
|
||||||
if (patternEditorModal) {
|
|
||||||
patternEditorModal.classList.remove('active');
|
|
||||||
}
|
|
||||||
await loadPatterns();
|
await loadPatterns();
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.error('Create pattern failed:', e);
|
console.error('Create pattern failed:', e);
|
||||||
@@ -586,26 +566,28 @@ document.addEventListener('DOMContentLoaded', () => {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const select = {};
|
const groupIds =
|
||||||
deviceNames.forEach((name) => {
|
typeof window.zonesManager !== 'undefined' &&
|
||||||
if (name) {
|
typeof window.zonesManager.effectiveGroupIdsForZonePreset === 'function'
|
||||||
select[name] = zonePresetIds.slice();
|
? window.zonesManager.effectiveGroupIdsForZonePreset(zoneData)
|
||||||
}
|
: Array.isArray(zoneData.group_ids)
|
||||||
});
|
? zoneData.group_ids.map((g) => String(g).trim()).filter((g) => g.length > 0)
|
||||||
const targetMacs =
|
|
||||||
typeof window.tabsManager !== 'undefined' &&
|
|
||||||
typeof window.tabsManager.resolveTabDeviceMacs === 'function'
|
|
||||||
? await window.tabsManager.resolveTabDeviceMacs(deviceNames)
|
|
||||||
: [];
|
: [];
|
||||||
|
|
||||||
const sequence = [
|
const sequence = [
|
||||||
{ v: '1', clear_presets: true, save: true },
|
{ v: '1', clear_presets: true, save: true },
|
||||||
{ v: '1', presets: wirePresets, save: true },
|
{ v: '1', presets: wirePresets, save: true },
|
||||||
];
|
];
|
||||||
if (Object.keys(select).length) {
|
if (groupIds.length) {
|
||||||
sequence.push({ v: '1', select });
|
sequence[0].groups = groupIds;
|
||||||
|
sequence[1].groups = groupIds;
|
||||||
}
|
}
|
||||||
await postDriverSequence(sequence, targetMacs, 0.05);
|
if (deviceNames.length > 0 && zonePresetIds.length > 0) {
|
||||||
|
const sel = { v: '1', select: zonePresetIds.slice() };
|
||||||
|
if (groupIds.length) sel.groups = groupIds;
|
||||||
|
sequence.push(sel);
|
||||||
|
}
|
||||||
|
await postDriverSequence(sequence, [], 0.05, { groupIds });
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error('Send all patterns failed:', error);
|
console.error('Send all patterns failed:', error);
|
||||||
alert('Failed to send all patterns.');
|
alert('Failed to send all patterns.');
|
||||||
|
|||||||
@@ -176,6 +176,17 @@ function tabDeviceNamesFromSection(section) {
|
|||||||
: [];
|
: [];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** Group ids for preset broadcast targeting on a zone tab. */
|
||||||
|
function zoneGroupIdsFromTabData(tabData) {
|
||||||
|
const zm = window.zonesManager;
|
||||||
|
if (zm && typeof zm.effectiveGroupIdsForZonePreset === 'function') {
|
||||||
|
return zm.effectiveGroupIdsForZonePreset(tabData || {});
|
||||||
|
}
|
||||||
|
return Array.isArray(tabData && tabData.group_ids)
|
||||||
|
? tabData.group_ids.map((g) => String(g).trim()).filter((g) => g.length > 0)
|
||||||
|
: [];
|
||||||
|
}
|
||||||
|
|
||||||
/** Device names for ``presetId`` on the current zone tab (zone ``group_ids`` for presets, else tab devices). */
|
/** Device names for ``presetId`` on the current zone tab (zone ``group_ids`` for presets, else tab devices). */
|
||||||
async function deviceNamesForPresetOnCurrentZone(presetId) {
|
async function deviceNamesForPresetOnCurrentZone(presetId) {
|
||||||
const section = document.querySelector('.presets-section[data-zone-id]');
|
const section = document.querySelector('.presets-section[data-zone-id]');
|
||||||
@@ -216,8 +227,13 @@ function formatPresetTargetGroupsLine(zoneDoc, groupsMap) {
|
|||||||
async function postDriverSequence(sequence, targetMacs, delayS, pushOptions) {
|
async function postDriverSequence(sequence, targetMacs, delayS, pushOptions) {
|
||||||
const body = {
|
const body = {
|
||||||
sequence,
|
sequence,
|
||||||
targets: Array.isArray(targetMacs) && targetMacs.length ? [...new Set(targetMacs)] : undefined,
|
|
||||||
};
|
};
|
||||||
|
if (pushOptions && pushOptions.unicast === true) {
|
||||||
|
body.unicast = true;
|
||||||
|
if (Array.isArray(targetMacs) && targetMacs.length) {
|
||||||
|
body.targets = [...new Set(targetMacs)];
|
||||||
|
}
|
||||||
|
}
|
||||||
if (delayS != null && delayS >= 0) {
|
if (delayS != null && delayS >= 0) {
|
||||||
body.delay_s = delayS;
|
body.delay_s = delayS;
|
||||||
}
|
}
|
||||||
@@ -1184,12 +1200,6 @@ document.addEventListener('DOMContentLoaded', () => {
|
|||||||
const label = document.createElement('span');
|
const label = document.createElement('span');
|
||||||
label.textContent = (preset && preset.name) || presetId;
|
label.textContent = (preset && preset.name) || presetId;
|
||||||
|
|
||||||
const details = document.createElement('span');
|
|
||||||
const pattern = preset && preset.pattern ? preset.pattern : '-';
|
|
||||||
details.textContent = pattern;
|
|
||||||
details.style.color = '#aaa';
|
|
||||||
details.style.fontSize = '0.85em';
|
|
||||||
|
|
||||||
const editButton = document.createElement('button');
|
const editButton = document.createElement('button');
|
||||||
editButton.className = 'btn btn-secondary btn-small';
|
editButton.className = 'btn btn-secondary btn-small';
|
||||||
editButton.textContent = 'Edit';
|
editButton.textContent = 'Edit';
|
||||||
@@ -1219,26 +1229,6 @@ document.addEventListener('DOMContentLoaded', () => {
|
|||||||
void sendPresetViaEspNow(presetId, preset || {}, []);
|
void sendPresetViaEspNow(presetId, preset || {}, []);
|
||||||
});
|
});
|
||||||
|
|
||||||
const exportButton = document.createElement('button');
|
|
||||||
exportButton.className = 'btn btn-secondary btn-small';
|
|
||||||
exportButton.textContent = 'Export';
|
|
||||||
exportButton.addEventListener('click', async () => {
|
|
||||||
try {
|
|
||||||
const response = await fetch(`/presets/${presetId}/export`, {
|
|
||||||
headers: { Accept: 'application/json' },
|
|
||||||
});
|
|
||||||
if (!response.ok) {
|
|
||||||
throw new Error('Export failed');
|
|
||||||
}
|
|
||||||
const bundle = await response.json();
|
|
||||||
const safeName = ((preset && preset.name) || presetId).replace(/[^\w.-]+/g, '_');
|
|
||||||
window.downloadJsonFile(`preset-${safeName}.json`, bundle);
|
|
||||||
} catch (error) {
|
|
||||||
console.error('Export preset failed:', error);
|
|
||||||
alert('Failed to export preset.');
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
const deleteButton = document.createElement('button');
|
const deleteButton = document.createElement('button');
|
||||||
deleteButton.className = 'btn btn-danger btn-small';
|
deleteButton.className = 'btn btn-danger btn-small';
|
||||||
deleteButton.textContent = 'Delete';
|
deleteButton.textContent = 'Delete';
|
||||||
@@ -1266,9 +1256,7 @@ document.addEventListener('DOMContentLoaded', () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
row.appendChild(label);
|
row.appendChild(label);
|
||||||
row.appendChild(details);
|
|
||||||
row.appendChild(editButton);
|
row.appendChild(editButton);
|
||||||
row.appendChild(exportButton);
|
|
||||||
row.appendChild(sendButton);
|
row.appendChild(sendButton);
|
||||||
row.appendChild(deleteButton);
|
row.appendChild(deleteButton);
|
||||||
presetsList.appendChild(row);
|
presetsList.appendChild(row);
|
||||||
@@ -1361,12 +1349,17 @@ document.addEventListener('DOMContentLoaded', () => {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
const targetMacs =
|
const zoneId = section && section.dataset.zoneId;
|
||||||
typeof window.tabsManager !== 'undefined' &&
|
let groupIds = [];
|
||||||
typeof window.tabsManager.resolveTabDeviceMacs === 'function'
|
if (zoneId) {
|
||||||
? await window.tabsManager.resolveTabDeviceMacs(deviceNames)
|
const zr = await fetch(`/zones/${zoneId}`, { headers: { Accept: 'application/json' } });
|
||||||
: [];
|
if (zr.ok) {
|
||||||
await postDriverSequence([{ v: '1', clear_presets: true, save: true }], targetMacs);
|
groupIds = zoneGroupIdsFromTabData(await zr.json());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
const clearMsg = { v: '1', clear_presets: true, save: true };
|
||||||
|
if (groupIds.length) clearMsg.groups = groupIds;
|
||||||
|
await postDriverSequence([clearMsg], [], 0.05, { groupIds });
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error('Clear device presets failed:', error);
|
console.error('Clear device presets failed:', error);
|
||||||
alert('Failed to clear presets on devices.');
|
alert('Failed to clear presets on devices.');
|
||||||
@@ -1394,22 +1387,6 @@ document.addEventListener('DOMContentLoaded', () => {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
|
||||||
const zoneCheck = await fetch(`/zones/${zoneId}`, { headers: { Accept: 'application/json' } });
|
|
||||||
if (zoneCheck.ok) {
|
|
||||||
const zoneDoc = await zoneCheck.json();
|
|
||||||
if (
|
|
||||||
typeof window.zoneAllowsPresets === 'function' &&
|
|
||||||
!window.zoneAllowsPresets(zoneDoc, zoneId)
|
|
||||||
) {
|
|
||||||
alert('This zone is for sequences only. Add a sequence from the zone Edit menu instead.');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} catch (e) {
|
|
||||||
console.warn('Could not verify zone content kind:', e);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Load all presets
|
// Load all presets
|
||||||
try {
|
try {
|
||||||
const response = await fetch('/presets', {
|
const response = await fetch('/presets', {
|
||||||
@@ -1449,12 +1426,14 @@ document.addEventListener('DOMContentLoaded', () => {
|
|||||||
modal.id = 'add-preset-to-zone-modal';
|
modal.id = 'add-preset-to-zone-modal';
|
||||||
modal.innerHTML = `
|
modal.innerHTML = `
|
||||||
<div class="modal-content">
|
<div class="modal-content">
|
||||||
|
<div class="modal-head">
|
||||||
<h2>Add Preset to Zone</h2>
|
<h2>Add Preset to Zone</h2>
|
||||||
<div id="add-preset-list" class="profiles-list" style="max-height: 400px; overflow-y: auto;"></div>
|
<div class="modal-top-actions">
|
||||||
<div class="modal-actions">
|
|
||||||
<button class="btn btn-secondary" id="add-preset-to-zone-close-btn">Close</button>
|
<button class="btn btn-secondary" id="add-preset-to-zone-close-btn">Close</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div id="add-preset-list" class="profiles-list" style="max-height: 400px; overflow-y: auto;"></div>
|
||||||
|
</div>
|
||||||
`;
|
`;
|
||||||
|
|
||||||
document.body.appendChild(modal);
|
document.body.appendChild(modal);
|
||||||
@@ -1538,13 +1517,6 @@ document.addEventListener('DOMContentLoaded', () => {
|
|||||||
throw new Error('Failed to load zone');
|
throw new Error('Failed to load zone');
|
||||||
}
|
}
|
||||||
const tabData = await tabResponse.json();
|
const tabData = await tabResponse.json();
|
||||||
if (
|
|
||||||
typeof window.zoneAllowsPresets === 'function' &&
|
|
||||||
!window.zoneAllowsPresets(tabData, zoneId)
|
|
||||||
) {
|
|
||||||
alert('This zone is for sequences only. Add a sequence from the zone Edit menu instead.');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Normalize to flat array to check and update usage
|
// Normalize to flat array to check and update usage
|
||||||
let flat = [];
|
let flat = [];
|
||||||
@@ -1665,12 +1637,14 @@ document.addEventListener('DOMContentLoaded', () => {
|
|||||||
modal.className = 'modal active modal-child-overlay';
|
modal.className = 'modal active modal-child-overlay';
|
||||||
modal.innerHTML = `
|
modal.innerHTML = `
|
||||||
<div class="modal-content">
|
<div class="modal-content">
|
||||||
|
<div class="modal-head">
|
||||||
<h2>Pick Palette Color</h2>
|
<h2>Pick Palette Color</h2>
|
||||||
<div id="pick-palette-list" class="profiles-list" style="max-height: 300px; overflow-y: auto;"></div>
|
<div class="modal-top-actions">
|
||||||
<div class="modal-actions">
|
|
||||||
<button class="btn btn-secondary" id="pick-palette-close-btn">Close</button>
|
<button class="btn btn-secondary" id="pick-palette-close-btn">Close</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div id="pick-palette-list" class="profiles-list" style="max-height: 300px; overflow-y: auto;"></div>
|
||||||
|
</div>
|
||||||
`;
|
`;
|
||||||
document.body.appendChild(modal);
|
document.body.appendChild(modal);
|
||||||
|
|
||||||
@@ -1734,12 +1708,14 @@ document.addEventListener('DOMContentLoaded', () => {
|
|||||||
modal.className = 'modal active modal-child-overlay';
|
modal.className = 'modal active modal-child-overlay';
|
||||||
modal.innerHTML = `
|
modal.innerHTML = `
|
||||||
<div class="modal-content">
|
<div class="modal-content">
|
||||||
|
<div class="modal-head">
|
||||||
<h2>Pick background colour</h2>
|
<h2>Pick background colour</h2>
|
||||||
<div id="pick-bg-palette-list" class="profiles-list" style="max-height: 300px; overflow-y: auto;"></div>
|
<div class="modal-top-actions">
|
||||||
<div class="modal-actions">
|
|
||||||
<button class="btn btn-secondary" id="pick-bg-palette-close-btn">Close</button>
|
<button class="btn btn-secondary" id="pick-bg-palette-close-btn">Close</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div id="pick-bg-palette-list" class="profiles-list" style="max-height: 300px; overflow-y: auto;"></div>
|
||||||
|
</div>
|
||||||
`;
|
`;
|
||||||
document.body.appendChild(modal);
|
document.body.appendChild(modal);
|
||||||
|
|
||||||
@@ -1845,32 +1821,15 @@ document.addEventListener('DOMContentLoaded', () => {
|
|||||||
throw new Error('Failed to save preset');
|
throw new Error('Failed to save preset');
|
||||||
}
|
}
|
||||||
|
|
||||||
// Same device targeting as Try: per-preset zone groups when in a zone tab.
|
|
||||||
const presetIdForSend = currentEditId || payload.name;
|
|
||||||
const deviceNames = await deviceNamesForPresetOnCurrentZone(presetIdForSend);
|
|
||||||
|
|
||||||
// Use saved preset from server response for sending
|
|
||||||
const saved = await response.json().catch(() => null);
|
const saved = await response.json().catch(() => null);
|
||||||
if (saved && typeof saved === 'object') {
|
if (!currentEditId && saved && typeof saved === 'object') {
|
||||||
if (currentEditId) {
|
|
||||||
// PUT returns the preset object directly; use the existing ID
|
|
||||||
await sendPresetViaEspNow(currentEditId, saved, deviceNames, false, false, '2');
|
|
||||||
} else {
|
|
||||||
// POST returns { id: preset }
|
|
||||||
const entries = Object.entries(saved);
|
const entries = Object.entries(saved);
|
||||||
if (entries.length > 0) {
|
if (entries.length > 0) {
|
||||||
const [newId, presetData] = entries[0];
|
currentEditId = entries[0][0];
|
||||||
await sendPresetViaEspNow(newId, presetData, deviceNames, false, false, '2');
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
// Fallback: send what we just built
|
|
||||||
await sendPresetViaEspNow(currentEditId || payload.name, payload, deviceNames, false, false, '2');
|
|
||||||
}
|
|
||||||
|
|
||||||
await loadPresets();
|
await loadPresets();
|
||||||
clearForm();
|
|
||||||
closeEditor();
|
|
||||||
|
|
||||||
// Reload zone presets if we're in a zone view
|
// Reload zone presets if we're in a zone view
|
||||||
const leftPanel = document.querySelector('.presets-section[data-zone-id]');
|
const leftPanel = document.querySelector('.presets-section[data-zone-id]');
|
||||||
@@ -2040,29 +1999,23 @@ const sendPresetViaEspNow = async (
|
|||||||
presetMessage.default = wirePresetId;
|
presetMessage.default = wirePresetId;
|
||||||
}
|
}
|
||||||
|
|
||||||
const names = Array.isArray(deviceNames) ? deviceNames : [];
|
const forceSelect = pushOptions && pushOptions.select === true;
|
||||||
const targetMacs =
|
const shouldSelect =
|
||||||
names.length > 0 &&
|
forceSelect || (pushOptions && pushOptions.select === false ? false : presetAuto);
|
||||||
typeof window.tabsManager !== 'undefined' &&
|
// Apply on driver in the same message as presets (split on bridge keeps presets before select).
|
||||||
typeof window.tabsManager.resolveTabDeviceMacs === 'function'
|
if (shouldSelect) {
|
||||||
? await window.tabsManager.resolveTabDeviceMacs(names)
|
presetMessage.select = [wirePresetId];
|
||||||
|
}
|
||||||
|
|
||||||
|
const groupIds =
|
||||||
|
pushOptions && Array.isArray(pushOptions.groupIds)
|
||||||
|
? pushOptions.groupIds.map((g) => String(g).trim()).filter((g) => g.length > 0)
|
||||||
: [];
|
: [];
|
||||||
|
if (groupIds.length > 0) {
|
||||||
const sequence = [presetMessage];
|
presetMessage.groups = groupIds;
|
||||||
// Auto: apply preset immediately via select. Manual: load definition only — first step is on the next audio beat.
|
|
||||||
if (names.length > 0 && presetAuto) {
|
|
||||||
const select = {};
|
|
||||||
names.forEach((name) => {
|
|
||||||
if (name) {
|
|
||||||
select[name] = [wirePresetId];
|
|
||||||
}
|
|
||||||
});
|
|
||||||
if (Object.keys(select).length > 0) {
|
|
||||||
sequence.push({ v: '1', select });
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
await postDriverSequence(sequence, targetMacs, 0.05, pushOptions);
|
await postDriverSequence([presetMessage], [], 0.05, pushOptions);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error('Failed to send preset to devices:', error);
|
console.error('Failed to send preset to devices:', error);
|
||||||
alert('Failed to send preset to devices.');
|
alert('Failed to send preset to devices.');
|
||||||
@@ -2106,24 +2059,20 @@ const sendPresetSelectViaEspNow = async (presetId, deviceNames) => {
|
|||||||
if (!nameTargets.length) {
|
if (!nameTargets.length) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const select = {};
|
|
||||||
nameTargets.forEach((name) => {
|
|
||||||
select[name] = [String(presetId)];
|
|
||||||
});
|
|
||||||
const macTargets =
|
const macTargets =
|
||||||
nameTargets.length > 0 &&
|
nameTargets.length > 0 &&
|
||||||
typeof window.tabsManager !== 'undefined' &&
|
typeof window.tabsManager !== 'undefined' &&
|
||||||
typeof window.tabsManager.resolveTabDeviceMacs === 'function'
|
typeof window.tabsManager.resolveTabDeviceMacs === 'function'
|
||||||
? await window.tabsManager.resolveTabDeviceMacs(nameTargets)
|
? await window.tabsManager.resolveTabDeviceMacs(nameTargets)
|
||||||
: [];
|
: [];
|
||||||
await postDriverSequence([{ v: '1', select }], macTargets);
|
await postDriverSequence([{ v: '1', select: [String(presetId)] }], macTargets);
|
||||||
};
|
};
|
||||||
|
|
||||||
// Expose for other scripts (zones.js) so they can reuse the shared WebSocket.
|
// Expose for other scripts (zones.js) so they can reuse the shared WebSocket.
|
||||||
try {
|
try {
|
||||||
window.sendPresetViaEspNow = sendPresetViaEspNow;
|
window.sendPresetViaEspNow = sendPresetViaEspNow;
|
||||||
window.postDriverSequence = postDriverSequence;
|
window.postDriverSequence = postDriverSequence;
|
||||||
// Expose a generic ESPNow sender so other scripts (zones.js) can send
|
// Expose a generic ESP-NOW bridge helper so other scripts (zones.js) can send
|
||||||
// non-preset messages such as global brightness.
|
// non-preset messages such as global brightness.
|
||||||
window.sendEspnowRaw = sendEspnowMessage;
|
window.sendEspnowRaw = sendEspnowMessage;
|
||||||
window.getEspnowSocket = getEspnowSocket;
|
window.getEspnowSocket = getEspnowSocket;
|
||||||
@@ -2168,24 +2117,45 @@ async function sendZonePresetSelection(zoneId, tabData, presetId, preset, allPre
|
|||||||
const pid = String(presetId);
|
const pid = String(presetId);
|
||||||
const body = (allPresets && allPresets[pid]) || preset;
|
const body = (allPresets && allPresets[pid]) || preset;
|
||||||
if (!body) return;
|
if (!body) return;
|
||||||
|
const zm = window.zonesManager;
|
||||||
const names =
|
const names =
|
||||||
window.zonesManager && typeof window.zonesManager.resolveDeviceNamesForZonePreset === 'function'
|
zm && typeof zm.resolveDeviceNamesForZonePreset === 'function'
|
||||||
? await window.zonesManager.resolveDeviceNamesForZonePreset(tabData, pid)
|
? await zm.resolveDeviceNamesForZonePreset(tabData, pid)
|
||||||
: [];
|
: [];
|
||||||
await sendPresetViaEspNow(pid, body, names, false, false, '2');
|
const groupIds = zoneGroupIdsFromTabData(tabData);
|
||||||
|
await sendPresetViaEspNow(pid, body, names, false, false, '2', {
|
||||||
|
select: true,
|
||||||
|
groupIds,
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
// Store selected preset per zone
|
// Store selected preset per zone
|
||||||
const selectedPresets = {};
|
const selectedPresets = {};
|
||||||
// Store selected preset payload per zone for beat-trigger reliability.
|
// Store selected preset payload per zone for beat-trigger reliability.
|
||||||
const selectedPresetPayloads = {};
|
const selectedPresetPayloads = {};
|
||||||
// Run vs Edit for zone preset strip (in-memory only — each full page load starts in run mode)
|
const PRESET_UI_MODE_STORAGE_KEY = 'led-controller-ui-mode';
|
||||||
let presetUiMode = 'run';
|
|
||||||
|
function readStoredPresetUiMode() {
|
||||||
|
try {
|
||||||
|
const stored = localStorage.getItem(PRESET_UI_MODE_STORAGE_KEY);
|
||||||
|
return stored === 'edit' ? 'edit' : 'run';
|
||||||
|
} catch (_) {
|
||||||
|
return 'run';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Run vs Edit for zone preset strip (restored from localStorage on load)
|
||||||
|
let presetUiMode = readStoredPresetUiMode();
|
||||||
|
|
||||||
const getPresetUiMode = () => (presetUiMode === 'edit' ? 'edit' : 'run');
|
const getPresetUiMode = () => (presetUiMode === 'edit' ? 'edit' : 'run');
|
||||||
|
|
||||||
const setPresetUiMode = (mode) => {
|
const setPresetUiMode = (mode) => {
|
||||||
presetUiMode = mode === 'edit' ? 'edit' : 'run';
|
presetUiMode = mode === 'edit' ? 'edit' : 'run';
|
||||||
|
try {
|
||||||
|
localStorage.setItem(PRESET_UI_MODE_STORAGE_KEY, presetUiMode);
|
||||||
|
} catch (_) {
|
||||||
|
/* ignore quota / private mode */
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const updateUiModeToggleButtons = () => {
|
const updateUiModeToggleButtons = () => {
|
||||||
@@ -2200,6 +2170,11 @@ const updateUiModeToggleButtons = () => {
|
|||||||
document.body.classList.toggle('preset-ui-edit', mode === 'edit');
|
document.body.classList.toggle('preset-ui-edit', mode === 'edit');
|
||||||
document.body.classList.toggle('preset-ui-run', mode === 'run');
|
document.body.classList.toggle('preset-ui-run', mode === 'run');
|
||||||
};
|
};
|
||||||
|
|
||||||
|
if (typeof document !== 'undefined' && document.body) {
|
||||||
|
updateUiModeToggleButtons();
|
||||||
|
}
|
||||||
|
|
||||||
// Track if we're currently dragging a preset
|
// Track if we're currently dragging a preset
|
||||||
let isDraggingPreset = false;
|
let isDraggingPreset = false;
|
||||||
|
|
||||||
@@ -2257,12 +2232,6 @@ const savePresetGrid = async (zoneId, presetGrid) => {
|
|||||||
throw new Error('Failed to load zone');
|
throw new Error('Failed to load zone');
|
||||||
}
|
}
|
||||||
const tabData = await tabResponse.json();
|
const tabData = await tabResponse.json();
|
||||||
if (
|
|
||||||
typeof window.zoneAllowsPresets === 'function' &&
|
|
||||||
!window.zoneAllowsPresets(tabData, zoneId)
|
|
||||||
) {
|
|
||||||
throw new Error('This zone is for sequences only.');
|
|
||||||
}
|
|
||||||
|
|
||||||
// Store as 2D grid
|
// Store as 2D grid
|
||||||
tabData.presets = presetGrid;
|
tabData.presets = presetGrid;
|
||||||
@@ -2356,12 +2325,6 @@ const renderTabPresets = async (zoneId, options = {}) => {
|
|||||||
}
|
}
|
||||||
const tabData = await tabResponse.json();
|
const tabData = await tabResponse.json();
|
||||||
const groupsMapStrip = groupsStripRes.ok ? await groupsStripRes.json() : {};
|
const groupsMapStrip = groupsStripRes.ok ? await groupsStripRes.json() : {};
|
||||||
const ck =
|
|
||||||
typeof window.effectiveZoneContentKind === 'function'
|
|
||||||
? window.effectiveZoneContentKind(tabData)
|
|
||||||
: typeof window.normalizeZoneContentKind === 'function'
|
|
||||||
? window.normalizeZoneContentKind(tabData)
|
|
||||||
: 'presets';
|
|
||||||
|
|
||||||
// Get presets - support both 2D grid and flat array (for backward compatibility)
|
// Get presets - support both 2D grid and flat array (for backward compatibility)
|
||||||
let presetGrid = tabData.presets;
|
let presetGrid = tabData.presets;
|
||||||
@@ -2373,10 +2336,6 @@ const renderTabPresets = async (zoneId, options = {}) => {
|
|||||||
// It's a flat array, convert to grid
|
// It's a flat array, convert to grid
|
||||||
presetGrid = arrayToGrid(presetGrid, 3);
|
presetGrid = arrayToGrid(presetGrid, 3);
|
||||||
}
|
}
|
||||||
if (ck === 'sequences') {
|
|
||||||
presetGrid = [];
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!presetsResponse.ok) {
|
if (!presetsResponse.ok) {
|
||||||
throw new Error('Failed to load presets');
|
throw new Error('Failed to load presets');
|
||||||
}
|
}
|
||||||
@@ -2458,18 +2417,12 @@ const renderTabPresets = async (zoneId, options = {}) => {
|
|||||||
tabData.sequence_ids.some((x) => x != null && String(x).trim());
|
tabData.sequence_ids.some((x) => x != null && String(x).trim());
|
||||||
|
|
||||||
if (flatPresets.length === 0) {
|
if (flatPresets.length === 0) {
|
||||||
|
if (!hasSeq) {
|
||||||
const empty = document.createElement('p');
|
const empty = document.createElement('p');
|
||||||
empty.className = 'muted-text';
|
empty.className = 'muted-text';
|
||||||
empty.style.gridColumn = '1 / -1'; // Span all columns
|
empty.style.gridColumn = '1 / -1';
|
||||||
if (ck === 'sequences') {
|
|
||||||
if (!hasSeq) {
|
|
||||||
empty.textContent =
|
empty.textContent =
|
||||||
"No sequences on this zone yet. Open the zone's Edit menu to add one.";
|
"No presets or sequences on this zone yet. Open Edit to add presets or sequences.";
|
||||||
presetsList.appendChild(empty);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
empty.textContent =
|
|
||||||
'No presets added to this zone. Open the zone\'s Edit menu and click "Add Preset" to add one.';
|
|
||||||
presetsList.appendChild(empty);
|
presetsList.appendChild(empty);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
@@ -2499,11 +2452,7 @@ const renderTabPresets = async (zoneId, options = {}) => {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
if (
|
if (typeof window.appendZoneSequenceTiles === 'function') {
|
||||||
typeof window.appendZoneSequenceTiles === 'function' &&
|
|
||||||
(typeof window.zoneAllowsSequences !== 'function' ||
|
|
||||||
window.zoneAllowsSequences(tabData, zoneId))
|
|
||||||
) {
|
|
||||||
await window.appendZoneSequenceTiles(zoneId, tabData, allPresets, paletteColors, presetsList);
|
await window.appendZoneSequenceTiles(zoneId, tabData, allPresets, paletteColors, presetsList);
|
||||||
}
|
}
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
@@ -2744,13 +2693,6 @@ const removePresetFromTab = async (zoneId, presetId) => {
|
|||||||
throw new Error('Failed to load zone');
|
throw new Error('Failed to load zone');
|
||||||
}
|
}
|
||||||
const tabData = await tabResponse.json();
|
const tabData = await tabResponse.json();
|
||||||
if (
|
|
||||||
typeof window.zoneAllowsPresets === 'function' &&
|
|
||||||
!window.zoneAllowsPresets(tabData, zoneId)
|
|
||||||
) {
|
|
||||||
alert('This zone is for sequences only.');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Normalize to flat array
|
// Normalize to flat array
|
||||||
let flat = [];
|
let flat = [];
|
||||||
|
|||||||
@@ -13,6 +13,9 @@ document.addEventListener("DOMContentLoaded", () => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const isEditModeActive = () => {
|
const isEditModeActive = () => {
|
||||||
|
if (typeof window.getPresetUiMode === 'function') {
|
||||||
|
return window.getPresetUiMode() === 'edit';
|
||||||
|
}
|
||||||
const toggle = document.querySelector('.ui-mode-toggle');
|
const toggle = document.querySelector('.ui-mode-toggle');
|
||||||
return !!(toggle && toggle.getAttribute('aria-pressed') === 'true');
|
return !!(toggle && toggle.getAttribute('aria-pressed') === 'true');
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -510,13 +510,6 @@ async function addSequenceToTab(sequenceId, zoneId) {
|
|||||||
const tabResponse = await fetch(`/zones/${zoneId}`, { headers: { Accept: 'application/json' } });
|
const tabResponse = await fetch(`/zones/${zoneId}`, { headers: { Accept: 'application/json' } });
|
||||||
if (!tabResponse.ok) throw new Error('Failed to load zone');
|
if (!tabResponse.ok) throw new Error('Failed to load zone');
|
||||||
const tabData = await tabResponse.json();
|
const tabData = await tabResponse.json();
|
||||||
if (
|
|
||||||
typeof window.zoneAllowsSequences === 'function' &&
|
|
||||||
!window.zoneAllowsSequences(tabData, zoneId)
|
|
||||||
) {
|
|
||||||
alert('This zone is for presets only. Add presets from the zone Edit menu instead.');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
const list = Array.isArray(tabData.sequence_ids) ? tabData.sequence_ids.map(String) : [];
|
const list = Array.isArray(tabData.sequence_ids) ? tabData.sequence_ids.map(String) : [];
|
||||||
if (list.includes(String(sequenceId))) {
|
if (list.includes(String(sequenceId))) {
|
||||||
alert('Sequence is already on this zone.');
|
alert('Sequence is already on this zone.');
|
||||||
@@ -579,15 +572,6 @@ async function refreshEditTabSequencesUi(zoneId) {
|
|||||||
const zoneRes = await fetch(`/zones/${zoneId}`, { headers: { Accept: 'application/json' } });
|
const zoneRes = await fetch(`/zones/${zoneId}`, { headers: { Accept: 'application/json' } });
|
||||||
if (!zoneRes.ok) throw new Error('zone');
|
if (!zoneRes.ok) throw new Error('zone');
|
||||||
const zone = await zoneRes.json();
|
const zone = await zoneRes.json();
|
||||||
if (
|
|
||||||
typeof window.zoneAllowsSequences === 'function' &&
|
|
||||||
!window.zoneAllowsSequences(zone, zoneId)
|
|
||||||
) {
|
|
||||||
currentEl.innerHTML =
|
|
||||||
'<span class="muted-text">This zone is for presets only. Sequences are hidden.</span>';
|
|
||||||
addEl.innerHTML = '<span class="muted-text">—</span>';
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
const onZone = Array.isArray(zone.sequence_ids) ? zone.sequence_ids.map(String) : [];
|
const onZone = Array.isArray(zone.sequence_ids) ? zone.sequence_ids.map(String) : [];
|
||||||
const seqMap = await fetchSequencesMap();
|
const seqMap = await fetchSequencesMap();
|
||||||
const onSet = new Set(onZone);
|
const onSet = new Set(onZone);
|
||||||
@@ -600,11 +584,7 @@ async function refreshEditTabSequencesUi(zoneId) {
|
|||||||
const sdoc = seqMap[sid] || {};
|
const sdoc = seqMap[sid] || {};
|
||||||
const name = sdoc.name || sid;
|
const name = sdoc.name || sid;
|
||||||
const row = document.createElement('div');
|
const row = document.createElement('div');
|
||||||
row.className = 'profiles-row';
|
row.className = 'profiles-row edit-zone-item-row';
|
||||||
row.style.display = 'flex';
|
|
||||||
row.style.justifyContent = 'space-between';
|
|
||||||
row.style.alignItems = 'center';
|
|
||||||
row.style.gap = '0.5rem';
|
|
||||||
const span = document.createElement('span');
|
const span = document.createElement('span');
|
||||||
span.textContent = `${name} — ${sid}`;
|
span.textContent = `${name} — ${sid}`;
|
||||||
const rm = document.createElement('button');
|
const rm = document.createElement('button');
|
||||||
@@ -1081,9 +1061,16 @@ async function saveSequenceEditor() {
|
|||||||
const err = await res.json().catch(() => ({}));
|
const err = await res.json().catch(() => ({}));
|
||||||
throw new Error((err && err.error) || res.statusText);
|
throw new Error((err && err.error) || res.statusText);
|
||||||
}
|
}
|
||||||
|
const created = await res.json().catch(() => null);
|
||||||
|
if (created && typeof created === 'object') {
|
||||||
|
const entries = Object.entries(created);
|
||||||
|
if (entries.length > 0) {
|
||||||
|
sequenceEditorId = String(entries[0][0]);
|
||||||
|
const edDel = document.getElementById('sequence-editor-delete-btn');
|
||||||
|
if (edDel) edDel.style.display = 'inline-block';
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
document.getElementById('sequence-editor-modal') && document.getElementById('sequence-editor-modal').classList.remove('active');
|
|
||||||
stopSequenceEditorBpmPoll();
|
|
||||||
await loadSequencesModalList();
|
await loadSequencesModalList();
|
||||||
const zid = resolveZoneIdForPresetStripRefresh();
|
const zid = resolveZoneIdForPresetStripRefresh();
|
||||||
if (zid && typeof window.refreshEditTabSequencesUi === 'function') {
|
if (zid && typeof window.refreshEditTabSequencesUi === 'function') {
|
||||||
@@ -1164,31 +1151,12 @@ async function loadSequencesModalList() {
|
|||||||
const nSteps = ln.reduce((a, l) => a + l.length, 0);
|
const nSteps = ln.reduce((a, l) => a + l.length, 0);
|
||||||
const nLanes = ln.filter((l) => l.length > 0).length || 1;
|
const nLanes = ln.filter((l) => l.length > 0).length || 1;
|
||||||
title.textContent = `${doc.name || id} — ${nLanes} lane(s), ${nSteps} step(s)`;
|
title.textContent = `${doc.name || id} — ${nLanes} lane(s), ${nSteps} step(s)`;
|
||||||
const exportBtn = document.createElement('button');
|
|
||||||
exportBtn.type = 'button';
|
|
||||||
exportBtn.className = 'btn btn-secondary btn-small';
|
|
||||||
exportBtn.textContent = 'Export';
|
|
||||||
exportBtn.addEventListener('click', async () => {
|
|
||||||
try {
|
|
||||||
const response = await fetch(`/sequences/${id}/export`, {
|
|
||||||
headers: { Accept: 'application/json' },
|
|
||||||
});
|
|
||||||
if (!response.ok) throw new Error('Export failed');
|
|
||||||
const bundle = await response.json();
|
|
||||||
const safeName = String(doc.name || id).replace(/[^\w.-]+/g, '_');
|
|
||||||
window.downloadJsonFile(`sequence-${safeName}.json`, bundle);
|
|
||||||
} catch (e) {
|
|
||||||
console.error(e);
|
|
||||||
alert('Failed to export sequence.');
|
|
||||||
}
|
|
||||||
});
|
|
||||||
const edit = document.createElement('button');
|
const edit = document.createElement('button');
|
||||||
edit.type = 'button';
|
edit.type = 'button';
|
||||||
edit.className = 'btn btn-secondary btn-small';
|
edit.className = 'btn btn-secondary btn-small';
|
||||||
edit.textContent = 'Edit';
|
edit.textContent = 'Edit';
|
||||||
edit.addEventListener('click', () => openSequenceEditor(id, doc));
|
edit.addEventListener('click', () => openSequenceEditor(id, doc));
|
||||||
row.appendChild(title);
|
row.appendChild(title);
|
||||||
row.appendChild(exportBtn);
|
|
||||||
row.appendChild(edit);
|
row.appendChild(edit);
|
||||||
listEl.appendChild(row);
|
listEl.appendChild(row);
|
||||||
});
|
});
|
||||||
@@ -1227,33 +1195,6 @@ document.addEventListener('DOMContentLoaded', () => {
|
|||||||
openSequenceEditor(null, null);
|
openSequenceEditor(null, null);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
const importSeqBtn = document.getElementById('import-sequence-btn');
|
|
||||||
if (importSeqBtn) {
|
|
||||||
importSeqBtn.addEventListener('click', async () => {
|
|
||||||
const text = await window.pickJsonFile();
|
|
||||||
if (!text) return;
|
|
||||||
const bundle = window.parseJsonFileText(text);
|
|
||||||
if (!bundle || bundle.kind !== 'sequence') {
|
|
||||||
alert('Invalid sequence bundle file.');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
try {
|
|
||||||
const response = await fetch('/sequences/import', {
|
|
||||||
method: 'POST',
|
|
||||||
headers: { 'Content-Type': 'application/json', Accept: 'application/json' },
|
|
||||||
body: JSON.stringify({ bundle }),
|
|
||||||
});
|
|
||||||
if (!response.ok) {
|
|
||||||
const err = await response.json().catch(() => ({}));
|
|
||||||
throw new Error(err.error || 'Import failed');
|
|
||||||
}
|
|
||||||
await loadSequencesModalList();
|
|
||||||
} catch (e) {
|
|
||||||
console.error(e);
|
|
||||||
alert(e.message || 'Failed to import sequence.');
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
const openPresetsFromSeq = document.getElementById('sequences-open-presets-btn');
|
const openPresetsFromSeq = document.getElementById('sequences-open-presets-btn');
|
||||||
if (openPresetsFromSeq) {
|
if (openPresetsFromSeq) {
|
||||||
openPresetsFromSeq.addEventListener('click', () => {
|
openPresetsFromSeq.addEventListener('click', () => {
|
||||||
|
|||||||
@@ -125,6 +125,68 @@ header h1 {
|
|||||||
justify-content: flex-end;
|
justify-content: flex-end;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.zones-menu-mobile {
|
||||||
|
display: none;
|
||||||
|
position: relative;
|
||||||
|
align-items: center;
|
||||||
|
flex-shrink: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.zones-menu-dropdown {
|
||||||
|
position: absolute;
|
||||||
|
top: 100%;
|
||||||
|
left: 0;
|
||||||
|
background-color: #1a1a1a;
|
||||||
|
border: 1px solid #4a4a4a;
|
||||||
|
border-radius: 4px;
|
||||||
|
padding: 0.25rem 0;
|
||||||
|
display: none;
|
||||||
|
min-width: 10rem;
|
||||||
|
max-width: min(16rem, calc(100vw - 1rem));
|
||||||
|
max-height: min(50vh, 20rem);
|
||||||
|
overflow-y: auto;
|
||||||
|
z-index: 1100;
|
||||||
|
}
|
||||||
|
|
||||||
|
.zones-menu-dropdown.open {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.zones-menu-item {
|
||||||
|
width: 100%;
|
||||||
|
background: none;
|
||||||
|
border: none;
|
||||||
|
color: white;
|
||||||
|
text-align: left;
|
||||||
|
padding: 0.45rem 0.75rem;
|
||||||
|
font-size: 0.85rem;
|
||||||
|
cursor: pointer;
|
||||||
|
white-space: nowrap;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
}
|
||||||
|
|
||||||
|
.zones-menu-item:hover {
|
||||||
|
background-color: #333;
|
||||||
|
}
|
||||||
|
|
||||||
|
.zones-menu-item.active {
|
||||||
|
background-color: #6a5acd;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.zones-menu-empty {
|
||||||
|
padding: 0.45rem 0.75rem;
|
||||||
|
font-size: 0.85rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
#zones-menu-btn {
|
||||||
|
max-width: 9rem;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
.header-menu-mobile {
|
.header-menu-mobile {
|
||||||
display: none;
|
display: none;
|
||||||
position: relative;
|
position: relative;
|
||||||
@@ -213,6 +275,7 @@ header h1 {
|
|||||||
min-width: 0;
|
min-width: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.audio-beat-sync-btn,
|
||||||
.audio-top-beat-sync {
|
.audio-top-beat-sync {
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
@@ -228,11 +291,13 @@ header h1 {
|
|||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.audio-beat-sync-btn:disabled,
|
||||||
.audio-top-beat-sync:disabled {
|
.audio-top-beat-sync:disabled {
|
||||||
cursor: default;
|
cursor: default;
|
||||||
opacity: 0.85;
|
opacity: 0.85;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.audio-beat-sync-btn:not(:disabled):hover,
|
||||||
.audio-top-beat-sync:not(:disabled):hover {
|
.audio-top-beat-sync:not(:disabled):hover {
|
||||||
border-color: #6a6a6a;
|
border-color: #6a6a6a;
|
||||||
background-color: #2a2a2a;
|
background-color: #2a2a2a;
|
||||||
@@ -313,15 +378,24 @@ header h1 {
|
|||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.audio-beat-sync-btn.flash,
|
||||||
.audio-top-beat-sync.flash {
|
.audio-top-beat-sync.flash {
|
||||||
background-color: #ff5252;
|
background-color: #ff5252;
|
||||||
border-color: #ff8a80;
|
border-color: #ff8a80;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.audio-beat-sync-btn.flash .audio-top-indicator-value,
|
||||||
|
.audio-beat-sync-btn.flash .audio-top-indicator-label,
|
||||||
|
.audio-beat-sync-btn.flash .audio-top-beat-readout,
|
||||||
|
.audio-beat-sync-btn.flash .audio-top-beat-readout::before,
|
||||||
|
.audio-beat-sync-btn.flash .audio-top-bar-phase,
|
||||||
|
.audio-beat-sync-btn.flash .audio-top-bar-phase::before,
|
||||||
.audio-top-beat-sync.flash .audio-top-indicator-value,
|
.audio-top-beat-sync.flash .audio-top-indicator-value,
|
||||||
.audio-top-beat-sync.flash .audio-top-indicator-label,
|
.audio-top-beat-sync.flash .audio-top-indicator-label,
|
||||||
.audio-top-beat-sync.flash .audio-top-beat-readout,
|
.audio-top-beat-sync.flash .audio-top-beat-readout,
|
||||||
.audio-top-beat-sync.flash .audio-top-beat-readout::before {
|
.audio-top-beat-sync.flash .audio-top-beat-readout::before,
|
||||||
|
.audio-top-beat-sync.flash .audio-top-bar-phase,
|
||||||
|
.audio-top-beat-sync.flash .audio-top-bar-phase::before {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -854,6 +928,11 @@ body.preset-ui-run .edit-mode-only {
|
|||||||
border: 1px solid #757575;
|
border: 1px solid #757575;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.device-status-dot--pinging {
|
||||||
|
background: #ffb300;
|
||||||
|
box-shadow: 0 0 6px rgba(255, 179, 0, 0.45);
|
||||||
|
}
|
||||||
|
|
||||||
.btn-group {
|
.btn-group {
|
||||||
display: flex;
|
display: flex;
|
||||||
gap: 0.5rem;
|
gap: 0.5rem;
|
||||||
@@ -915,37 +994,107 @@ body.preset-ui-run .edit-mode-only {
|
|||||||
margin-top: 1rem;
|
margin-top: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
#audio-modal .audio-settings-section .audio-modal-beat-readout {
|
#audio-modal .audio-modal-beat-sync {
|
||||||
display: block;
|
|
||||||
width: 100%;
|
width: 100%;
|
||||||
max-width: none;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.audio-modal-beat-readout {
|
#audio-modal .audio-modal-content {
|
||||||
|
max-width: 640px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.audio-device-block {
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.audio-device-select-row {
|
||||||
|
align-items: stretch;
|
||||||
|
gap: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.audio-device-select-row select {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
min-width: 10rem;
|
min-width: 0;
|
||||||
min-height: 2.25rem;
|
|
||||||
font-size: 0.85rem;
|
|
||||||
line-height: 1.35;
|
|
||||||
text-align: center;
|
|
||||||
border: 1px solid #4a4a4a;
|
|
||||||
border-radius: 6px;
|
|
||||||
background-color: #252525;
|
|
||||||
padding: 0.35rem 0.65rem;
|
|
||||||
cursor: pointer;
|
|
||||||
font-family: inherit;
|
|
||||||
color: #b0bec5;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.audio-modal-beat-readout:disabled {
|
#audio-modal .audio-modal-beat-sync {
|
||||||
cursor: default;
|
width: 100%;
|
||||||
opacity: 0.55;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.audio-modal-beat-readout:not(:disabled):hover {
|
.audio-volume-block {
|
||||||
border-color: #6a6a6a;
|
margin-top: 0.5rem;
|
||||||
background-color: #333;
|
}
|
||||||
|
|
||||||
|
.audio-volume-header {
|
||||||
|
display: flex;
|
||||||
|
align-items: baseline;
|
||||||
|
justify-content: space-between;
|
||||||
|
gap: 0.75rem;
|
||||||
|
margin-bottom: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.audio-volume-header label {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.audio-volume-readout {
|
||||||
|
font-size: 0.9rem;
|
||||||
color: #e0e0e0;
|
color: #e0e0e0;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.audio-volume-slider-row {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.audio-volume-slider {
|
||||||
|
--audio-volume-pct: 50%;
|
||||||
|
--audio-volume-unity: 50%;
|
||||||
|
flex: 1;
|
||||||
|
width: 100%;
|
||||||
|
height: 0.45rem;
|
||||||
|
margin: 0.35rem 0;
|
||||||
|
accent-color: #ff9800;
|
||||||
|
background: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
.audio-volume-scale {
|
||||||
|
position: relative;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
font-size: 0.72rem;
|
||||||
|
color: #9e9e9e;
|
||||||
|
margin: 0.15rem 0 0.45rem;
|
||||||
|
min-height: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.audio-volume-scale-unity {
|
||||||
|
position: absolute;
|
||||||
|
left: var(--audio-volume-unity, 50%);
|
||||||
|
transform: translateX(-50%);
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
#audio-modal .audio-volume-block {
|
||||||
|
--audio-volume-unity: 50%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.audio-input-level-meter {
|
||||||
|
width: 100%;
|
||||||
|
height: 0.35rem;
|
||||||
|
border: none;
|
||||||
|
border-radius: 2px;
|
||||||
|
background: #2a2a2a;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.audio-input-level-bar {
|
||||||
|
height: 100%;
|
||||||
|
width: 0%;
|
||||||
|
background: #ff9800;
|
||||||
|
transition: width 60ms linear;
|
||||||
|
border-radius: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.audio-hit-type-readout {
|
.audio-hit-type-readout {
|
||||||
@@ -1335,8 +1484,7 @@ body.preset-ui-run .edit-mode-only {
|
|||||||
/* Header / global dialogs */
|
/* Header / global dialogs */
|
||||||
#help-modal.active,
|
#help-modal.active,
|
||||||
#audio-modal.active,
|
#audio-modal.active,
|
||||||
#settings-modal.active,
|
#settings-modal.active {
|
||||||
#led-tool-modal.active {
|
|
||||||
z-index: 1080;
|
z-index: 1080;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1358,6 +1506,29 @@ body.preset-ui-run .edit-mode-only {
|
|||||||
font-size: 1.3rem;
|
font-size: 1.3rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.modal-head {
|
||||||
|
display: flex;
|
||||||
|
align-items: flex-start;
|
||||||
|
justify-content: space-between;
|
||||||
|
gap: 0.75rem;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-head h2 {
|
||||||
|
margin: 0;
|
||||||
|
flex: 1;
|
||||||
|
min-width: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-top-actions {
|
||||||
|
display: flex;
|
||||||
|
gap: 0.5rem;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
justify-content: flex-end;
|
||||||
|
flex-shrink: 0;
|
||||||
|
}
|
||||||
|
|
||||||
.modal-content label {
|
.modal-content label {
|
||||||
display: block;
|
display: block;
|
||||||
margin-top: 1rem;
|
margin-top: 1rem;
|
||||||
@@ -1418,7 +1589,7 @@ body.preset-ui-run .edit-mode-only {
|
|||||||
font-size: 1.1rem;
|
font-size: 1.1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* On mobile, hide header buttons; all actions (including Tabs) are in the Menu dropdown */
|
/* On mobile, hide header buttons; all actions (including Zones) are in the Menu dropdown */
|
||||||
.header-actions {
|
.header-actions {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
@@ -1454,17 +1625,28 @@ body.preset-ui-run .edit-mode-only {
|
|||||||
transform: translateY(-50%);
|
transform: translateY(-50%);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.zones-menu-mobile {
|
||||||
|
display: flex;
|
||||||
|
margin-right: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.zones-container {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
.header-menu-mobile {
|
.header-menu-mobile {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
gap: 0.35rem;
|
gap: 0.35rem;
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
|
margin-left: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.header-end {
|
.header-end {
|
||||||
gap: 0.35rem;
|
gap: 0.35rem;
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
|
flex-wrap: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
.header-end .audio-top-indicator {
|
.header-end .audio-top-indicator {
|
||||||
@@ -1483,12 +1665,6 @@ body.preset-ui-run .edit-mode-only {
|
|||||||
padding: 0.4rem 0.7rem;
|
padding: 0.4rem 0.7rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.zones-container {
|
|
||||||
padding: 0.35rem 0 0;
|
|
||||||
border-bottom: none;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.zone-content {
|
.zone-content {
|
||||||
padding: 0.5rem;
|
padding: 0.5rem;
|
||||||
}
|
}
|
||||||
@@ -1603,6 +1779,39 @@ body.preset-ui-run .edit-mode-only {
|
|||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.group-list-row {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 0.55rem;
|
||||||
|
padding: 0.65rem 0.75rem;
|
||||||
|
background-color: #3a3a3a;
|
||||||
|
border-radius: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.group-list-row-info {
|
||||||
|
min-width: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.group-list-row-title {
|
||||||
|
font-weight: 600;
|
||||||
|
line-height: 1.35;
|
||||||
|
word-break: break-word;
|
||||||
|
}
|
||||||
|
|
||||||
|
.group-list-row-meta {
|
||||||
|
margin-top: 0.15rem;
|
||||||
|
font-size: 0.8em;
|
||||||
|
line-height: 1.35;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.group-list-row-actions {
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
gap: 0.35rem;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
.zone-modal-create-row {
|
.zone-modal-create-row {
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
@@ -1636,7 +1845,35 @@ body.preset-ui-run .edit-mode-only {
|
|||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
}
|
}
|
||||||
|
|
||||||
.zone-devices-editor {
|
.zone-devices-editor.zone-devices-panel {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 0;
|
||||||
|
margin-bottom: 0.5rem;
|
||||||
|
max-height: 14rem;
|
||||||
|
overflow: hidden;
|
||||||
|
min-height: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.zone-devices-list {
|
||||||
|
flex: 1 1 auto;
|
||||||
|
min-height: 0;
|
||||||
|
overflow-y: auto;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 0.5rem;
|
||||||
|
padding-right: 0.15rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.zone-devices-add-slot {
|
||||||
|
flex: 0 0 auto;
|
||||||
|
padding-top: 0.5rem;
|
||||||
|
margin-top: 0.35rem;
|
||||||
|
border-top: 1px solid rgba(255, 255, 255, 0.1);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Legacy: single container without panel split (prefer zone-devices-panel.js). */
|
||||||
|
.zone-devices-editor:not(.zone-devices-panel) {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
gap: 0.5rem;
|
gap: 0.5rem;
|
||||||
@@ -1660,6 +1897,65 @@ body.preset-ui-run .edit-mode-only {
|
|||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.zone-device-add-picker {
|
||||||
|
flex: 1 1 100%;
|
||||||
|
min-width: 100%;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 0.35rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.zone-device-add-search {
|
||||||
|
width: 100%;
|
||||||
|
padding: 0.5rem;
|
||||||
|
background-color: #3a3a3a;
|
||||||
|
border: 1px solid #4a4a4a;
|
||||||
|
border-radius: 4px;
|
||||||
|
color: white;
|
||||||
|
font-size: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.zone-device-add-search:focus {
|
||||||
|
outline: none;
|
||||||
|
border-color: #6a5acd;
|
||||||
|
}
|
||||||
|
|
||||||
|
.zone-device-add-results {
|
||||||
|
max-height: 10rem;
|
||||||
|
overflow-y: auto;
|
||||||
|
border: 1px solid #4a4a4a;
|
||||||
|
border-radius: 4px;
|
||||||
|
background-color: #3a3a3a;
|
||||||
|
}
|
||||||
|
|
||||||
|
.zone-device-add-results-empty {
|
||||||
|
padding: 0.5rem 0.6rem;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.zone-device-add-result {
|
||||||
|
display: block;
|
||||||
|
width: 100%;
|
||||||
|
text-align: left;
|
||||||
|
padding: 0.45rem 0.6rem;
|
||||||
|
border: none;
|
||||||
|
border-bottom: 1px solid #4a4a4a;
|
||||||
|
background: transparent;
|
||||||
|
color: white;
|
||||||
|
cursor: pointer;
|
||||||
|
font: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
.zone-device-add-result:last-child {
|
||||||
|
border-bottom: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.zone-device-add-result:hover,
|
||||||
|
.zone-device-add-result:focus-visible {
|
||||||
|
background-color: #4a4a4a;
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
|
||||||
.zone-devices-add {
|
.zone-devices-add {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
@@ -1677,6 +1973,11 @@ body.preset-ui-run .edit-mode-only {
|
|||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
margin-bottom: 1rem;
|
margin-bottom: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.edit-zone-presets-scroll .edit-zone-item-row {
|
||||||
|
padding: 0.25rem 0.4rem;
|
||||||
|
margin-bottom: 0.25rem;
|
||||||
|
}
|
||||||
/* Hide any text content in palette rows - only show color swatches */
|
/* Hide any text content in palette rows - only show color swatches */
|
||||||
#palette-container .profiles-row {
|
#palette-container .profiles-row {
|
||||||
font-size: 0; /* Hide any text nodes */
|
font-size: 0; /* Hide any text nodes */
|
||||||
@@ -1757,16 +2058,205 @@ body.preset-ui-run .edit-mode-only {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
/* Help modal readability */
|
/* Help modal readability */
|
||||||
#help-modal .modal-content {
|
#help-modal .modal-content,
|
||||||
max-width: 720px;
|
#help-modal .help-modal-content {
|
||||||
|
max-width: 840px;
|
||||||
|
width: 95vw;
|
||||||
line-height: 1.6;
|
line-height: 1.6;
|
||||||
font-size: 0.95rem;
|
font-size: 0.95rem;
|
||||||
}
|
}
|
||||||
#help-modal .modal-content h2 {
|
#help-modal .modal-head {
|
||||||
margin-bottom: 0.75rem;
|
margin-bottom: 0.75rem;
|
||||||
}
|
}
|
||||||
|
#help-modal .help-modal-intro {
|
||||||
|
margin-bottom: 0.25rem;
|
||||||
|
}
|
||||||
|
#help-modal .help-tabs {
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
gap: 0.35rem;
|
||||||
|
margin: 0.5rem 0 1rem;
|
||||||
|
border-bottom: 1px solid #4a4a4a;
|
||||||
|
padding-bottom: 0.5rem;
|
||||||
|
}
|
||||||
|
#help-modal .help-tab-btn {
|
||||||
|
background: #3a3a3a;
|
||||||
|
color: #ccc;
|
||||||
|
border: 1px solid #4a4a4a;
|
||||||
|
border-radius: 4px 4px 0 0;
|
||||||
|
padding: 0.4rem 0.7rem;
|
||||||
|
font-size: 0.85rem;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
#help-modal .help-tab-btn:hover {
|
||||||
|
color: #fff;
|
||||||
|
border-color: #6a5acd;
|
||||||
|
}
|
||||||
|
#help-modal .help-tab-btn.active {
|
||||||
|
background: #1a1a1a;
|
||||||
|
color: #fff;
|
||||||
|
border-color: #6a5acd;
|
||||||
|
border-bottom-color: #1a1a1a;
|
||||||
|
margin-bottom: -1px;
|
||||||
|
}
|
||||||
|
#help-modal .help-tab-panel:not(.active) {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
#help-modal .help-tab-panel {
|
||||||
|
max-height: min(70vh, 640px);
|
||||||
|
overflow-y: auto;
|
||||||
|
padding-right: 0.25rem;
|
||||||
|
}
|
||||||
|
#help-modal .help-ui-preview {
|
||||||
|
margin: 0 0 1rem;
|
||||||
|
border: 1px solid #4a4a4a;
|
||||||
|
border-radius: 8px;
|
||||||
|
background: #1a1a1a;
|
||||||
|
overflow: hidden;
|
||||||
|
pointer-events: none;
|
||||||
|
user-select: none;
|
||||||
|
}
|
||||||
|
#help-modal .help-ui-preview-caption {
|
||||||
|
margin: -0.5rem 0 1rem;
|
||||||
|
color: #999;
|
||||||
|
font-size: 0.85rem;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
#help-modal .help-ui-preview .help-preview-surface {
|
||||||
|
background-color: #2e2e2e;
|
||||||
|
padding: 1.25rem;
|
||||||
|
border-radius: 0;
|
||||||
|
}
|
||||||
|
#help-modal .help-ui-preview .modal-content {
|
||||||
|
position: static;
|
||||||
|
max-width: none;
|
||||||
|
min-width: 0;
|
||||||
|
width: 100%;
|
||||||
|
margin: 0;
|
||||||
|
padding: 1.25rem;
|
||||||
|
box-shadow: none;
|
||||||
|
border-radius: 0;
|
||||||
|
}
|
||||||
|
#help-modal .help-ui-preview .modal-head {
|
||||||
|
margin-bottom: 0.75rem;
|
||||||
|
}
|
||||||
|
#help-modal .help-ui-preview .profiles-list {
|
||||||
|
max-height: none;
|
||||||
|
margin-top: 0.75rem;
|
||||||
|
}
|
||||||
|
#help-modal .help-ui-preview .modal-actions {
|
||||||
|
margin-top: 0.75rem;
|
||||||
|
}
|
||||||
|
#help-modal .help-ui-preview--header .help-preview-header {
|
||||||
|
background-color: #1a1a1a;
|
||||||
|
padding: 0.75rem 1rem;
|
||||||
|
border-bottom: 2px solid #4a4a4a;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 0.65rem;
|
||||||
|
}
|
||||||
|
#help-modal .help-ui-preview--strip .zone-content {
|
||||||
|
padding: 0.5rem 0.75rem;
|
||||||
|
max-height: 11rem;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
#help-modal .help-ui-preview .help-preview-presets-grid {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
||||||
|
grid-auto-rows: minmax(5rem, auto);
|
||||||
|
column-gap: 0.3rem;
|
||||||
|
row-gap: 0.3rem;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
#help-modal .help-ui-preview--mobile {
|
||||||
|
max-width: 220px;
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
}
|
||||||
|
#help-modal .help-ui-preview--mobile .help-preview-mobile-bar {
|
||||||
|
background-color: #1a1a1a;
|
||||||
|
padding: 0.75rem;
|
||||||
|
border-bottom: 1px solid #4a4a4a;
|
||||||
|
}
|
||||||
|
#help-modal .help-ui-preview--mobile .main-menu-dropdown {
|
||||||
|
display: block;
|
||||||
|
position: static;
|
||||||
|
border: none;
|
||||||
|
border-radius: 0;
|
||||||
|
min-width: 0;
|
||||||
|
}
|
||||||
|
#help-modal .help-ui-preview .preset-colors-container {
|
||||||
|
min-height: 5rem;
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: nowrap;
|
||||||
|
gap: 0.5rem;
|
||||||
|
align-items: flex-start;
|
||||||
|
padding: 0.5rem;
|
||||||
|
background-color: #2a2a2a;
|
||||||
|
border-radius: 4px;
|
||||||
|
}
|
||||||
|
#help-modal .help-ui-preview .help-preview-color-swatch {
|
||||||
|
position: relative;
|
||||||
|
width: 64px;
|
||||||
|
height: 64px;
|
||||||
|
border-radius: 8px;
|
||||||
|
border: 2px solid #4a4a4a;
|
||||||
|
flex-shrink: 0;
|
||||||
|
}
|
||||||
|
#help-modal .help-ui-preview .help-preview-p-badge {
|
||||||
|
position: absolute;
|
||||||
|
left: -6px;
|
||||||
|
top: -6px;
|
||||||
|
min-width: 18px;
|
||||||
|
height: 18px;
|
||||||
|
border-radius: 9px;
|
||||||
|
background: #3f51b5;
|
||||||
|
color: #fff;
|
||||||
|
font-size: 11px;
|
||||||
|
font-weight: 700;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
border: 1px solid rgba(255, 255, 255, 0.35);
|
||||||
|
}
|
||||||
|
#help-modal .help-ui-preview .settings-tabs {
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
gap: 0.35rem;
|
||||||
|
margin: 0 0 0.75rem;
|
||||||
|
border-bottom: 1px solid #4a4a4a;
|
||||||
|
padding-bottom: 0.5rem;
|
||||||
|
}
|
||||||
|
#help-modal .help-ui-preview .settings-tab-btn {
|
||||||
|
background: #3a3a3a;
|
||||||
|
color: #ccc;
|
||||||
|
border: 1px solid #4a4a4a;
|
||||||
|
border-radius: 4px 4px 0 0;
|
||||||
|
padding: 0.45rem 0.85rem;
|
||||||
|
font-size: 0.95rem;
|
||||||
|
}
|
||||||
|
#help-modal .help-ui-preview .settings-tab-btn.active {
|
||||||
|
background: #1a1a1a;
|
||||||
|
color: #fff;
|
||||||
|
border-color: #6a5acd;
|
||||||
|
}
|
||||||
|
#help-modal .help-ui-preview .settings-section {
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
#help-modal .help-ui-preview select {
|
||||||
|
padding: 0.35rem 0.5rem;
|
||||||
|
background-color: #2e2e2e;
|
||||||
|
border: 1px solid #4a4a4a;
|
||||||
|
border-radius: 4px;
|
||||||
|
color: white;
|
||||||
|
font-size: 0.9rem;
|
||||||
|
}
|
||||||
|
#help-modal .help-ui-preview .profiles-actions input[type="text"] {
|
||||||
|
flex: 1;
|
||||||
|
min-width: 0;
|
||||||
|
}
|
||||||
#help-modal .modal-content h3 {
|
#help-modal .modal-content h3 {
|
||||||
margin-top: 1.25rem;
|
margin-top: 1rem;
|
||||||
margin-bottom: 0.4rem;
|
margin-bottom: 0.4rem;
|
||||||
font-size: 1.05rem;
|
font-size: 1.05rem;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
@@ -1879,8 +2369,211 @@ body.preset-ui-run .edit-mode-only {
|
|||||||
max-width: 900px;
|
max-width: 900px;
|
||||||
max-height: 90vh;
|
max-height: 90vh;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
}#settings-modal .modal-content > p.muted-text {
|
}
|
||||||
margin-bottom: 1rem;
|
|
||||||
}#settings-modal .settings-section.ap-settings-section {
|
#settings-modal.settings-modal--led-tool .modal-content {
|
||||||
|
max-width: 960px;
|
||||||
|
width: 95vw;
|
||||||
|
}
|
||||||
|
|
||||||
|
#settings-modal .settings-tabs {
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
gap: 0.35rem;
|
||||||
|
margin: 0.75rem 0 1rem;
|
||||||
|
border-bottom: 1px solid #4a4a4a;
|
||||||
|
padding-bottom: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
#settings-modal .settings-tab-btn {
|
||||||
|
background: #3a3a3a;
|
||||||
|
color: #ccc;
|
||||||
|
border: 1px solid #4a4a4a;
|
||||||
|
border-radius: 4px 4px 0 0;
|
||||||
|
padding: 0.45rem 0.85rem;
|
||||||
|
font-size: 0.95rem;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
#settings-modal .settings-tab-btn:hover {
|
||||||
|
color: #fff;
|
||||||
|
border-color: #6a5acd;
|
||||||
|
}
|
||||||
|
|
||||||
|
#settings-modal .settings-tab-btn.active {
|
||||||
|
background: #1a1a1a;
|
||||||
|
color: #fff;
|
||||||
|
border-color: #6a5acd;
|
||||||
|
border-bottom-color: #1a1a1a;
|
||||||
|
margin-bottom: -1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#settings-modal .settings-tab-panel:not(.active) {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#settings-modal .settings-led-tool-intro {
|
||||||
|
margin: 0 0 0.75rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
#settings-modal .settings-led-tool-iframe {
|
||||||
|
width: 100%;
|
||||||
|
height: min(75vh, 720px);
|
||||||
|
border: 1px solid #4a4a4a;
|
||||||
|
border-radius: 4px;
|
||||||
|
background: #0b1020;
|
||||||
|
}
|
||||||
|
|
||||||
|
#settings-modal .settings-section.ap-settings-section {
|
||||||
margin-top: 1.5rem;
|
margin-top: 1.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.settings-ping-results {
|
||||||
|
margin-top: 0.75rem;
|
||||||
|
min-height: 1.25rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.settings-ping-list {
|
||||||
|
list-style: none;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
font-family: monospace;
|
||||||
|
font-size: 0.9rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.settings-ping-list li {
|
||||||
|
padding: 0.35rem 0;
|
||||||
|
border-bottom: 1px solid #333;
|
||||||
|
}
|
||||||
|
|
||||||
|
.settings-ping-list li:last-child {
|
||||||
|
border-bottom: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.settings-wifi-scan-list {
|
||||||
|
list-style: none;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0.5rem 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.settings-wifi-scan-list li {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 0.5rem;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
margin-bottom: 0.35rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.settings-subheading {
|
||||||
|
margin: 0 0 0.35rem;
|
||||||
|
font-size: 1rem;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
|
||||||
|
.settings-bridge-connection-details {
|
||||||
|
list-style: none;
|
||||||
|
margin: 0 0 0.75rem;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.settings-bridge-connection-details li {
|
||||||
|
margin: 0.2rem 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.settings-bridge-profiles {
|
||||||
|
list-style: none;
|
||||||
|
padding: 0;
|
||||||
|
margin: 1rem 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.settings-bridge-profile-item {
|
||||||
|
margin-bottom: 0.65rem;
|
||||||
|
padding-bottom: 0.65rem;
|
||||||
|
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
|
||||||
|
}
|
||||||
|
|
||||||
|
.settings-bridge-profile-item:last-child {
|
||||||
|
border-bottom: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.settings-bridge-profile-row {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
|
gap: 0.75rem;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.settings-bridge-groups-panel {
|
||||||
|
margin: 0.5rem 0 0 0.25rem;
|
||||||
|
padding: 0.5rem 0.75rem;
|
||||||
|
background: rgba(0, 0, 0, 0.2);
|
||||||
|
border-radius: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.settings-bridge-groups-hint {
|
||||||
|
margin: 0 0 0.5rem;
|
||||||
|
font-size: 0.85rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.settings-bridge-groups-checkboxes {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 0.35rem;
|
||||||
|
max-height: 14rem;
|
||||||
|
overflow-y: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.settings-bridge-group-check {
|
||||||
|
display: flex;
|
||||||
|
align-items: flex-start;
|
||||||
|
gap: 0.45rem;
|
||||||
|
font-size: 0.9rem;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.settings-bridge-group-check input:disabled + span {
|
||||||
|
opacity: 0.55;
|
||||||
|
}
|
||||||
|
|
||||||
|
.settings-bridge-profile-main {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 0.65rem;
|
||||||
|
flex: 1;
|
||||||
|
min-width: 10rem;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.settings-bridge-profile-label {
|
||||||
|
flex: 1 1 auto;
|
||||||
|
min-width: 8rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.settings-bridge-profile-status {
|
||||||
|
font-size: 0.85rem;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.settings-bridge-profile-status--connected {
|
||||||
|
color: #81c784;
|
||||||
|
}
|
||||||
|
|
||||||
|
.settings-bridge-profile-status--idle {
|
||||||
|
color: rgba(255, 255, 255, 0.45);
|
||||||
|
}
|
||||||
|
|
||||||
|
.settings-bridge-profile-actions {
|
||||||
|
display: flex;
|
||||||
|
gap: 0.4rem;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.settings-bridge-profile-delete {
|
||||||
|
opacity: 0.85;
|
||||||
|
}
|
||||||
|
|
||||||
|
.settings-ping-empty {
|
||||||
|
margin: 0;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|||||||
122
src/static/zone-devices-panel.js
Normal file
@@ -0,0 +1,122 @@
|
|||||||
|
/**
|
||||||
|
* Scrollable device/group list with a fixed add row (dropdown + button) below.
|
||||||
|
* Used by group and zone edit modals.
|
||||||
|
*/
|
||||||
|
function prepareZoneDevicesPanel(containerEl) {
|
||||||
|
if (!containerEl) return null;
|
||||||
|
let listEl = containerEl.querySelector('.zone-devices-list');
|
||||||
|
let addSlot = containerEl.querySelector('.zone-devices-add-slot');
|
||||||
|
if (!listEl) {
|
||||||
|
containerEl.innerHTML = '';
|
||||||
|
containerEl.classList.add('zone-devices-panel');
|
||||||
|
listEl = document.createElement('div');
|
||||||
|
listEl.className = 'zone-devices-list';
|
||||||
|
addSlot = document.createElement('div');
|
||||||
|
addSlot.className = 'zone-devices-add-slot';
|
||||||
|
containerEl.appendChild(listEl);
|
||||||
|
containerEl.appendChild(addSlot);
|
||||||
|
} else {
|
||||||
|
listEl.innerHTML = '';
|
||||||
|
addSlot.innerHTML = '';
|
||||||
|
}
|
||||||
|
return { listEl, addSlot };
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Search field + scrollable filtered list for picking an item to add.
|
||||||
|
*/
|
||||||
|
function createSearchableAddPicker({
|
||||||
|
entries,
|
||||||
|
excludeIds,
|
||||||
|
labelFor,
|
||||||
|
searchTextFor,
|
||||||
|
onPick,
|
||||||
|
placeholder = 'Search…',
|
||||||
|
emptyMessage = 'No matches.',
|
||||||
|
noItemsMessage = 'Nothing to add.',
|
||||||
|
}) {
|
||||||
|
const wrap = document.createElement('div');
|
||||||
|
wrap.className = 'zone-device-add-picker';
|
||||||
|
|
||||||
|
const excluded = excludeIds || new Set();
|
||||||
|
const available = (entries || []).filter(([id]) => !excluded.has(id));
|
||||||
|
|
||||||
|
if (!available.length) {
|
||||||
|
const empty = document.createElement('span');
|
||||||
|
empty.className = 'muted-text';
|
||||||
|
empty.textContent = noItemsMessage;
|
||||||
|
wrap.appendChild(empty);
|
||||||
|
return wrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
const search = document.createElement('input');
|
||||||
|
search.type = 'search';
|
||||||
|
search.className = 'zone-device-add-search';
|
||||||
|
search.placeholder = placeholder;
|
||||||
|
search.setAttribute('aria-label', placeholder);
|
||||||
|
|
||||||
|
const results = document.createElement('div');
|
||||||
|
results.className = 'zone-device-add-results';
|
||||||
|
results.setAttribute('role', 'listbox');
|
||||||
|
|
||||||
|
const filterAvailable = (query) => {
|
||||||
|
const q = String(query || '').trim().toLowerCase();
|
||||||
|
return available.filter(([id, item]) => {
|
||||||
|
if (!q) return true;
|
||||||
|
const text = searchTextFor(id, item);
|
||||||
|
return String(text).toLowerCase().includes(q);
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
const pickEntry = (id, item) => {
|
||||||
|
onPick(id, item);
|
||||||
|
search.value = '';
|
||||||
|
renderResults('');
|
||||||
|
};
|
||||||
|
|
||||||
|
const renderResults = (query) => {
|
||||||
|
results.innerHTML = '';
|
||||||
|
const filtered = filterAvailable(query);
|
||||||
|
|
||||||
|
if (!filtered.length) {
|
||||||
|
const none = document.createElement('div');
|
||||||
|
none.className = 'zone-device-add-results-empty muted-text';
|
||||||
|
none.textContent = emptyMessage;
|
||||||
|
results.appendChild(none);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
filtered.forEach(([id, item]) => {
|
||||||
|
const btn = document.createElement('button');
|
||||||
|
btn.type = 'button';
|
||||||
|
btn.className = 'zone-device-add-result';
|
||||||
|
btn.setAttribute('role', 'option');
|
||||||
|
btn.textContent = labelFor(id, item);
|
||||||
|
btn.addEventListener('click', () => pickEntry(id, item));
|
||||||
|
results.appendChild(btn);
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
search.addEventListener('input', () => renderResults(search.value));
|
||||||
|
search.addEventListener('focus', () => renderResults(search.value));
|
||||||
|
|
||||||
|
search.addEventListener('keydown', (event) => {
|
||||||
|
if (event.key !== 'Enter') return;
|
||||||
|
const filtered = filterAvailable(search.value);
|
||||||
|
if (filtered.length === 1) {
|
||||||
|
event.preventDefault();
|
||||||
|
pickEntry(filtered[0][0], filtered[0][1]);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
renderResults('');
|
||||||
|
|
||||||
|
wrap.appendChild(search);
|
||||||
|
wrap.appendChild(results);
|
||||||
|
return wrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (typeof window !== 'undefined') {
|
||||||
|
window.prepareZoneDevicesPanel = prepareZoneDevicesPanel;
|
||||||
|
window.createSearchableAddPicker = createSearchableAddPicker;
|
||||||
|
}
|
||||||
@@ -107,6 +107,7 @@ function sendZoneBrightness(zoneId, value) {
|
|||||||
[{ v: '1', b: bv, save: true }],
|
[{ v: '1', b: bv, save: true }],
|
||||||
[mac],
|
[mac],
|
||||||
0,
|
0,
|
||||||
|
{ unicast: true },
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
@@ -114,7 +115,7 @@ function sendZoneBrightness(zoneId, value) {
|
|||||||
await window.postDriverSequence([{ v: '1', b: val, save: true }], targetMacs, 0);
|
await window.postDriverSequence([{ v: '1', b: val, save: true }], targetMacs, 0);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
// Fallback to raw websocket sender if presets.js helper isn't available yet.
|
// Fallback to raw websocket bridge helper if presets.js helper isn't available yet.
|
||||||
if (typeof window.sendEspnowRaw === 'function') {
|
if (typeof window.sendEspnowRaw === 'function') {
|
||||||
window.sendEspnowRaw({ v: '1', b: val, save: true });
|
window.sendEspnowRaw({ v: '1', b: val, save: true });
|
||||||
}
|
}
|
||||||
@@ -126,6 +127,9 @@ function sendZoneBrightness(zoneId, value) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const isEditModeActive = () => {
|
const isEditModeActive = () => {
|
||||||
|
if (typeof window.getPresetUiMode === 'function') {
|
||||||
|
return window.getPresetUiMode() === 'edit';
|
||||||
|
}
|
||||||
const toggle = document.querySelector('.ui-mode-toggle');
|
const toggle = document.querySelector('.ui-mode-toggle');
|
||||||
return !!(toggle && toggle.getAttribute('aria-pressed') === 'true');
|
return !!(toggle && toggle.getAttribute('aria-pressed') === 'true');
|
||||||
};
|
};
|
||||||
@@ -304,6 +308,18 @@ async function resolveDeviceNamesForZonePreset(zoneDoc, presetId) {
|
|||||||
return Array.isArray(zt.names) ? zt.names.slice() : [];
|
return Array.isArray(zt.names) ? zt.names.slice() : [];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** Registry MACs for preset push (same targeting as ``resolveDeviceNamesForZonePreset``). */
|
||||||
|
async function resolveMacsForZonePreset(zoneDoc, presetId) {
|
||||||
|
void presetId;
|
||||||
|
const gids = effectiveGroupIdsForZonePreset(zoneDoc);
|
||||||
|
if (gids.length) {
|
||||||
|
const t = await resolveTargetsFromGroupIds(gids);
|
||||||
|
if (t.macs.length) return [...new Set(t.macs)];
|
||||||
|
}
|
||||||
|
const zt = await computeZoneTargets(zoneDoc);
|
||||||
|
return Array.isArray(zt.macs) ? [...new Set(zt.macs.filter(Boolean))] : [];
|
||||||
|
}
|
||||||
|
|
||||||
/** Union of devices targeted by standalone presets on the zone (same as zone preset targeting). */
|
/** Union of devices targeted by standalone presets on the zone (same as zone preset targeting). */
|
||||||
async function computeZonePresetUnionTargets(zoneDoc) {
|
async function computeZonePresetUnionTargets(zoneDoc) {
|
||||||
return await computeZoneTargets(zoneDoc);
|
return await computeZoneTargets(zoneDoc);
|
||||||
@@ -401,7 +417,14 @@ function rowsToNames(rows) {
|
|||||||
|
|
||||||
function renderZoneGroupsEditor(containerEl, rows, groupsMap) {
|
function renderZoneGroupsEditor(containerEl, rows, groupsMap) {
|
||||||
if (!containerEl) return;
|
if (!containerEl) return;
|
||||||
|
const panel =
|
||||||
|
typeof window.prepareZoneDevicesPanel === "function"
|
||||||
|
? window.prepareZoneDevicesPanel(containerEl)
|
||||||
|
: null;
|
||||||
|
const listEl = panel ? panel.listEl : containerEl;
|
||||||
|
if (!panel) {
|
||||||
containerEl.innerHTML = "";
|
containerEl.innerHTML = "";
|
||||||
|
}
|
||||||
const entries = Object.entries(groupsMap || {}).sort(([a], [b]) => a.localeCompare(b));
|
const entries = Object.entries(groupsMap || {}).sort(([a], [b]) => a.localeCompare(b));
|
||||||
|
|
||||||
rows.forEach((row, idx) => {
|
rows.forEach((row, idx) => {
|
||||||
@@ -428,7 +451,7 @@ function renderZoneGroupsEditor(containerEl, rows, groupsMap) {
|
|||||||
});
|
});
|
||||||
div.appendChild(label);
|
div.appendChild(label);
|
||||||
div.appendChild(rm);
|
div.appendChild(rm);
|
||||||
containerEl.appendChild(div);
|
listEl.appendChild(div);
|
||||||
});
|
});
|
||||||
|
|
||||||
const idsInRows = new Set(rows.map((r) => String(r.id)));
|
const idsInRows = new Set(rows.map((r) => String(r.id)));
|
||||||
@@ -457,7 +480,11 @@ function renderZoneGroupsEditor(containerEl, rows, groupsMap) {
|
|||||||
});
|
});
|
||||||
addWrap.appendChild(sel);
|
addWrap.appendChild(sel);
|
||||||
addWrap.appendChild(addBtn);
|
addWrap.appendChild(addBtn);
|
||||||
|
if (panel) {
|
||||||
|
panel.addSlot.appendChild(addWrap);
|
||||||
|
} else {
|
||||||
containerEl.appendChild(addWrap);
|
containerEl.appendChild(addWrap);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Read zone device names from the presets section (JSON attr preferred; legacy comma list fallback). */
|
/** Read zone device names from the presets section (JSON attr preferred; legacy comma list fallback). */
|
||||||
@@ -510,27 +537,30 @@ function effectiveZoneContentKind(zoneDoc) {
|
|||||||
|
|
||||||
/** @returns {boolean} */
|
/** @returns {boolean} */
|
||||||
function zoneAllowsPresets(zoneDoc, zoneId) {
|
function zoneAllowsPresets(zoneDoc, zoneId) {
|
||||||
|
void zoneDoc;
|
||||||
void zoneId;
|
void zoneId;
|
||||||
return effectiveZoneContentKind(zoneDoc) === 'presets';
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** @returns {boolean} */
|
/** @returns {boolean} */
|
||||||
function zoneAllowsSequences(zoneDoc, zoneId) {
|
function zoneAllowsSequences(zoneDoc, zoneId) {
|
||||||
|
void zoneDoc;
|
||||||
void zoneId;
|
void zoneId;
|
||||||
return effectiveZoneContentKind(zoneDoc) === 'sequences';
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
function applyZoneContentKindEditModal(kind) {
|
function applyZoneContentKindEditModal(_kind) {
|
||||||
const presetsBlock = document.getElementById('edit-zone-block-presets');
|
const presetsBlock = document.getElementById('edit-zone-block-presets');
|
||||||
const groupsBlock = document.getElementById('edit-zone-block-groups');
|
const groupsBlock = document.getElementById('edit-zone-block-groups');
|
||||||
const seqBlock = document.getElementById('edit-zone-block-sequences');
|
const seqBlock = document.getElementById('edit-zone-block-sequences');
|
||||||
|
const typeLabel = document.getElementById('edit-zone-type-label');
|
||||||
const vis = (el, show) => {
|
const vis = (el, show) => {
|
||||||
if (el) el.style.display = show ? '' : 'none';
|
if (el) el.style.display = show ? '' : 'none';
|
||||||
};
|
};
|
||||||
const k = kind === 'sequences' ? 'sequences' : 'presets';
|
if (typeLabel) typeLabel.style.display = 'none';
|
||||||
vis(groupsBlock, true);
|
vis(groupsBlock, true);
|
||||||
vis(presetsBlock, k === 'presets');
|
vis(presetsBlock, true);
|
||||||
vis(seqBlock, k === 'sequences');
|
vis(seqBlock, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
window.normalizeZoneContentKind = normalizeZoneContentKind;
|
window.normalizeZoneContentKind = normalizeZoneContentKind;
|
||||||
@@ -608,6 +638,52 @@ function renderZonesList(tabs, tabOrder, currentZoneId) {
|
|||||||
}
|
}
|
||||||
html += '</div>';
|
html += '</div>';
|
||||||
container.innerHTML = html;
|
container.innerHTML = html;
|
||||||
|
renderZonesMenuMobile(tabs, tabOrder, currentZoneId);
|
||||||
|
}
|
||||||
|
|
||||||
|
function renderZonesMenuMobile(tabs, tabOrder, currentZoneId) {
|
||||||
|
const dropdown = document.getElementById('zones-menu-dropdown');
|
||||||
|
const menuBtn = document.getElementById('zones-menu-btn');
|
||||||
|
if (!dropdown) return;
|
||||||
|
|
||||||
|
if (!tabOrder || tabOrder.length === 0) {
|
||||||
|
dropdown.innerHTML = '<p class="muted-text zones-menu-empty">No zones</p>';
|
||||||
|
if (menuBtn) menuBtn.textContent = 'Zones';
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
let html = '';
|
||||||
|
for (const zoneId of tabOrder) {
|
||||||
|
const zone = tabs[zoneId];
|
||||||
|
if (!zone) continue;
|
||||||
|
const activeClass = String(zoneId) === String(currentZoneId) ? ' active' : '';
|
||||||
|
const disp = zone.name || `Zone ${zoneId}`;
|
||||||
|
html += `
|
||||||
|
<button type="button" class="zones-menu-item${activeClass}"
|
||||||
|
data-zone-id="${zoneId}" role="menuitem">
|
||||||
|
${escapeHtmlAttr(disp)}
|
||||||
|
</button>
|
||||||
|
`;
|
||||||
|
}
|
||||||
|
dropdown.innerHTML = html;
|
||||||
|
|
||||||
|
if (menuBtn) {
|
||||||
|
const cur = tabs[currentZoneId];
|
||||||
|
menuBtn.textContent = cur ? (cur.name || `Zone ${currentZoneId}`) : 'Zones';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function syncZonesMenuSelection(zoneId) {
|
||||||
|
document.querySelectorAll('.zones-menu-item').forEach((item) => {
|
||||||
|
item.classList.toggle('active', item.dataset.zoneId === String(zoneId));
|
||||||
|
});
|
||||||
|
const menuBtn = document.getElementById('zones-menu-btn');
|
||||||
|
const activeItem = document.querySelector(
|
||||||
|
`.zones-menu-item[data-zone-id="${zoneId}"]`,
|
||||||
|
);
|
||||||
|
if (menuBtn && activeItem) {
|
||||||
|
menuBtn.textContent = activeItem.textContent.trim();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Render tabs list in modal (like profiles)
|
// Render tabs list in modal (like profiles)
|
||||||
@@ -649,14 +725,6 @@ function renderZonesListModal(tabs, tabOrder, currentZoneId) {
|
|||||||
label.style.color = "#FFD700";
|
label.style.color = "#FFD700";
|
||||||
}
|
}
|
||||||
|
|
||||||
const applyButton = document.createElement("button");
|
|
||||||
applyButton.className = "btn btn-secondary btn-small";
|
|
||||||
applyButton.textContent = "Select";
|
|
||||||
applyButton.addEventListener("click", async () => {
|
|
||||||
await selectZone(zoneId);
|
|
||||||
document.getElementById('zones-modal').classList.remove('active');
|
|
||||||
});
|
|
||||||
|
|
||||||
const editButton = document.createElement("button");
|
const editButton = document.createElement("button");
|
||||||
editButton.className = "btn btn-secondary btn-small";
|
editButton.className = "btn btn-secondary btn-small";
|
||||||
editButton.textContent = "Edit";
|
editButton.textContent = "Edit";
|
||||||
@@ -747,7 +815,6 @@ function renderZonesListModal(tabs, tabOrder, currentZoneId) {
|
|||||||
});
|
});
|
||||||
|
|
||||||
row.appendChild(label);
|
row.appendChild(label);
|
||||||
row.appendChild(applyButton);
|
|
||||||
if (editMode) {
|
if (editMode) {
|
||||||
row.appendChild(editButton);
|
row.appendChild(editButton);
|
||||||
row.appendChild(cloneButton);
|
row.appendChild(cloneButton);
|
||||||
@@ -795,10 +862,11 @@ async function selectZone(zoneId) {
|
|||||||
document.querySelectorAll('.zone-button').forEach(btn => {
|
document.querySelectorAll('.zone-button').forEach(btn => {
|
||||||
btn.classList.remove('active');
|
btn.classList.remove('active');
|
||||||
});
|
});
|
||||||
const btn = document.querySelector(`[data-zone-id="${zoneId}"]`);
|
const btn = document.querySelector(`#zones-list .zone-button[data-zone-id="${zoneId}"]`);
|
||||||
if (btn) {
|
if (btn) {
|
||||||
btn.classList.add('active');
|
btn.classList.add('active');
|
||||||
}
|
}
|
||||||
|
syncZonesMenuSelection(zoneId);
|
||||||
|
|
||||||
// Set as current zone
|
// Set as current zone
|
||||||
await setCurrentZone(zoneId);
|
await setCurrentZone(zoneId);
|
||||||
@@ -885,114 +953,6 @@ async function loadZoneContent(zoneId) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Send all presets used by all tabs in the current profile via /presets/send.
|
|
||||||
async function sendProfilePresets() {
|
|
||||||
try {
|
|
||||||
// Load current profile to get its tabs
|
|
||||||
const profileRes = await fetch('/profiles/current', {
|
|
||||||
headers: { Accept: 'application/json' },
|
|
||||||
});
|
|
||||||
if (!profileRes.ok) {
|
|
||||||
alert('Failed to load current profile.');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
const profileData = await profileRes.json();
|
|
||||||
const profile = profileData.profile || {};
|
|
||||||
let zoneList = null;
|
|
||||||
if (Array.isArray(profile.zones)) {
|
|
||||||
zoneList = profile.zones;
|
|
||||||
} else if (profile.zones) {
|
|
||||||
zoneList = [profile.zones];
|
|
||||||
}
|
|
||||||
if (!zoneList || zoneList.length === 0) {
|
|
||||||
if (Array.isArray(profile.zones)) {
|
|
||||||
zoneList = profile.zones;
|
|
||||||
} else if (profile.zones) {
|
|
||||||
zoneList = [profile.zones];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (!zoneList || zoneList.length === 0) {
|
|
||||||
console.warn('sendProfilePresets: no zones found', {
|
|
||||||
profileData,
|
|
||||||
profile,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!zoneList.length) {
|
|
||||||
alert('Current profile has no zones to send presets for.');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
let totalSent = 0;
|
|
||||||
let totalMessages = 0;
|
|
||||||
let zonesWithPresets = 0;
|
|
||||||
|
|
||||||
for (const zoneId of zoneList) {
|
|
||||||
try {
|
|
||||||
const tabResp = await fetch(`/zones/${zoneId}`, {
|
|
||||||
headers: { Accept: 'application/json' },
|
|
||||||
});
|
|
||||||
if (!tabResp.ok) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
const tabData = await tabResp.json();
|
|
||||||
let presetIds = [];
|
|
||||||
if (Array.isArray(tabData.presets_flat)) {
|
|
||||||
presetIds = tabData.presets_flat;
|
|
||||||
} else if (Array.isArray(tabData.presets)) {
|
|
||||||
if (tabData.presets.length && typeof tabData.presets[0] === 'string') {
|
|
||||||
presetIds = tabData.presets;
|
|
||||||
} else if (tabData.presets.length && Array.isArray(tabData.presets[0])) {
|
|
||||||
presetIds = tabData.presets.flat();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
presetIds = (presetIds || []).filter(Boolean);
|
|
||||||
if (!presetIds.length) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
zonesWithPresets += 1;
|
|
||||||
const targets = await resolveZoneDeviceMacsFromZoneData(tabData);
|
|
||||||
const payload = { preset_ids: presetIds };
|
|
||||||
if (tabData.default_preset) {
|
|
||||||
payload.default = tabData.default_preset;
|
|
||||||
}
|
|
||||||
if (targets.length > 0) {
|
|
||||||
payload.targets = targets;
|
|
||||||
}
|
|
||||||
const response = await fetch('/presets/send', {
|
|
||||||
method: 'POST',
|
|
||||||
headers: {
|
|
||||||
'Content-Type': 'application/json',
|
|
||||||
'Accept': 'application/json',
|
|
||||||
},
|
|
||||||
body: JSON.stringify(payload),
|
|
||||||
});
|
|
||||||
const data = await response.json().catch(() => ({}));
|
|
||||||
if (!response.ok) {
|
|
||||||
const msg = (data && data.error) || `Failed to send presets for zone ${zoneId}.`;
|
|
||||||
console.warn(msg);
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
totalSent += typeof data.presets_sent === 'number' ? data.presets_sent : presetIds.length;
|
|
||||||
totalMessages += typeof data.messages_sent === 'number' ? data.messages_sent : 0;
|
|
||||||
} catch (e) {
|
|
||||||
console.error('Failed to send profile presets for zone:', zoneId, e);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!zonesWithPresets) {
|
|
||||||
alert('No presets to send for the current profile.');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const messagesLabel = totalMessages ? totalMessages : '?';
|
|
||||||
alert(`Sent ${totalSent} preset(s) across ${zonesWithPresets} zone(s) (${messagesLabel} driver send(s)).`);
|
|
||||||
} catch (error) {
|
|
||||||
console.error('Failed to send profile presets:', error);
|
|
||||||
alert('Failed to send profile presets.');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function tabPresetIdsInOrder(tabData) {
|
function tabPresetIdsInOrder(tabData) {
|
||||||
return tabPresetIdsInZoneDoc(tabData);
|
return tabPresetIdsInZoneDoc(tabData);
|
||||||
}
|
}
|
||||||
@@ -1015,12 +975,6 @@ async function refreshEditTabPresetsUi(zoneId) {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const tabData = await tabRes.json();
|
const tabData = await tabRes.json();
|
||||||
if (!zoneAllowsPresets(tabData, zoneId)) {
|
|
||||||
currentEl.innerHTML =
|
|
||||||
'<span class="muted-text">This zone is for sequences only. Presets are hidden.</span>';
|
|
||||||
addEl.innerHTML = '<span class="muted-text">—</span>';
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
const inTabIds = tabPresetIdsInOrder(tabData);
|
const inTabIds = tabPresetIdsInOrder(tabData);
|
||||||
const inTabSet = new Set(inTabIds.map((id) => String(id)));
|
const inTabSet = new Set(inTabIds.map((id) => String(id)));
|
||||||
|
|
||||||
@@ -1044,12 +998,9 @@ async function refreshEditTabPresetsUi(zoneId) {
|
|||||||
for (const presetId of inTabIds) {
|
for (const presetId of inTabIds) {
|
||||||
const preset = allPresets[presetId] || {};
|
const preset = allPresets[presetId] || {};
|
||||||
const name = preset.name || presetId;
|
const name = preset.name || presetId;
|
||||||
const block = document.createElement("div");
|
const row = makeRow();
|
||||||
block.style.cssText =
|
row.className = "profiles-row edit-zone-item-row";
|
||||||
"border:1px solid rgba(255,255,255,0.12);border-radius:6px;padding:0.5rem 0.65rem;margin-bottom:0.65rem;";
|
|
||||||
const top = makeRow();
|
|
||||||
const label = document.createElement("span");
|
const label = document.createElement("span");
|
||||||
label.style.fontWeight = "600";
|
|
||||||
label.textContent = name;
|
label.textContent = name;
|
||||||
const removeBtn = document.createElement("button");
|
const removeBtn = document.createElement("button");
|
||||||
removeBtn.type = "button";
|
removeBtn.type = "button";
|
||||||
@@ -1061,11 +1012,9 @@ async function refreshEditTabPresetsUi(zoneId) {
|
|||||||
await window.removePresetFromTab(zoneId, presetId);
|
await window.removePresetFromTab(zoneId, presetId);
|
||||||
await refreshEditTabPresetsUi(zoneId);
|
await refreshEditTabPresetsUi(zoneId);
|
||||||
});
|
});
|
||||||
top.appendChild(label);
|
row.appendChild(label);
|
||||||
top.appendChild(removeBtn);
|
row.appendChild(removeBtn);
|
||||||
block.appendChild(top);
|
currentEl.appendChild(row);
|
||||||
|
|
||||||
currentEl.appendChild(block);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1153,17 +1102,8 @@ async function openEditZoneModal(zoneId, zone) {
|
|||||||
});
|
});
|
||||||
renderZoneGroupsEditor(groupsEditor, window.__editTabGroupRows, groupsMap);
|
renderZoneGroupsEditor(groupsEditor, window.__editTabGroupRows, groupsMap);
|
||||||
|
|
||||||
const kind = effectiveZoneContentKind(tabData);
|
|
||||||
const typeLabel = document.getElementById('edit-zone-type-label');
|
|
||||||
if (typeLabel) {
|
|
||||||
typeLabel.textContent =
|
|
||||||
kind === 'sequences'
|
|
||||||
? 'Zone type: Sequences (set when the zone was created)'
|
|
||||||
: 'Zone type: Presets (set when the zone was created)';
|
|
||||||
}
|
|
||||||
|
|
||||||
if (modal) modal.classList.add("active");
|
if (modal) modal.classList.add("active");
|
||||||
applyZoneContentKindEditModal(kind);
|
applyZoneContentKindEditModal();
|
||||||
await refreshEditTabPresetsUi(zoneId);
|
await refreshEditTabPresetsUi(zoneId);
|
||||||
if (typeof window.refreshEditTabSequencesUi === "function") {
|
if (typeof window.refreshEditTabSequencesUi === "function") {
|
||||||
await window.refreshEditTabSequencesUi(zoneId);
|
await window.refreshEditTabSequencesUi(zoneId);
|
||||||
@@ -1188,7 +1128,6 @@ async function updateZone(zoneId, name, groupRows) {
|
|||||||
} catch (_) {
|
} catch (_) {
|
||||||
/* use empty existing */
|
/* use empty existing */
|
||||||
}
|
}
|
||||||
const lockedKind = effectiveZoneContentKind(existing);
|
|
||||||
const response = await fetch(`/zones/${zoneId}`, {
|
const response = await fetch(`/zones/${zoneId}`, {
|
||||||
method: 'PUT',
|
method: 'PUT',
|
||||||
headers: {
|
headers: {
|
||||||
@@ -1203,7 +1142,6 @@ async function updateZone(zoneId, name, groupRows) {
|
|||||||
existing.preset_group_ids && typeof existing.preset_group_ids === 'object'
|
existing.preset_group_ids && typeof existing.preset_group_ids === 'object'
|
||||||
? existing.preset_group_ids
|
? existing.preset_group_ids
|
||||||
: {},
|
: {},
|
||||||
content_kind: lockedKind,
|
|
||||||
})
|
})
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -1215,8 +1153,6 @@ async function updateZone(zoneId, name, groupRows) {
|
|||||||
if (String(currentZoneId) === String(zoneId)) {
|
if (String(currentZoneId) === String(zoneId)) {
|
||||||
await loadZoneContent(zoneId);
|
await loadZoneContent(zoneId);
|
||||||
}
|
}
|
||||||
// Close modal
|
|
||||||
document.getElementById('edit-zone-modal').classList.remove('active');
|
|
||||||
return true;
|
return true;
|
||||||
} else {
|
} else {
|
||||||
alert(`Error: ${data.error || 'Failed to update zone'}`);
|
alert(`Error: ${data.error || 'Failed to update zone'}`);
|
||||||
@@ -1229,11 +1165,9 @@ async function updateZone(zoneId, name, groupRows) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Create a new zone (add devices in Edit zone). ``contentKind`` is ``'presets'`` | ``'sequences'``.
|
// Create a new zone (add device groups, presets, and sequences in Edit zone).
|
||||||
async function createZone(name, contentKind) {
|
async function createZone(name) {
|
||||||
try {
|
try {
|
||||||
const ck =
|
|
||||||
contentKind === 'sequences' || contentKind === 'presets' ? contentKind : 'presets';
|
|
||||||
const response = await fetch('/zones', {
|
const response = await fetch('/zones', {
|
||||||
method: 'POST',
|
method: 'POST',
|
||||||
headers: {
|
headers: {
|
||||||
@@ -1243,7 +1177,6 @@ async function createZone(name, contentKind) {
|
|||||||
name: name,
|
name: name,
|
||||||
names: [],
|
names: [],
|
||||||
group_ids: [],
|
group_ids: [],
|
||||||
content_kind: ck,
|
|
||||||
})
|
})
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -1280,6 +1213,29 @@ document.addEventListener('DOMContentLoaded', () => {
|
|||||||
const newTabNameInput = document.getElementById("new-zone-name");
|
const newTabNameInput = document.getElementById("new-zone-name");
|
||||||
const createZoneButton = document.getElementById("create-zone-btn");
|
const createZoneButton = document.getElementById("create-zone-btn");
|
||||||
|
|
||||||
|
const zonesMenuBtn = document.getElementById('zones-menu-btn');
|
||||||
|
const zonesMenuDropdown = document.getElementById('zones-menu-dropdown');
|
||||||
|
const mainMenuDropdown = document.getElementById('main-menu-dropdown');
|
||||||
|
|
||||||
|
if (zonesMenuBtn && zonesMenuDropdown) {
|
||||||
|
zonesMenuBtn.addEventListener('click', (event) => {
|
||||||
|
event.stopPropagation();
|
||||||
|
const open = zonesMenuDropdown.classList.toggle('open');
|
||||||
|
zonesMenuBtn.setAttribute('aria-expanded', open ? 'true' : 'false');
|
||||||
|
if (open && mainMenuDropdown) {
|
||||||
|
mainMenuDropdown.classList.remove('open');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
zonesMenuDropdown.addEventListener('click', async (event) => {
|
||||||
|
const item = event.target.closest('.zones-menu-item');
|
||||||
|
if (!item || !item.dataset.zoneId) return;
|
||||||
|
await selectZone(item.dataset.zoneId);
|
||||||
|
zonesMenuDropdown.classList.remove('open');
|
||||||
|
zonesMenuBtn.setAttribute('aria-expanded', 'false');
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
if (tabsButton && zonesModal) {
|
if (tabsButton && zonesModal) {
|
||||||
tabsButton.addEventListener("click", async () => {
|
tabsButton.addEventListener("click", async () => {
|
||||||
zonesModal.classList.add("active");
|
zonesModal.classList.add("active");
|
||||||
@@ -1324,12 +1280,7 @@ document.addEventListener('DOMContentLoaded', () => {
|
|||||||
const name = newTabNameInput.value.trim();
|
const name = newTabNameInput.value.trim();
|
||||||
|
|
||||||
if (name) {
|
if (name) {
|
||||||
const kindRadio = document.querySelector(
|
await createZone(name);
|
||||||
'input[name="new-zone-content-kind"]:checked',
|
|
||||||
);
|
|
||||||
const contentKind =
|
|
||||||
kindRadio && kindRadio.value === 'sequences' ? 'sequences' : 'presets';
|
|
||||||
await createZone(name, contentKind);
|
|
||||||
if (newTabNameInput) newTabNameInput.value = "";
|
if (newTabNameInput) newTabNameInput.value = "";
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@@ -1360,19 +1311,10 @@ document.addEventListener('DOMContentLoaded', () => {
|
|||||||
|
|
||||||
if (zoneId && name) {
|
if (zoneId && name) {
|
||||||
await updateZone(zoneId, name, groupRows);
|
await updateZone(zoneId, name, groupRows);
|
||||||
editZoneForm.reset();
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
// Profile-wide "Send Presets" button in header
|
|
||||||
const sendProfilePresetsBtn = document.getElementById('send-profile-presets-btn');
|
|
||||||
if (sendProfilePresetsBtn) {
|
|
||||||
sendProfilePresetsBtn.addEventListener('click', async () => {
|
|
||||||
await sendProfilePresets();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
const menuBrightnessSlider = document.getElementById('menu-brightness-slider');
|
const menuBrightnessSlider = document.getElementById('menu-brightness-slider');
|
||||||
const headerBrightnessSlider = document.getElementById('header-brightness-slider');
|
const headerBrightnessSlider = document.getElementById('header-brightness-slider');
|
||||||
(async () => {
|
(async () => {
|
||||||
@@ -1425,6 +1367,7 @@ window.zonesManager = {
|
|||||||
computeZonePresetUnionTargets,
|
computeZonePresetUnionTargets,
|
||||||
effectiveGroupIdsForZonePreset,
|
effectiveGroupIdsForZonePreset,
|
||||||
resolveDeviceNamesForZonePreset,
|
resolveDeviceNamesForZonePreset,
|
||||||
|
resolveMacsForZonePreset,
|
||||||
resolveSequenceStepDeviceNames,
|
resolveSequenceStepDeviceNames,
|
||||||
fetchGroupsMap,
|
fetchGroupsMap,
|
||||||
renderZoneGroupsEditor,
|
renderZoneGroupsEditor,
|
||||||
|
|||||||
@@ -182,7 +182,7 @@
|
|||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="wifi-channel-page-input">WiFi channel (ESP-NOW)</label>
|
<label for="wifi-channel-page-input">WiFi channel (ESP-NOW)</label>
|
||||||
<input type="number" id="wifi-channel-page-input" name="wifi_channel" min="1" max="11" required>
|
<input type="number" id="wifi-channel-page-input" name="wifi_channel" min="1" max="11" required>
|
||||||
<small>STA channel (1–11) for LED drivers and the serial bridge. Use the same value on every device.</small>
|
<small>2.4 GHz channel (1–11) for ESP-NOW drivers and the bridge AP/STA. Set the same <code>wifi_channel</code> on the bridge and each led-driver; those devices need a reboot after a change. Saving here updates the Pi setting (restart led-controller to apply).</small>
|
||||||
</div>
|
</div>
|
||||||
<div class="btn-group">
|
<div class="btn-group">
|
||||||
<button type="submit" class="btn btn-primary btn-full">Save channel</button>
|
<button type="submit" class="btn btn-primary btn-full">Save channel</button>
|
||||||
@@ -215,7 +215,7 @@
|
|||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="ap-channel">Channel (1-11)</label>
|
<label for="ap-channel">Channel (1-11)</label>
|
||||||
<input type="number" id="ap-channel" name="channel" min="1" max="11" placeholder="Auto">
|
<input type="number" id="ap-channel" name="channel" min="1" max="11" placeholder="Auto">
|
||||||
<small>WiFi channel (1-11 for 2.4GHz). Leave empty for auto.</small>
|
<small>Bridge AP channel (1–11). Stored for reference; set <code>wifi_channel</code> on the bridge itself and reboot it to apply.</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="btn-group">
|
<div class="btn-group">
|
||||||
|
|||||||
@@ -1,15 +1,15 @@
|
|||||||
# Driver message builder (`espnow_message`)
|
# Driver message builder (`espnow_message`)
|
||||||
|
|
||||||
This utility builds **v1** JSON payloads for LED drivers (serial/ESP-NOW bridge and Wi-Fi TCP). See **`docs/API.md`** for the full wire format.
|
This utility builds **v1** JSON payloads for LED drivers (ESP-NOW bridge and Wi-Fi TCP). See **`docs/API.md`** for the full wire format.
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
### Basic Message Building
|
### Basic Message Building
|
||||||
|
|
||||||
```python
|
```python
|
||||||
from util.espnow_message import build_message, build_preset_dict, build_select_dict
|
from util.espnow_message import build_message, build_preset_dict
|
||||||
|
|
||||||
# Build a message with presets and select
|
# Build a message with presets and select (list form; routing is by MAC envelope / groups)
|
||||||
presets = {
|
presets = {
|
||||||
"red_blink": build_preset_dict({
|
"red_blink": build_preset_dict({
|
||||||
"pattern": "blink",
|
"pattern": "blink",
|
||||||
@@ -20,27 +20,17 @@ presets = {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
select = build_select_dict({
|
message = build_message(presets=presets, select=["red_blink"])
|
||||||
"device1": "red_blink"
|
# Result: {"v": "1", "presets": {...}, "select": ["red_blink"]}
|
||||||
})
|
|
||||||
|
|
||||||
message = build_message(presets=presets, select=select)
|
|
||||||
# Result: {"v": "1", "presets": {...}, "select": {...}}
|
|
||||||
```
|
```
|
||||||
|
|
||||||
### Building Select Messages with Step Synchronization
|
### Select with step
|
||||||
|
|
||||||
```python
|
```python
|
||||||
from util.espnow_message import build_message, build_select_dict
|
from util.espnow_message import build_message
|
||||||
|
|
||||||
# Select with step for synchronization
|
message = build_message(select=["rainbow_preset", 10])
|
||||||
select = build_select_dict(
|
# Result: {"v": "1", "select": ["rainbow_preset", 10]}
|
||||||
{"device1": "rainbow_preset", "device2": "rainbow_preset"},
|
|
||||||
step_mapping={"device1": 10, "device2": 10}
|
|
||||||
)
|
|
||||||
|
|
||||||
message = build_message(select=select)
|
|
||||||
# Result: {"v": "1", "select": {"device1": ["rainbow_preset", 10], "device2": ["rainbow_preset", 10]}}
|
|
||||||
```
|
```
|
||||||
|
|
||||||
### Converting Presets
|
### Converting Presets
|
||||||
|
|||||||
@@ -10,6 +10,9 @@ from typing import Any
|
|||||||
_HOLDOVER_BPM_MIN = 30.0
|
_HOLDOVER_BPM_MIN = 30.0
|
||||||
_HOLDOVER_BPM_MAX = 300.0
|
_HOLDOVER_BPM_MAX = 300.0
|
||||||
_HOLDOVER_MAX_S = 300.0
|
_HOLDOVER_MAX_S = 300.0
|
||||||
|
# After this many seconds without a detected beat, re-prime aubio and start BPM holdover
|
||||||
|
# (same window as status() uses to hide stale BPM).
|
||||||
|
_SILENCE_GAP_S = 4.0
|
||||||
|
|
||||||
|
|
||||||
class AudioBeatDetector:
|
class AudioBeatDetector:
|
||||||
@@ -24,6 +27,8 @@ class AudioBeatDetector:
|
|||||||
self._holdover_thread: threading.Thread | None = None
|
self._holdover_thread: threading.Thread | None = None
|
||||||
self._holdover_stop = threading.Event()
|
self._holdover_stop = threading.Event()
|
||||||
self._holdover_active = False
|
self._holdover_active = False
|
||||||
|
self._last_real_beat_ts: float | None = None
|
||||||
|
self._last_gap_tempo_reset_ts: float = 0.0
|
||||||
self._status = {
|
self._status = {
|
||||||
"running": False,
|
"running": False,
|
||||||
"bpm": None,
|
"bpm": None,
|
||||||
@@ -38,9 +43,36 @@ class AudioBeatDetector:
|
|||||||
"bar_phase_readout": "1/4",
|
"bar_phase_readout": "1/4",
|
||||||
"error": None,
|
"error": None,
|
||||||
"device": None,
|
"device": None,
|
||||||
|
"input_level": 0.0,
|
||||||
}
|
}
|
||||||
|
|
||||||
def list_input_devices(self):
|
def list_input_devices(self):
|
||||||
|
try:
|
||||||
|
from util.pulse_audio_devices import list_pulse_matched_input_devices
|
||||||
|
|
||||||
|
pulse = list_pulse_matched_input_devices()
|
||||||
|
if pulse:
|
||||||
|
return pulse
|
||||||
|
except Exception as e:
|
||||||
|
print(f"[audio] pulse device list skipped: {e!r}")
|
||||||
|
|
||||||
|
sd_list = self._list_sounddevice_input_devices()
|
||||||
|
if sd_list:
|
||||||
|
print("[audio] device list: sounddevice fallback (install/use pactl for Pulse names)")
|
||||||
|
return sd_list
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def _skip_sounddevice_virtual(name: str, hostapi_name: str) -> bool:
|
||||||
|
"""Hide PortAudio/Pulse aggregate devices (pipewire, pulse, default)."""
|
||||||
|
n = name.strip().lower()
|
||||||
|
if n in ("pipewire", "pulse", "default", "sysdefault"):
|
||||||
|
return True
|
||||||
|
ha = hostapi_name.strip().lower()
|
||||||
|
if ha in ("pulse", "pipewire") and n in ("default", "pipewire", "pulse"):
|
||||||
|
return True
|
||||||
|
return False
|
||||||
|
|
||||||
|
def _list_sounddevice_input_devices(self):
|
||||||
import sounddevice as sd
|
import sounddevice as sd
|
||||||
|
|
||||||
devices = sd.query_devices()
|
devices = sd.query_devices()
|
||||||
@@ -55,15 +87,17 @@ class AudioBeatDetector:
|
|||||||
name = str(dev.get("name", f"Input {idx}"))
|
name = str(dev.get("name", f"Input {idx}"))
|
||||||
chans = int(dev.get("max_input_channels", 0))
|
chans = int(dev.get("max_input_channels", 0))
|
||||||
is_monitor_named = "monitor" in name.lower()
|
is_monitor_named = "monitor" in name.lower()
|
||||||
if chans <= 0 and not is_monitor_named:
|
|
||||||
continue
|
|
||||||
sr = int(dev.get("default_samplerate", 44100))
|
|
||||||
hostapi_idx = int(dev.get("hostapi", -1))
|
hostapi_idx = int(dev.get("hostapi", -1))
|
||||||
hostapi_name = (
|
hostapi_name = (
|
||||||
str(hostapis[hostapi_idx].get("name", "unknown"))
|
str(hostapis[hostapi_idx].get("name", "unknown"))
|
||||||
if 0 <= hostapi_idx < len(hostapis)
|
if 0 <= hostapi_idx < len(hostapis)
|
||||||
else "unknown"
|
else "unknown"
|
||||||
)
|
)
|
||||||
|
if self._skip_sounddevice_virtual(name, hostapi_name):
|
||||||
|
continue
|
||||||
|
if chans <= 0 and not is_monitor_named:
|
||||||
|
continue
|
||||||
|
sr = int(dev.get("default_samplerate", 44100))
|
||||||
is_default = default_input_idx is not None and idx == default_input_idx
|
is_default = default_input_idx is not None and idx == default_input_idx
|
||||||
ch_label = f"{chans}ch" if chans > 0 else "0ch?"
|
ch_label = f"{chans}ch" if chans > 0 else "0ch?"
|
||||||
label = f"[{idx}] {name} ({ch_label} @ {sr}Hz, {hostapi_name})"
|
label = f"[{idx}] {name} ({ch_label} @ {sr}Hz, {hostapi_name})"
|
||||||
@@ -71,10 +105,14 @@ class AudioBeatDetector:
|
|||||||
label = f"{label} [default]"
|
label = f"{label} [default]"
|
||||||
if is_monitor_named:
|
if is_monitor_named:
|
||||||
label = f"{label} [monitor]"
|
label = f"{label} [monitor]"
|
||||||
|
display_name = name
|
||||||
|
if is_default:
|
||||||
|
display_name = f"{display_name} (default)"
|
||||||
out.append(
|
out.append(
|
||||||
{
|
{
|
||||||
"id": idx,
|
"id": idx,
|
||||||
"name": name,
|
"name": name,
|
||||||
|
"display_name": display_name,
|
||||||
"label": label,
|
"label": label,
|
||||||
"max_input_channels": chans,
|
"max_input_channels": chans,
|
||||||
"default_samplerate": sr,
|
"default_samplerate": sr,
|
||||||
@@ -101,6 +139,13 @@ class AudioBeatDetector:
|
|||||||
}
|
}
|
||||||
|
|
||||||
def start(self, device=None):
|
def start(self, device=None):
|
||||||
|
try:
|
||||||
|
from util.pulse_audio_devices import resolve_capture_device
|
||||||
|
|
||||||
|
device = resolve_capture_device(device)
|
||||||
|
except Exception as e:
|
||||||
|
self._set_error(str(e))
|
||||||
|
raise
|
||||||
should_restart = False
|
should_restart = False
|
||||||
with self._lock:
|
with self._lock:
|
||||||
should_restart = self._running
|
should_restart = self._running
|
||||||
@@ -108,6 +153,8 @@ class AudioBeatDetector:
|
|||||||
self.stop()
|
self.stop()
|
||||||
with self._lock:
|
with self._lock:
|
||||||
self._stop_event.clear()
|
self._stop_event.clear()
|
||||||
|
self._last_real_beat_ts = None
|
||||||
|
self._last_gap_tempo_reset_ts = 0.0
|
||||||
self._status.update(
|
self._status.update(
|
||||||
{
|
{
|
||||||
"running": True,
|
"running": True,
|
||||||
@@ -162,7 +209,42 @@ class AudioBeatDetector:
|
|||||||
self._thread = None
|
self._thread = None
|
||||||
self._stream = None
|
self._stream = None
|
||||||
self._pending_reset = False
|
self._pending_reset = False
|
||||||
|
self._last_real_beat_ts = None
|
||||||
|
self._last_gap_tempo_reset_ts = 0.0
|
||||||
self._status["running"] = False
|
self._status["running"] = False
|
||||||
|
self._status["input_level"] = 0.0
|
||||||
|
|
||||||
|
def _update_input_level(self, mono) -> None:
|
||||||
|
import numpy as np
|
||||||
|
|
||||||
|
arr = np.asarray(mono, dtype=np.float32)
|
||||||
|
if arr.size == 0:
|
||||||
|
inst = 0.0
|
||||||
|
else:
|
||||||
|
peak = float(np.max(np.abs(arr)))
|
||||||
|
rms = float(np.sqrt(np.mean(arr * arr)))
|
||||||
|
inst = min(1.0, max(peak, rms * 2.0))
|
||||||
|
with self._lock:
|
||||||
|
prev = float(self._status.get("input_level") or 0.0)
|
||||||
|
if inst >= prev:
|
||||||
|
self._status["input_level"] = inst
|
||||||
|
else:
|
||||||
|
self._status["input_level"] = max(inst, prev * 0.82)
|
||||||
|
|
||||||
|
def _decay_input_level(self) -> None:
|
||||||
|
with self._lock:
|
||||||
|
prev = float(self._status.get("input_level") or 0.0)
|
||||||
|
self._status["input_level"] = prev * 0.82
|
||||||
|
|
||||||
|
def _input_gain(self) -> float:
|
||||||
|
try:
|
||||||
|
from settings import get_settings
|
||||||
|
|
||||||
|
vol = int(get_settings().get("audio_input_volume") or 100)
|
||||||
|
except (TypeError, ValueError, ImportError):
|
||||||
|
vol = 100
|
||||||
|
vol = max(0, min(200, vol))
|
||||||
|
return vol / 100.0
|
||||||
|
|
||||||
def status(self):
|
def status(self):
|
||||||
with self._lock:
|
with self._lock:
|
||||||
@@ -342,10 +424,47 @@ class AudioBeatDetector:
|
|||||||
print(f"[audio] anchor_bar_phase: {e}")
|
print(f"[audio] anchor_bar_phase: {e}")
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
def _maybe_recover_after_silence_gap(self, runtime) -> None:
|
||||||
|
"""After a quiet spell, reset tempo tracking and run holdover until real beats return."""
|
||||||
|
now = time.time()
|
||||||
|
with self._lock:
|
||||||
|
if not self._running:
|
||||||
|
return
|
||||||
|
last_real = self._last_real_beat_ts
|
||||||
|
bpm = self._clamp_holdover_bpm(self._status.get("bpm"))
|
||||||
|
holdover = self._holdover_active
|
||||||
|
last_reset = self._last_gap_tempo_reset_ts
|
||||||
|
if last_real is None or bpm is None:
|
||||||
|
return
|
||||||
|
try:
|
||||||
|
gap = now - float(last_real)
|
||||||
|
except (TypeError, ValueError):
|
||||||
|
return
|
||||||
|
if gap < _SILENCE_GAP_S:
|
||||||
|
return
|
||||||
|
if not holdover:
|
||||||
|
self._start_bpm_holdover(bpm)
|
||||||
|
try:
|
||||||
|
since_reset = (
|
||||||
|
now - float(last_reset) if last_reset else _SILENCE_GAP_S
|
||||||
|
)
|
||||||
|
except (TypeError, ValueError):
|
||||||
|
since_reset = _SILENCE_GAP_S
|
||||||
|
if since_reset >= _SILENCE_GAP_S:
|
||||||
|
try:
|
||||||
|
runtime.reset_tempo_state()
|
||||||
|
except Exception as e:
|
||||||
|
print(f"[audio] silence gap tempo reset: {e}")
|
||||||
|
else:
|
||||||
|
with self._lock:
|
||||||
|
self._last_gap_tempo_reset_ts = now
|
||||||
|
|
||||||
def _record_beat(self, bpm, beat_type="unknown", beat_type_confidence=0.0, **phase_fields):
|
def _record_beat(self, bpm, beat_type="unknown", beat_type_confidence=0.0, **phase_fields):
|
||||||
self._stop_bpm_holdover()
|
self._stop_bpm_holdover()
|
||||||
now = time.time()
|
now = time.time()
|
||||||
|
self._last_real_beat_ts = now
|
||||||
with self._lock:
|
with self._lock:
|
||||||
|
self._last_gap_tempo_reset_ts = 0.0
|
||||||
self._status["last_beat_ts"] = now
|
self._status["last_beat_ts"] = now
|
||||||
self._status["bpm"] = bpm
|
self._status["bpm"] = bpm
|
||||||
self._status["beat_type"] = beat_type
|
self._status["beat_type"] = beat_type
|
||||||
@@ -386,6 +505,9 @@ class AudioBeatDetector:
|
|||||||
beat_mod = importlib.util.module_from_spec(spec)
|
beat_mod = importlib.util.module_from_spec(spec)
|
||||||
spec.loader.exec_module(beat_mod)
|
spec.loader.exec_module(beat_mod)
|
||||||
|
|
||||||
|
from util.pulse_audio_devices import resolve_capture_device
|
||||||
|
|
||||||
|
device = resolve_capture_device(device)
|
||||||
if device is None:
|
if device is None:
|
||||||
try:
|
try:
|
||||||
device = int(sd.default.device[0])
|
device = int(sd.default.device[0])
|
||||||
@@ -395,6 +517,10 @@ class AudioBeatDetector:
|
|||||||
raise RuntimeError(
|
raise RuntimeError(
|
||||||
"no default input device; open Audio, pick an input, then Start"
|
"no default input device; open Audio, pick an input, then Start"
|
||||||
)
|
)
|
||||||
|
if not isinstance(device, int):
|
||||||
|
raise RuntimeError(
|
||||||
|
f"internal error: unresolved capture device {device!r}"
|
||||||
|
)
|
||||||
|
|
||||||
dev_info = sd.query_devices(device, "input")
|
dev_info = sd.query_devices(device, "input")
|
||||||
sample_rate = int(dev_info["default_samplerate"])
|
sample_rate = int(dev_info["default_samplerate"])
|
||||||
@@ -450,6 +576,8 @@ class AudioBeatDetector:
|
|||||||
try:
|
try:
|
||||||
frame = audio_q.get(timeout=0.1)
|
frame = audio_q.get(timeout=0.1)
|
||||||
except queue.Empty:
|
except queue.Empty:
|
||||||
|
self._decay_input_level()
|
||||||
|
self._maybe_recover_after_silence_gap(runtime)
|
||||||
continue
|
continue
|
||||||
self._process_pending_reset(runtime)
|
self._process_pending_reset(runtime)
|
||||||
if frame.shape[0] != hop_size:
|
if frame.shape[0] != hop_size:
|
||||||
@@ -457,8 +585,13 @@ class AudioBeatDetector:
|
|||||||
frame = frame[:hop_size]
|
frame = frame[:hop_size]
|
||||||
else:
|
else:
|
||||||
frame = np.pad(frame, (0, hop_size - frame.shape[0]))
|
frame = np.pad(frame, (0, hop_size - frame.shape[0]))
|
||||||
|
gain = self._input_gain()
|
||||||
|
if gain != 1.0:
|
||||||
|
frame = frame * gain
|
||||||
|
self._update_input_level(frame)
|
||||||
event = runtime.process_frame(frame, now_s=time.time())
|
event = runtime.process_frame(frame, now_s=time.time())
|
||||||
if event is None:
|
if event is None:
|
||||||
|
self._maybe_recover_after_silence_gap(runtime)
|
||||||
continue
|
continue
|
||||||
bpm = event.get("bpm")
|
bpm = event.get("bpm")
|
||||||
self._record_beat(
|
self._record_beat(
|
||||||
|
|||||||
@@ -71,8 +71,6 @@ def write_audio_run_state(
|
|||||||
else str(prev.get("device_select") or "")
|
else str(prev.get("device_select") or "")
|
||||||
),
|
),
|
||||||
}
|
}
|
||||||
if device_select is None and device is not None:
|
|
||||||
data["device_select"] = str(device)
|
|
||||||
else:
|
else:
|
||||||
data = {
|
data = {
|
||||||
"enabled": False,
|
"enabled": False,
|
||||||
|
|||||||
@@ -232,10 +232,12 @@ def _apply_manual_beat_route(
|
|||||||
device_names: List[str],
|
device_names: List[str],
|
||||||
wire_preset_id: str,
|
wire_preset_id: str,
|
||||||
preset_body: Any,
|
preset_body: Any,
|
||||||
|
group_ids: Optional[List[str]] = None,
|
||||||
) -> None:
|
) -> None:
|
||||||
"""Enable audio→driver routing for one manual preset (clears all lanes, including sequence)."""
|
"""Enable audio→driver routing for one manual preset (clears all lanes, including sequence)."""
|
||||||
global _lane_manual
|
global _lane_manual
|
||||||
if not device_names:
|
gids = [str(g).strip() for g in (group_ids or []) if str(g).strip()]
|
||||||
|
if not device_names and not gids:
|
||||||
with _route_lock:
|
with _route_lock:
|
||||||
_lane_manual.clear()
|
_lane_manual.clear()
|
||||||
_sync_public_beat_route_from_lane_table()
|
_sync_public_beat_route_from_lane_table()
|
||||||
@@ -265,6 +267,7 @@ def _apply_manual_beat_route(
|
|||||||
"pattern": pattern,
|
"pattern": pattern,
|
||||||
"manual_beat_n": _coerce_manual_beat_n(preset_body),
|
"manual_beat_n": _coerce_manual_beat_n(preset_body),
|
||||||
"beat_counter": 0,
|
"beat_counter": 0,
|
||||||
|
"group_ids": gids,
|
||||||
}
|
}
|
||||||
_sync_public_beat_route_from_lane_table()
|
_sync_public_beat_route_from_lane_table()
|
||||||
|
|
||||||
@@ -273,10 +276,12 @@ def _apply_manual_beat_route_standalone_overlay(
|
|||||||
device_names: List[str],
|
device_names: List[str],
|
||||||
wire_preset_id: str,
|
wire_preset_id: str,
|
||||||
preset_body: Any,
|
preset_body: Any,
|
||||||
|
group_ids: Optional[List[str]] = None,
|
||||||
) -> None:
|
) -> None:
|
||||||
"""Register manual beat routing on lane ``-1`` only, keeping sequence lanes ``0..n`` intact."""
|
"""Register manual beat routing on lane ``-1`` only, keeping sequence lanes ``0..n`` intact."""
|
||||||
global _lane_manual
|
global _lane_manual
|
||||||
if not device_names:
|
gids = [str(g).strip() for g in (group_ids or []) if str(g).strip()]
|
||||||
|
if not device_names and not gids:
|
||||||
with _route_lock:
|
with _route_lock:
|
||||||
_lane_manual.pop(-1, None)
|
_lane_manual.pop(-1, None)
|
||||||
_sync_public_beat_route_from_lane_table()
|
_sync_public_beat_route_from_lane_table()
|
||||||
@@ -309,6 +314,7 @@ def _apply_manual_beat_route_standalone_overlay(
|
|||||||
"pattern": pattern,
|
"pattern": pattern,
|
||||||
"manual_beat_n": _coerce_manual_beat_n(preset_body),
|
"manual_beat_n": _coerce_manual_beat_n(preset_body),
|
||||||
"beat_counter": 0,
|
"beat_counter": 0,
|
||||||
|
"group_ids": gids,
|
||||||
}
|
}
|
||||||
_sync_public_beat_route_from_lane_table()
|
_sync_public_beat_route_from_lane_table()
|
||||||
|
|
||||||
@@ -318,11 +324,13 @@ def set_sequence_manual_lane_route(
|
|||||||
device_names: List[str],
|
device_names: List[str],
|
||||||
wire_preset_id: str,
|
wire_preset_id: str,
|
||||||
preset_body: Any,
|
preset_body: Any,
|
||||||
|
group_ids: Optional[List[str]] = None,
|
||||||
) -> None:
|
) -> None:
|
||||||
"""Register or update one sequence lane's manual beat route (parallel lanes, independent strides)."""
|
"""Register or update one sequence lane's manual beat route (parallel lanes, independent strides)."""
|
||||||
global _lane_manual
|
global _lane_manual
|
||||||
names = [str(n).strip() for n in (device_names or []) if str(n).strip()]
|
names = [str(n).strip() for n in (device_names or []) if str(n).strip()]
|
||||||
if not names or not isinstance(preset_body, dict) or _coerce_auto_from_body(preset_body):
|
gids = [str(g).strip() for g in (group_ids or []) if str(g).strip()]
|
||||||
|
if (not names and not gids) or not isinstance(preset_body, dict) or _coerce_auto_from_body(preset_body):
|
||||||
with _route_lock:
|
with _route_lock:
|
||||||
if lane_index in _lane_manual:
|
if lane_index in _lane_manual:
|
||||||
del _lane_manual[lane_index]
|
del _lane_manual[lane_index]
|
||||||
@@ -353,6 +361,7 @@ def set_sequence_manual_lane_route(
|
|||||||
"pattern": pattern,
|
"pattern": pattern,
|
||||||
"manual_beat_n": mn,
|
"manual_beat_n": mn,
|
||||||
"beat_counter": bc,
|
"beat_counter": bc,
|
||||||
|
"group_ids": gids,
|
||||||
}
|
}
|
||||||
overlay = _lane_manual.get(-1)
|
overlay = _lane_manual.get(-1)
|
||||||
if overlay and _lane_route_targets_key(names, wid) == _lane_route_targets_key(
|
if overlay and _lane_route_targets_key(names, wid) == _lane_route_targets_key(
|
||||||
@@ -414,6 +423,16 @@ def mark_sequence_manual_lane_select_sent(lane_index: int) -> None:
|
|||||||
e["suppress_next_notify"] = True
|
e["suppress_next_notify"] = True
|
||||||
|
|
||||||
|
|
||||||
|
def reset_manual_lane_strides() -> None:
|
||||||
|
"""Zero manual-lane beat counters after a sequence change (routes unchanged)."""
|
||||||
|
global _preset_session_beats
|
||||||
|
with _route_lock:
|
||||||
|
_preset_session_beats = 0
|
||||||
|
for e in _lane_manual.values():
|
||||||
|
if isinstance(e, dict):
|
||||||
|
e["beat_counter"] = 0
|
||||||
|
|
||||||
|
|
||||||
def sync_beat_route_from_push_sequence(
|
def sync_beat_route_from_push_sequence(
|
||||||
sequence: List[Any],
|
sequence: List[Any],
|
||||||
target_macs: Optional[List[str]] = None,
|
target_macs: Optional[List[str]] = None,
|
||||||
@@ -423,7 +442,8 @@ def sync_beat_route_from_push_sequence(
|
|||||||
"""
|
"""
|
||||||
Update beat routing from a ``/presets/push`` body ``sequence`` (list of v1 dicts).
|
Update beat routing from a ``/presets/push`` body ``sequence`` (list of v1 dicts).
|
||||||
|
|
||||||
With a ``select`` map: use its keys as device names (existing behaviour).
|
With ``select`` as ``[preset_id, step?]``: use ``target_macs`` for device names.
|
||||||
|
Legacy name-map ``select`` still uses map keys as device names.
|
||||||
|
|
||||||
Without ``select`` (e.g. manual preset loaded without immediate select): if ``target_macs``
|
Without ``select`` (e.g. manual preset loaded without immediate select): if ``target_macs``
|
||||||
is set and the merged ``presets`` contain exactly one manual preset, enable routing using
|
is set and the merged ``presets`` contain exactly one manual preset, enable routing using
|
||||||
@@ -435,7 +455,9 @@ def sync_beat_route_from_push_sequence(
|
|||||||
sequence lanes ``0..n`` keep their stride counters and wire ids.
|
sequence lanes ``0..n`` keep their stride counters and wire ids.
|
||||||
"""
|
"""
|
||||||
merged_presets: Dict[str, Any] = {}
|
merged_presets: Dict[str, Any] = {}
|
||||||
last_select: Optional[Dict[str, Any]] = None
|
last_select_list: Optional[List[Any]] = None
|
||||||
|
last_select_map: Optional[Dict[str, Any]] = None
|
||||||
|
last_group_ids: Optional[List[str]] = None
|
||||||
for item in sequence:
|
for item in sequence:
|
||||||
if isinstance(item, str):
|
if isinstance(item, str):
|
||||||
try:
|
try:
|
||||||
@@ -448,11 +470,27 @@ def sync_beat_route_from_push_sequence(
|
|||||||
if isinstance(pr, dict):
|
if isinstance(pr, dict):
|
||||||
merged_presets.update(pr)
|
merged_presets.update(pr)
|
||||||
sel = item.get("select")
|
sel = item.get("select")
|
||||||
if isinstance(sel, dict) and sel:
|
if isinstance(sel, list) and sel:
|
||||||
last_select = sel
|
last_select_list = sel
|
||||||
|
elif isinstance(sel, dict) and sel:
|
||||||
|
last_select_map = sel
|
||||||
|
gr = item.get("groups")
|
||||||
|
if isinstance(gr, list) and gr:
|
||||||
|
last_group_ids = [str(g).strip() for g in gr if str(g).strip()]
|
||||||
|
|
||||||
if last_select:
|
if last_select_list:
|
||||||
device_names = [str(k).strip() for k in last_select.keys() if str(k).strip()]
|
device_names = _registry_names_for_macs(target_macs)
|
||||||
|
if not device_names and not last_group_ids:
|
||||||
|
if not preserve_parallel_lane_routes:
|
||||||
|
update_beat_route({"enabled": False})
|
||||||
|
return
|
||||||
|
wire_preset_id = str(last_select_list[0]).strip()
|
||||||
|
if not wire_preset_id:
|
||||||
|
if not preserve_parallel_lane_routes:
|
||||||
|
update_beat_route({"enabled": False})
|
||||||
|
return
|
||||||
|
elif last_select_map:
|
||||||
|
device_names = [str(k).strip() for k in last_select_map.keys() if str(k).strip()]
|
||||||
if not device_names:
|
if not device_names:
|
||||||
if not preserve_parallel_lane_routes:
|
if not preserve_parallel_lane_routes:
|
||||||
update_beat_route({"enabled": False})
|
update_beat_route({"enabled": False})
|
||||||
@@ -460,7 +498,7 @@ def sync_beat_route_from_push_sequence(
|
|||||||
|
|
||||||
wire_ids: Set[str] = set()
|
wire_ids: Set[str] = set()
|
||||||
for name in device_names:
|
for name in device_names:
|
||||||
val = last_select.get(name)
|
val = last_select_map.get(name)
|
||||||
if isinstance(val, list) and val:
|
if isinstance(val, list) and val:
|
||||||
wire_ids.add(str(val[0]).strip())
|
wire_ids.add(str(val[0]).strip())
|
||||||
elif val is not None:
|
elif val is not None:
|
||||||
@@ -470,6 +508,10 @@ def sync_beat_route_from_push_sequence(
|
|||||||
update_beat_route({"enabled": False})
|
update_beat_route({"enabled": False})
|
||||||
return
|
return
|
||||||
wire_preset_id = wire_ids.pop()
|
wire_preset_id = wire_ids.pop()
|
||||||
|
else:
|
||||||
|
wire_preset_id = None
|
||||||
|
|
||||||
|
if wire_preset_id is not None:
|
||||||
preset_body = merged_presets.get(wire_preset_id)
|
preset_body = merged_presets.get(wire_preset_id)
|
||||||
if preset_body is None:
|
if preset_body is None:
|
||||||
for k, v in merged_presets.items():
|
for k, v in merged_presets.items():
|
||||||
@@ -486,10 +528,12 @@ def sync_beat_route_from_push_sequence(
|
|||||||
return
|
return
|
||||||
if preserve_parallel_lane_routes:
|
if preserve_parallel_lane_routes:
|
||||||
_apply_manual_beat_route_standalone_overlay(
|
_apply_manual_beat_route_standalone_overlay(
|
||||||
device_names, wire_preset_id, preset_body
|
device_names, wire_preset_id, preset_body, group_ids=last_group_ids
|
||||||
)
|
)
|
||||||
else:
|
else:
|
||||||
_apply_manual_beat_route(device_names, wire_preset_id, preset_body)
|
_apply_manual_beat_route(
|
||||||
|
device_names, wire_preset_id, preset_body, group_ids=last_group_ids
|
||||||
|
)
|
||||||
mark_manual_select_sent_for_targets(device_names, wire_preset_id)
|
mark_manual_select_sent_for_targets(device_names, wire_preset_id)
|
||||||
return
|
return
|
||||||
|
|
||||||
@@ -497,9 +541,11 @@ def sync_beat_route_from_push_sequence(
|
|||||||
if wire_id and body is not None:
|
if wire_id and body is not None:
|
||||||
names = _registry_names_for_macs(target_macs)
|
names = _registry_names_for_macs(target_macs)
|
||||||
if preserve_parallel_lane_routes:
|
if preserve_parallel_lane_routes:
|
||||||
_apply_manual_beat_route_standalone_overlay(names, wire_id, body)
|
_apply_manual_beat_route_standalone_overlay(
|
||||||
|
names, wire_id, body, group_ids=last_group_ids
|
||||||
|
)
|
||||||
else:
|
else:
|
||||||
_apply_manual_beat_route(names, wire_id, body)
|
_apply_manual_beat_route(names, wire_id, body, group_ids=last_group_ids)
|
||||||
return
|
return
|
||||||
|
|
||||||
if not preserve_parallel_lane_routes:
|
if not preserve_parallel_lane_routes:
|
||||||
@@ -553,49 +599,42 @@ def remap_beat_route_device_name(old_name: str, new_name: str) -> None:
|
|||||||
_sync_public_beat_route_from_lane_table()
|
_sync_public_beat_route_from_lane_table()
|
||||||
|
|
||||||
|
|
||||||
async def _deliver_select(device_names: List[str], wire_preset_id: str) -> None:
|
async def _deliver_select(
|
||||||
|
wire_preset_id: str,
|
||||||
|
group_ids: Optional[List[str]] = None,
|
||||||
|
) -> None:
|
||||||
from models.device import Device
|
from models.device import Device
|
||||||
from models.device import resolve_device_mac_for_select_routing
|
from models.transport import get_current_bridge
|
||||||
from models.transport import get_current_sender
|
|
||||||
from util.driver_delivery import deliver_json_messages
|
from util.driver_delivery import deliver_json_messages
|
||||||
|
|
||||||
sender = get_current_sender()
|
bridge = get_current_bridge()
|
||||||
if not sender:
|
if not bridge:
|
||||||
return
|
return
|
||||||
devices = Device()
|
devices = Device()
|
||||||
seen_macs: List[str] = []
|
gids = [str(g).strip() for g in (group_ids or []) if str(g).strip()]
|
||||||
seen_set: Set[str] = set()
|
body: Dict[str, Any] = {"v": "1", "select": [wire_preset_id]}
|
||||||
for n in device_names:
|
if gids:
|
||||||
mac = resolve_device_mac_for_select_routing(devices, n)
|
body["groups"] = gids
|
||||||
if mac and mac not in seen_set:
|
msg = json.dumps(body, separators=(",", ":"))
|
||||||
seen_set.add(mac)
|
|
||||||
seen_macs.append(mac)
|
|
||||||
if not seen_macs:
|
|
||||||
return
|
|
||||||
select: Dict[str, Any] = {}
|
|
||||||
for mac in seen_macs:
|
|
||||||
doc = devices.read(mac) or {}
|
|
||||||
nm = str(doc.get("name") or "").strip()
|
|
||||||
if nm:
|
|
||||||
select[nm] = [wire_preset_id]
|
|
||||||
if not select:
|
|
||||||
return
|
|
||||||
msg = json.dumps({"v": "1", "select": select}, separators=(",", ":"))
|
|
||||||
try:
|
try:
|
||||||
await deliver_json_messages(sender, [msg], seen_macs, devices, delay_s=0.05)
|
await deliver_json_messages(bridge, [msg], None, devices, delay_s=0.05)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
print(f"[beat-route] deliver failed: {e}")
|
print(f"[beat-route] deliver failed: {e}")
|
||||||
|
|
||||||
|
|
||||||
async def _deliver_select_batch(pairs: List[Tuple[List[str], str]]) -> None:
|
async def _deliver_select_batch(pairs: List[Tuple[str, Optional[List[str]]]]) -> None:
|
||||||
for names, pid in pairs:
|
for pid, gids in pairs:
|
||||||
await _deliver_select(names, pid)
|
await _deliver_select(pid, gids)
|
||||||
|
|
||||||
|
|
||||||
def notify_beat_detected() -> None:
|
def notify_beat_detected() -> None:
|
||||||
"""Invoked from the audio thread when a beat is detected."""
|
"""Invoked from the audio thread when a beat is detected.
|
||||||
|
|
||||||
|
Only manual presets are registered in ``_lane_manual`` (auto presets are cleared on step
|
||||||
|
change and get ``select`` from sequence/UI only when the preset changes).
|
||||||
|
"""
|
||||||
global _preset_session_beats
|
global _preset_session_beats
|
||||||
work: List[Tuple[List[str], str]] = []
|
work: List[Tuple[str, Optional[List[str]]]] = []
|
||||||
with _route_lock:
|
with _route_lock:
|
||||||
if not _lane_manual:
|
if not _lane_manual:
|
||||||
return
|
return
|
||||||
@@ -604,7 +643,15 @@ def notify_beat_detected() -> None:
|
|||||||
for key in sorted(_lane_manual.keys()):
|
for key in sorted(_lane_manual.keys()):
|
||||||
e = _lane_manual[key]
|
e = _lane_manual[key]
|
||||||
names = e.get("device_names") or []
|
names = e.get("device_names") or []
|
||||||
if not isinstance(names, list) or not names:
|
if not isinstance(names, list):
|
||||||
|
names = []
|
||||||
|
gids_raw = e.get("group_ids") or []
|
||||||
|
gids = (
|
||||||
|
[str(g).strip() for g in gids_raw if str(g).strip()]
|
||||||
|
if isinstance(gids_raw, list)
|
||||||
|
else []
|
||||||
|
)
|
||||||
|
if not names and not gids:
|
||||||
continue
|
continue
|
||||||
pattern = str(e.get("pattern") or "")
|
pattern = str(e.get("pattern") or "")
|
||||||
if pattern and not _pattern_supports_manual(pattern):
|
if pattern and not _pattern_supports_manual(pattern):
|
||||||
@@ -621,11 +668,13 @@ def notify_beat_detected() -> None:
|
|||||||
if (c - 1) % n != 0:
|
if (c - 1) % n != 0:
|
||||||
continue
|
continue
|
||||||
wire = str(e.get("wire_preset_id") or "2")
|
wire = str(e.get("wire_preset_id") or "2")
|
||||||
target_key = _lane_route_targets_key(names, wire)
|
target_key = (
|
||||||
|
(tuple(sorted(gids)), wire) if gids else _lane_route_targets_key(names, wire)
|
||||||
|
)
|
||||||
if target_key in seen_targets:
|
if target_key in seen_targets:
|
||||||
continue
|
continue
|
||||||
seen_targets.add(target_key)
|
seen_targets.add(target_key)
|
||||||
work.append((list(names), wire))
|
work.append((wire, gids or None))
|
||||||
if work:
|
if work:
|
||||||
_preset_session_beats += 1
|
_preset_session_beats += 1
|
||||||
if not work:
|
if not work:
|
||||||
|
|||||||
62
src/util/binary_driver_messages.py
Normal file
@@ -0,0 +1,62 @@
|
|||||||
|
"""Build binary ESP-NOW CMD / GROUP_CMD packets from preset/select data."""
|
||||||
|
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
from typing import Any, Dict, List, Optional
|
||||||
|
|
||||||
|
from util.binary_envelope import pack_binary_envelope_v2
|
||||||
|
from util.espnow_wire import MAX_ESPNOW_PAYLOAD, pack_cmd, pack_group_cmd
|
||||||
|
|
||||||
|
|
||||||
|
def v1_dict_to_cmd_packet(body: Dict[str, Any]) -> bytes:
|
||||||
|
save = bool(body.get("save"))
|
||||||
|
kw: Dict[str, Any] = {}
|
||||||
|
if "presets" in body:
|
||||||
|
kw["presets"] = body["presets"]
|
||||||
|
if "select" in body:
|
||||||
|
kw["select"] = body["select"]
|
||||||
|
if "default" in body:
|
||||||
|
kw["default"] = body["default"]
|
||||||
|
kw["default_targets"] = body.get("targets")
|
||||||
|
if "b" in body:
|
||||||
|
kw["brightness_0_255"] = int(body["b"])
|
||||||
|
return pack_cmd(pack_binary_envelope_v2(**kw), save=save)
|
||||||
|
|
||||||
|
|
||||||
|
def build_preset_cmd_chunks(
|
||||||
|
presets_by_name: Dict[str, Any],
|
||||||
|
*,
|
||||||
|
save: bool = False,
|
||||||
|
default: Optional[str] = None,
|
||||||
|
max_payload: int = MAX_ESPNOW_PAYLOAD,
|
||||||
|
) -> List[bytes]:
|
||||||
|
"""Chunk presets into CMD packets each ≤ max_payload bytes."""
|
||||||
|
entries = list(presets_by_name.items())
|
||||||
|
chunks: List[bytes] = []
|
||||||
|
batch: Dict[str, Any] = {}
|
||||||
|
|
||||||
|
def _packet_for(presets_map: Dict[str, Any], *, final_save: bool, def_id: Optional[str]):
|
||||||
|
kw: Dict[str, Any] = {"presets": presets_map}
|
||||||
|
if def_id is not None:
|
||||||
|
kw["default"] = def_id
|
||||||
|
return pack_cmd(pack_binary_envelope_v2(**kw), save=final_save)
|
||||||
|
|
||||||
|
for name, preset_obj in entries:
|
||||||
|
trial = dict(batch)
|
||||||
|
trial[name] = preset_obj
|
||||||
|
try:
|
||||||
|
pkt = _packet_for(trial, final_save=False, def_id=None)
|
||||||
|
except ValueError:
|
||||||
|
pkt = b"\xff\xff"
|
||||||
|
if len(pkt) <= max_payload or not batch:
|
||||||
|
batch = trial
|
||||||
|
else:
|
||||||
|
chunks.append(_packet_for(batch, final_save=False, def_id=None))
|
||||||
|
batch = {name: preset_obj}
|
||||||
|
|
||||||
|
if batch:
|
||||||
|
chunks.append(
|
||||||
|
_packet_for(batch, final_save=save, def_id=str(default) if default else None),
|
||||||
|
)
|
||||||
|
|
||||||
|
return [c for c in chunks if c and c[0] == 0x4C]
|
||||||